Qt自定义组合按钮,实现相机拍照,光学变焦

2023-10-13 12:40

本文主要是介绍Qt自定义组合按钮,实现相机拍照,光学变焦,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

效果如下:

 

核心代码:

void CameraButton::paintEvent(QPaintEvent *)
{QPainter painter(this);m_arcPathList.clear();initializeInterface();painter.setRenderHint(QPainter::Antialiasing);painter.translate(width()/2, height()/2);QRect blueRect(0, 0, this->width()-10, this->height()-10);blueRect.moveCenter(QPoint(0, 0));painter.setPen(colorLine);painter.setBrush(colorLine);painter.drawEllipse(blueRect);painter.setPen(Qt::NoPen);QLinearGradient lgUp;QRect pprect = m_arcPathList.at(0).boundingRect().toRect();lgUp.setStart(pprect.topLeft());lgUp.setFinalStop(pprect.bottomLeft());painter.translate(0, -5);if(m_pressIndex == 0){lgUp.setColorAt(0, colorSectorUpPress);lgUp.setColorAt(1, colorSectorDownPress);painter.setBrush(lgUp);painter.drawPath(m_arcPathList.at(0));painter.drawPixmap(m_arcPathList.at(0).controlPointRect().center().x()-23,m_arcPathList.at(0).controlPointRect().center().y()-20,mPixmapUpPress);}else{lgUp.setColorAt(0, colorSectorUpNormal);lgUp.setColorAt(1, colorSectorDownNormal);painter.setBrush(lgUp);painter.drawPath(m_arcPathList.at(0));painter.drawPixmap(m_arcPathList.at(0).controlPointRect().center().x()-23,m_arcPathList.at(0).controlPointRect().center().y()-20,mPixmapUpNormal);}painter.translate(0, 5);QLinearGradient lgDown;pprect = m_arcPathList.at(1).boundingRect().toRect();lgDown.setStart(pprect.topLeft());lgDown.setFinalStop(pprect.bottomLeft());painter.translate(0, 5);if(m_pressIndex == 1){lgDown.setColorAt(0, colorSectorUpPress);lgDown.setColorAt(1, colorSectorDownPress);painter.setBrush(lgDown);painter.drawPath(m_arcPathList.at(1));painter.drawPixmap(m_arcPathList.at(1).controlPointRect().center().x()-23,m_arcPathList.at(1).controlPointRect().center().y()-20,mPixmapDownPress);}else{lgDown.setColorAt(0, colorSectorUpNormal);lgDown.setColorAt(1, colorSectorDownNormal);painter.setBrush(lgDown);painter.drawPath(m_arcPathList.at(1));painter.drawPixmap(m_arcPathList.at(1).controlPointRect().center().x()-23,m_arcPathList.at(1).controlPointRect().center().y()-20,mPixmapDownNormal);}painter.translate(0, -5);QLinearGradient lgLeft;pprect = m_arcPathList.at(2).boundingRect().toRect();lgLeft.setStart(pprect.topLeft());lgLeft.setFinalStop(pprect.bottomLeft());painter.translate(-5,0);if(m_pressIndex == 2){lgLeft.setColorAt(0, colorSectorUpPress);lgLeft.setColorAt(1, colorSectorDownPress);painter.setBrush(lgLeft);painter.drawPath(m_arcPathList.at(2));painter.drawPixmap(m_arcPathList.at(2).controlPointRect().center().x()-89,m_arcPathList.at(2).controlPointRect().center().y()-20,mPixmapLeftPress);}else{lgLeft.setColorAt(0, colorSectorUpNormal);lgLeft.setColorAt(1, colorSectorDownNormal);painter.setBrush(lgLeft);painter.drawPath(m_arcPathList.at(2));painter.drawPixmap(m_arcPathList.at(2).controlPointRect().center().x()-89,m_arcPathList.at(2).controlPointRect().center().y()-20,mPixmapLeftNormal);}painter.translate(5, 0);QLinearGradient lgRight;pprect = m_arcPathList.at(3).boundingRect().toRect();lgRight.setStart(pprect.topLeft());lgRight.setFinalStop(pprect.bottomLeft());painter.translate(5, 0);if(m_pressIndex == 3){lgRight.setColorAt(0, colorSectorUpPress);lgRight.setColorAt(1, colorSectorDownPress);painter.setBrush(lgRight);painter.drawPath(m_arcPathList.at(3));painter.drawPixmap(m_arcPathList.at(3).boundingRect().center().x()+43,m_arcPathList.at(3).boundingRect().center().y()-20,mPixmapRightPress);}else{lgRight.setColorAt(0, colorSectorUpNormal);lgRight.setColorAt(1, colorSectorDownNormal);painter.setBrush(lgRight);painter.drawPath(m_arcPathList.at(3));painter.drawPixmap(m_arcPathList.at(3).boundingRect().center().x()+43,m_arcPathList.at(3).boundingRect().center().y()-20,mPixmapRightNormal);}painter.translate(-5, 0);QRect ppcenterBtnRect = m_arcPathList.at(4).boundingRect().toRect();QLinearGradient lgCenter;lgCenter.setStart(ppcenterBtnRect.topLeft());lgCenter.setFinalStop(ppcenterBtnRect.bottomLeft());if(m_pressIndex == 4){lgCenter.setColorAt(0, colorSectorUpPress);lgCenter.setColorAt(1, colorSectorDownPress);painter.setBrush(lgCenter);painter.drawPath(m_arcPathList.at(4));painter.drawPixmap(m_arcPathList.at(4).controlPointRect().center().x()-30,m_arcPathList.at(4).controlPointRect().center().y()-25,mPixmapCenterPress);}else{lgCenter.setColorAt(0, colorSectorUpNormal);lgCenter.setColorAt(1, colorSectorDownNormal);painter.setBrush(lgCenter);painter.drawPath(m_arcPathList.at(4));painter.drawPixmap(m_arcPathList.at(4).controlPointRect().center().x()-30,m_arcPathList.at(4).controlPointRect().center().y()-25,mPixmapCenterNormal);}}
void CameraButton::setWidgetStyle(QString style)
{if(style == "dark"){colorLine = QColor(27,126,179);colorSectorUpPress = QColor(219,219,219);colorSectorDownPress = QColor(235,235,235);colorSectorUpNormal = QColor(58,58,58);colorSectorDownNormal = QColor(26,26,26);}else{colorLine = QColor(53,193,229);colorSectorUpPress = QColor(217,217,217);colorSectorDownPress = QColor(235,235,235);colorSectorUpNormal = QColor(240,243,248);colorSectorDownNormal = QColor(178,184,194);}update();
}

