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

相关文章

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

hdu4869(逆元+求组合数)

//输入n,m,n表示翻牌的次数,m表示牌的数目,求经过n次操作后共有几种状态#include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<queue>#include<set>#include<map>#include<stdio.h>#include<stdlib.h>#includ

嵌入式QT开发:构建高效智能的嵌入式系统

摘要: 本文深入探讨了嵌入式 QT 相关的各个方面。从 QT 框架的基础架构和核心概念出发,详细阐述了其在嵌入式环境中的优势与特点。文中分析了嵌入式 QT 的开发环境搭建过程,包括交叉编译工具链的配置等关键步骤。进一步探讨了嵌入式 QT 的界面设计与开发,涵盖了从基本控件的使用到复杂界面布局的构建。同时也深入研究了信号与槽机制在嵌入式系统中的应用,以及嵌入式 QT 与硬件设备的交互,包括输入输出设

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略

Kubernetes PodSecurityPolicy:PSP能实现的5种主要安全策略 1. 特权模式限制2. 宿主机资源隔离3. 用户和组管理4. 权限提升控制5. SELinux配置 💖The Begin💖点点关注,收藏不迷路💖 Kubernetes的PodSecurityPolicy(PSP)是一个关键的安全特性,它在Pod创建之前实施安全策略,确保P