1 Star 0 Fork 0

yuwei/foldingControl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
HairColorItemWidget.cpp 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
yuwei 提交于 2024-09-12 11:34 . 重构
#include "HairColorItemWidget.h"
#include <QPainter>
HairColorItemWidget::HairColorItemWidget(const QString& id, QWidget* parent)
: QWidget(parent)
, ui(new Ui::HairColorItemWidgetClass())
, m_id(id)
{
ui->setupUi(this);
resize(34, 34);
}
HairColorItemWidget::~HairColorItemWidget()
{
delete ui;
}
void HairColorItemWidget::setColor(const QColor& color)
{
m_color = color;
update();
}
void HairColorItemWidget::setSelected(bool isSelected)
{
m_isSelected = isSelected;
update();
}
void HairColorItemWidget::paintEvent(QPaintEvent* event)
{
QPainter painter(this);
painter.setRenderHints(QPainter::Antialiasing | QPainter::SmoothPixmapTransform);
painter.setPen(Qt::NoPen);
painter.setBrush(m_color);
const int padding = 3;
QRect drawRect(padding, padding, width() - 2 * padding, height() - 2 * padding);
painter.drawRoundedRect(drawRect, 6, 6);
// 绘制边框
if (m_isSelected) {
painter.setBrush(Qt::NoBrush);
painter.setPen(QPen(QColor(0, 151, 255)));
painter.drawRoundedRect(1, 1, width() - 2, height() - 2, 6, 6);
}
}
void HairColorItemWidget::mousePressEvent(QMouseEvent* event)
{
emit sigColorSelected(m_id);
QWidget::mousePressEvent(event);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yuwei_2_838529949/folding-control.git
git@gitee.com:yuwei_2_838529949/folding-control.git
yuwei_2_838529949
folding-control
foldingControl
master

搜索帮助