Qt环形颜色选择控件, 圆环颜色选择器

参考文章Qt编写自定义控件:环形颜色选择控件_qconicalgradient圆环渐变-CSDN博客

感谢作责提供的方法,下面程序的基础思路同参考文章。

为了更方便使用,这个选择器是基于64色表的,会显示选中的索引和色值。颜色选择时计算方式也有所不同。

选择器是逆时针的,先将64色填入渐变。通过根据小原型的位置,计算出角度,然后计算出它占360度的百分比,然后算出对应的索引,通过索引获得颜色,然后通知出去。

代码如下:

#include <QList>
#include <QColor>const QList<QColor> listColor{QColor(0x72, 0x70, 0x1C),   //0QColor(0x6B, 0x72, 0x23),QColor(0x57, 0x76, 0x32),QColor(0x57, 0x6D, 0x3B),QColor(0x49, 0x61, 0x55),QColor(0x4B, 0x51, 0x63),QColor(0x46, 0x32, 0x87),QColor(0x3F, 0x12, 0xAE),   //7QColor(0x3F, 0x00, 0xC0),   //8QColor(0x5B, 0x0C, 0x98),QColor(0x68, 0x1D, 0x7A),QColor(0x7A, 0x36, 0x4F),QColor(0x8A, 0x20, 0x55),QColor(0x9C, 0x1E, 0x45),QColor(0xA7, 0x07, 0x51),QColor(0xB9, 0x13, 0x33),QColor(0xD1, 0x1E, 0x20),   //16QColor(0xC0, 0x2C, 0x13),QColor(0xDF, 0x13, 0x0D),QColor(0xFF, 0x00, 0x00),QColor(0xFD, 0x02, 0x00),QColor(0xFB, 0x02, 0x02),QColor(0xF1, 0x02, 0x0C),QColor(0xDB, 0x19, 0x0B),QColor(0xE4, 0x01, 0x1A),   //24QColor(0xC9, 0x06, 0x30),QColor(0x9D, 0x03, 0x5F),QColor(0x78, 0x06, 0x81),QColor(0x61, 0x04, 0x9A),QColor(0x48, 0x06, 0xB1),QColor(0x34, 0x03, 0xC8),QColor(0x2C, 0x05, 0xCF),QColor(0x24, 0x02, 0xD9),   //32QColor(0x00, 0x00, 0xFF),QColor(0x17, 0x01, 0xE7),QColor(0x1F, 0x01, 0xDF),QColor(0x20, 0x0F, 0xD0),QColor(0x30, 0x44, 0x8b),QColor(0x33, 0x78, 0x54),QColor(0x3A, 0x86, 0x3F),QColor(0x14, 0x82, 0x69),   //40QColor(0x18, 0x9B, 0x4C),QColor(0x0A, 0xBB, 0x3A),QColor(0x06, 0xE0, 0x19),QColor(0x1F, 0xC3, 0x1D),QColor(0x37, 0xB2, 0x16),QColor(0x1D, 0xDB, 0x08),QColor(0x00, 0xFF, 0x00),QColor(0x0F, 0xEE, 0x02),   //48QColor(0x34, 0xC9, 0x02),QColor(0x5D, 0xA0, 0x02),QColor(0x8D, 0x71, 0x01),QColor(0xA6, 0x58, 0x01),QColor(0xB9, 0x46, 0x00),QColor(0xD7, 0x28, 0x33),QColor(0xC9, 0x33, 0x03),QColor(0xDF, 0x1B, 0x05),   //56QColor(0xD5, 0x25, 0x05),QColor(0xC5, 0x35, 0x05),QColor(0xB0, 0x45, 0x0A),QColor(0x96, 0x5F, 0x0A),QColor(0x8A, 0x66, 0x0F),QColor(0x82, 0x6A, 0x13),QColor(0x7C, 0x6C, 0x18)    //63
};  //0-63(64色)
#ifndef COLORSELECTIONCIRCLE_H
#define COLORSELECTIONCIRCLE_H#include <QWidget>QT_BEGIN_NAMESPACE
namespace Ui { class ColorSelectionCircle; }
QT_END_NAMESPACEclass ColorSelectionCircle : public QWidget
{Q_OBJECTpublic:ColorSelectionCircle(QWidget *parent = nullptr);~ColorSelectionCircle();protected:void paintEvent(QPaintEvent *event)override;void mousePressEvent(QMouseEvent *event)override;void mouseReleaseEvent(QMouseEvent *event)override;void mouseMoveEvent(QMouseEvent *event)override;void showEvent(QShowEvent *event) override;signals:void ColorInfo(int index, QColor color);private:qreal ballAngle{0};bool isPressed{false};void getColorInWidget(const QPoint &pos);QColor selectColor;//int m_index{0};private:Ui::ColorSelectionCircle *ui;
};
#endif // COLORSELECTIONCIRCLE_H
#include "colorselectioncircle.h"
#include "ui_colorselectioncircle.h"
#include <QPaintEvent>
#include <QPainterPath>
#include <QDebug>
#include <QtMath>
#include <QGuiApplication>
#include <QScreen>
#include <QPainter>
#include "commondata.h"ColorSelectionCircle::ColorSelectionCircle(QWidget *parent): QWidget(parent), ui(new Ui::ColorSelectionCircle)
{ui->setupUi(this);setPalette(Qt::white);setMinimumSize(150, 150);}ColorSelectionCircle::~ColorSelectionCircle()
{delete ui;
}void ColorSelectionCircle::mousePressEvent(QMouseEvent *event)
{if (event->button() == Qt::LeftButton){auto pressPos = event->pos();QPoint centerPoint = rect().center();ballAngle = -atan2(pressPos.y() - centerPoint.y(), pressPos.x() - centerPoint.x()) * (180 / M_PI);if(ballAngle < 0){ballAngle = ballAngle + 360;}auto tmpballAngle = ((int)(ballAngle + 360.0 / listColor.size() / 2)) % 360 ;m_index = tmpballAngle / 360.0 * listColor.size();isPressed = true;emit ColorInfo(m_index, listColor[m_index]);update();}QWidget::mousePressEvent(event);
}void ColorSelectionCircle::mouseReleaseEvent(QMouseEvent *event)
{if (isPressed){isPressed = false;}return QWidget::mouseReleaseEvent(event);
}void ColorSelectionCircle::mouseMoveEvent(QMouseEvent* event)
{if (isPressed){auto nowPos = event->pos();QPoint centerPoint = rect().center();ballAngle = -atan2(nowPos.y() - centerPoint.y(), nowPos.x() - centerPoint.x()) * (180 / M_PI);//qDebug()<<"ballAngle:"<<ballAngle;if(ballAngle < 0){ballAngle = ballAngle + 360;}auto tmpballAngle = ((int)(ballAngle + 360.0 / listColor.size() / 2))%360 ;//qDebug()<<"ballAngle after:"<<tmpballAngle;m_index = tmpballAngle / 360.0 * listColor.size();emit ColorInfo(m_index, listColor[m_index]);update();}return QWidget::mouseMoveEvent(event);
}void ColorSelectionCircle::showEvent(QShowEvent *event)
{emit ColorInfo(m_index, listColor[m_index]);update();return QWidget::showEvent(event);
}void ColorSelectionCircle::getColorInWidget(const QPoint &pos)
{static QScreen *screen = QGuiApplication::screenAt(pos);if (!screen){screen = QGuiApplication::primaryScreen();}auto gpos = mapToGlobal(pos);selectColor = screen->grabWindow(0, gpos.x(), gpos.y(), 1, 1).toImage().pixel(0, 0);
}void ColorSelectionCircle::paintEvent(QPaintEvent *event)
{QPainter painter(this);painter.setRenderHint(QPainter::Antialiasing);painter.setPen(Qt::transparent);auto rect = event->rect();auto standardLength = std::min(rect.width(), rect.height());auto radius = standardLength / 2 - standardLength * 0.1;QConicalGradient conicalGradient(0, 0, 0);for (int i=0; i<listColor.size(); ++i){auto pos = 1.0 * i / listColor.size();conicalGradient.setColorAt(pos, listColor[i]);}conicalGradient.setColorAt(1.0, listColor[0]);painter.translate(rect.center());QBrush brush(conicalGradient);painter.setPen(Qt::NoPen);painter.setBrush(brush);QPainterPath path1;path1.addEllipse(QPoint(0, 0), radius, radius);QPainterPath path2;path2.addEllipse(QPoint(0, 0), radius * 0.8, radius* 0.8);painter.drawPath(path1- path2);QPointF ballPos = QPointF(cos(ballAngle * M_PI/180)*radius*0.9, -sin(ballAngle*M_PI/180)*radius*0.9);painter.setPen(QColor(0xff, 0xff, 0xff));painter.drawEllipse(ballPos, radius*0.2, radius*0.2);painter.setBrush(listColor[m_index]);}
#include "colorselect.h"
#include "ui_colorselect.h"
#include <QPalette>ColorSelect::ColorSelect(QWidget *parent) :QWidget(parent),ui(new Ui::ColorSelect)
{ui->setupUi(this);this->setWindowTitle(QString("Color Selector"));connect(ui->widget, SIGNAL(ColorInfo(int,QColor)), this, SLOT(ColorInfoProcess(int,QColor)));
}ColorSelect::~ColorSelect()
{delete ui;
}void ColorSelect::ColorInfoProcess(int index, QColor color)
{ui->lineEdit_index->setText(QString("%1").arg(index));ui->lineEdit_RGB->setText(color.name());QPalette pe;pe.setColor(ui->label_color->backgroundRole(), color);ui->label_color->setAutoFillBackground(true);ui->label_color->setPalette(pe);
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/797010.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

腾讯云优惠券介绍、领券入口及使用教程分享

腾讯云作为国内领先的云服务提供商&#xff0c;为广大用户提供了稳定、高效、安全的云计算服务。为了吸引用户上云&#xff0c;腾讯云推出了优惠券活动。本文将对腾讯云优惠券进行详细介绍&#xff0c;包括优惠券的种类、领券入口以及使用教程&#xff0c;助力大家轻松上云&…

Web APIs简介 Dom

JS的组成 API API 是一些预先定义的函数&#xff0c;目的是提供应用程序与开发人员基于软件或硬件得以访问一组例程的能力&#xff0c;而又无需访问源码&#xff0c;或理解内部工作机制的细节 简单理解&#xff1a;API是给程序员提供的一种工具&#xff0c;以便能更轻松的实现…

感染了后缀为.jayy勒索病毒如何应对?数据能够恢复吗?

导言&#xff1a; 在当今数字化的世界中&#xff0c;网络安全已经成为了每个人都需要关注的重要议题。而勒索病毒作为网络安全领域中的一大威胁&#xff0c;不断地演变和升级&#xff0c;给个人和组织带来了严重的损失和困扰。近期&#xff0c;一种名为.jayy的勒索病毒引起了广…

(十一)RabbitMQ及SpringAMQP

1.初识MQ 1.1.同步和异步通讯 微服务间通讯有同步和异步两种方式&#xff1a; 同步通讯&#xff1a;就像打电话&#xff0c;需要实时响应。 异步通讯&#xff1a;就像发邮件&#xff0c;不需要马上回复。 两种方式各有优劣&#xff0c;打电话可以立即得到响应&#xff0c;…

接口日志表结构

表&#xff1a;ZTALL_IFLOG MANDT MANDT CLNT 3 0 0 客户端 UUID SYSUUID_C32 CHAR 32 0 0 16-byte UID in 32 chars (hexadecimal) IFSNR ZE_IFSNR CHAR 30 0 0 接口编号(系统ID流水号) FUNCNAME RS38L_FNAM CHAR 30 0 0 功能模块的名称 STATUS BAPI_MTYPE CHAR 1 0 0 消息类…

2024年MathorCup妈妈杯数学建模思路D题思路解析+参考成品

1 赛题思路 (赛题出来以后第一时间在群内分享&#xff0c;点击下方群名片即可加群) 2 比赛日期和时间 报名截止时间&#xff1a;2024年4月11日&#xff08;周四&#xff09;12:00 比赛开始时间&#xff1a;2024年4月12日&#xff08;周五&#xff09;8:00 比赛结束时间&…

MySQL-基本SQL语句编写:运算符练习

运算符练习 1.选择工资不在5000到12000的员工的姓名和工资 SELECT last_name,salary FROM employees #where salary not between 5000 and 12000; WHERE salary < 5000 OR salary > 12000;2.选择在20或50号部门工作的员工姓名和部门号 SELECT last_name,department_id…

Unity与CocosCreator对比学习二

一、锚点与适配 1.在Creator中 适配通过锚点、位置和Widget达到适配目的&#xff1b;锚点是节点在其父节点坐标系中坐标对其点&#xff0c;其x,y范围在[0, 1]之间&#xff1b; 锚点为(0, 0)时在节点自身的左下角&#xff0c;节点坐标指其左下角在父节点中的坐标&#xff1b;锚…

Python项目21:一个简单的记账系统(收入+支出+查询)

------------★Python练手项目源码★------------ Python项目源码20&#xff1a;银行管理系统&#xff08;开户、查询、取款、存款、转账、锁定、解锁、退出&#xff09; Python项目19&#xff1a;学员信息管理系统&#xff08;简易版&#xff09; Python项目18&#xff1a;…

【Linux-运维】查看操作系统的指定端口占用情况确定端口是哪个服务占用

不同的查看端口占用的方法&#xff0c;应用场景有所不同 一、查询某个端口是否被占用&#xff1f;lsof -i:端口号lsof -i:协议 查看某个协议的占用情况netstat -tlnp|grep 端口号ss -tlnp|grep 端口号fuser 端口号/协议ls -l /proc/$(lsof -t -i:端口号)|grep exe 二、确认指定…

C++ 【原型模式】

简单介绍 原型模式是一种创建型设计模式 | 它使你能够复制已有对象&#xff0c;客户端不需要知道要复制的对象是哪个类的实例&#xff0c;只需通过原型工厂获取该对象的副本。 以后需要更改具体的类或添加新的原型类&#xff0c;客户端代码无需改变&#xff0c;只需修改原型工…

[ 云计算 | AWS ] ChatGPT 竞争对手 Claude 3 上线亚马逊云,实测表现超预期

文章目录 一、前言二、Claude 3 介绍以及相关测试细节三、在亚马逊云科技上体验 Claude 33.1 在 Amazon Bedrock 服务中配置 Claude 33.2 为聊天配置使用 Claude 3 模型3.3 Caude 3 Sonet 聊天体验 四、文末总结五、参考文献 一、前言 3月4号&#xff0c;Anthropic 发布了号称…

第十四届蓝桥杯C/C++大学B组题解(一)

1、日期统计 #include <bits/stdc.h> using namespace std; int main() {int array[100] {5, 6, 8, 6, 9, 1, 6, 1, 2, 4, 9, 1, 9, 8, 2, 3, 6, 4, 7, 7,5, 9, 5, 0, 3, 8, 7, 5, 8, 1, 5, 8, 6, 1, 8, 3, 0, 3, 7, 9,2, 7, 0, 5, 8, 8, 5, 7, 0, 9, 9, 1, 9, 4, 4, 6,…

鸿蒙Lottie动画-实现控制动画的播放、暂停、倍速播放、播放顺序

介绍 本示例展示了lottie对动画的操作功能。引入Lottie模块&#xff0c;实现控制动画的播放、暂停、倍速播放、播放顺序、播放到指定帧停止或从指定帧开始播放、侦听事件等功能&#xff0c;动画资源路径必须是json格式。 效果预览 使用说明&#xff1a; 进入页面默认开始201…

Python人工智能应用---中文分词词频统计

目录 1.中文分词 2.循环分别处理列表 &#xff08;1&#xff09;分析 &#xff08;2&#xff09;代码解决 3.词袋模型的构建 &#xff08;1&#xff09;分析需求 &#xff08;2&#xff09;处理分析 1.先实现字符串的连接 2.字符串放到新的列表里面 4.提取高频词语 &…

一些好玩的东西

这里写目录标题 递归1.递归打印数组和链表?代码实现原理讲解二叉树的 前 中 后 序位置 参考文章 递归 1.递归打印数组和链表? 平常我们打印数组和链表都是 迭代 就好了今天学到一个新思路–>不仅可以轻松正着打印数组和链表 , 还能轻松倒着打印(用的是二叉树的前中后序遍…

Linux基础篇:Linux第三方软件仓库——可以让Linux变得有趣的软件仓库

Linux第三方软件仓库——可以让Linux变得有趣的软件仓库 一、epel源介绍 EPEL&#xff08;Extra Packages for Enterprise Linux&#xff09;源是一个由Fedora项目组维护的第三方软件仓库&#xff0c;为企业级Linux发行版&#xff08;如Red Hat Enterprise Linux&#xff08;…

清明作业 c++

1.封装一个类&#xff0c;实现对一个数求累和阶乘质数 #include <iostream>using namespace std; int mproduct(int a){if(a>1){return a*mproduct((a-1));}else{return 1;} } class number{int a; public:number():a(5){};number(int a):a(a){}void set(int a){thi…

ChatGLM-6B实战微调(P-tuning-v2、LORA)

硬件准备 GPU: NVIDIA Tesla A30 24GB python 3.10 pytorch 1.11 transformers 4.27.1 实验环境 Change your pip source pip config set global.extra-index-url https://pypi.tuna.tsinghua.edu.cn/simple # Writing to /opt/conda/pip.conf pip config set global.inde…

浏览器工作原理与实践--DOM树:JavaScript是如何影响DOM树构建的

在上一篇文章中&#xff0c;我们通过开发者工具中的网络面板&#xff0c;介绍了网络请求过程的几种性能指标以及对页面加载的影响。 而在渲染流水线中&#xff0c;后面的步骤都直接或者间接地依赖于DOM结构&#xff0c;所以本文我们就继续沿着网络数据流路径来介绍DOM树是怎么生…