完整代码:https://download.csdn.net/download/yu_20501253/11192951

这篇关于Qt自定义组合按钮,实现相机拍照,光学变焦的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/203285

相关文章

Springboot处理跨域的实现方式(附Demo)

《Springboot处理跨域的实现方式(附Demo)》:本文主要介绍Springboot处理跨域的实现方式(附Demo),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录Springboot处理跨域的方式1. 基本知识2. @CrossOrigin3. 全局跨域设置4.

Spring Boot 3.4.3 基于 Spring WebFlux 实现 SSE 功能(代码示例)

《SpringBoot3.4.3基于SpringWebFlux实现SSE功能(代码示例)》SpringBoot3.4.3结合SpringWebFlux实现SSE功能,为实时数据推送提供... 目录1. SSE 简介1.1 什么是 SSE?1.2 SSE 的优点1.3 适用场景2. Spring WebFlu

基于SpringBoot实现文件秒传功能

《基于SpringBoot实现文件秒传功能》在开发Web应用时,文件上传是一个常见需求,然而,当用户需要上传大文件或相同文件多次时,会造成带宽浪费和服务器存储冗余,此时可以使用文件秒传技术通过识别重复... 目录前言文件秒传原理代码实现1. 创建项目基础结构2. 创建上传存储代码3. 创建Result类4.

SpringBoot日志配置SLF4J和Logback的方法实现

《SpringBoot日志配置SLF4J和Logback的方法实现》日志记录是不可或缺的一部分,本文主要介绍了SpringBoot日志配置SLF4J和Logback的方法实现,文中通过示例代码介绍的非... 目录一、前言二、案例一:初识日志三、案例二:使用Lombok输出日志四、案例三:配置Logback一

Python如何使用__slots__实现节省内存和性能优化

《Python如何使用__slots__实现节省内存和性能优化》你有想过,一个小小的__slots__能让你的Python类内存消耗直接减半吗,没错,今天咱们要聊的就是这个让人眼前一亮的技巧,感兴趣的... 目录背景:内存吃得满满的类__slots__:你的内存管理小助手举个大概的例子:看看效果如何?1.

Python+PyQt5实现多屏幕协同播放功能

《Python+PyQt5实现多屏幕协同播放功能》在现代会议展示、数字广告、展览展示等场景中,多屏幕协同播放已成为刚需,下面我们就来看看如何利用Python和PyQt5开发一套功能强大的跨屏播控系统吧... 目录一、项目概述:突破传统播放限制二、核心技术解析2.1 多屏管理机制2.2 播放引擎设计2.3 专

Python实现无痛修改第三方库源码的方法详解

《Python实现无痛修改第三方库源码的方法详解》很多时候,我们下载的第三方库是不会有需求不满足的情况,但也有极少的情况,第三方库没有兼顾到需求,本文将介绍几个修改源码的操作,大家可以根据需求进行选择... 目录需求不符合模拟示例 1. 修改源文件2. 继承修改3. 猴子补丁4. 追踪局部变量需求不符合很

idea中创建新类时自动添加注释的实现

《idea中创建新类时自动添加注释的实现》在每次使用idea创建一个新类时,过了一段时间发现看不懂这个类是用来干嘛的,为了解决这个问题,我们可以设置在创建一个新类时自动添加注释,帮助我们理解这个类的用... 目录前言:详细操作:步骤一:点击上方的 文件(File),点击&nbmyHIgsp;设置(Setti

SpringBoot实现MD5加盐算法的示例代码

《SpringBoot实现MD5加盐算法的示例代码》加盐算法是一种用于增强密码安全性的技术,本文主要介绍了SpringBoot实现MD5加盐算法的示例代码,文中通过示例代码介绍的非常详细,对大家的学习... 目录一、什么是加盐算法二、如何实现加盐算法2.1 加盐算法代码实现2.2 注册页面中进行密码加盐2.

MySQL大表数据的分区与分库分表的实现

《MySQL大表数据的分区与分库分表的实现》数据库的分区和分库分表是两种常用的技术方案,本文主要介绍了MySQL大表数据的分区与分库分表的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有... 目录1. mysql大表数据的分区1.1 什么是分区?1.2 分区的类型1.3 分区的优点1.4 分