#pragma execution_character_set("utf-8")
#include "imageswitch.h"
#include "qpainter.h"
#include "qdebug.h"
ImageSwitch::ImageSwitch(QWidget *parent) : QWidget(parent)
{
isChecked = false;
buttonStyle = ButtonStyle_2;
imgOffFile = ":/image/imageswitch/btncheckoff2.png";
imgOnFile = ":/image/imageswitch/btncheckon2.png";
imgFile = imgOffFile;
}
void ImageSwitch::mousePressEvent(QMouseEvent *)
{
imgFile = isChecked ? imgOffFile : imgOnFile;
isChecked = !isChecked;
Q_EMIT checkedChanged(isChecked);
this->update();
}
void ImageSwitch::paintEvent(QPaintEvent *)
{
QPainter painter(this);
painter.setRenderHints(QPainter::SmoothPixmapTransform);
QImage img(imgFile);
img = img.scaled(this->size(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
//按照比例自动居中绘制
int pixX = rect().center().x() - img.width() / 2;
int pixY = rect().center().y() - img.height() / 2;
QPoint point(pixX, pixY);
painter.drawImage(point, img);
}
QSize ImageSwitch::sizeHint() const
{
return QSize(87, 28);
}
QSize ImageSwitch::minimumSizeHint() const
{
return QSize(87, 28);
}
bool ImageSwitch::getChecked() const
{
return isChecked;
}
void ImageSwitch::setChecked(bool isChecked)
{
if (this->isChecked != isChecked) {
this->isChecked = isChecked;
imgFile = isChecked ? imgOnFile : imgOffFile;
this->update();
}
}
ImageSwitch::ButtonStyle ImageSwitch::getButtonStyle() const
{
return this->buttonStyle;
}
void ImageSwitch::setButtonStyle(const ImageSwitch::ButtonStyle &buttonStyle)
{
if (this->buttonStyle != buttonStyle) {
this->buttonStyle = buttonStyle;
if (buttonStyle == ButtonStyle_1) {
imgOffFile = ":/image/imageswitch/btncheckoff1.png";
imgOnFile = ":/image/imageswitch/btncheckon1.png";
this->resize(87, 28);
} else if (buttonStyle == ButtonStyle_2) {
imgOffFile = ":/image/imageswitch/btncheckoff2.png";
imgOnFile = ":/image/imageswitch/btncheckon2.png";
this->resize(87, 28);
} else if (buttonStyle == ButtonStyle_3) {
imgOffFile = ":/image/imageswitch/btncheckoff3.png";
imgOnFile = ":/image/imageswitch/btncheckon3.png";
this->resize(96, 38);
}
imgFile = isChecked ? imgOnFile : imgOffFile;
setChecked(isChecked);
this->update();
updateGeometry();
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
用法链接:https://menghui666.blog.csdn.net/article/details/137435136?spm=1001.2014.3001.5502 基于Qt和C++实现的多种样式开关控件+源码 基于Qt和C++实现的多种样式开关控件+源码 基于Qt和C++实现的多种样式开关控件+源码 基于Qt和C++实现的多种样式开关控件+源码 基于Qt和C++实现的多种样式开关控件+源码 基于Qt和C++实现的多种样式开关控件+源码
资源推荐
资源详情
资源评论
收起资源包目录
imageswitch.zip (18个子文件)
imageswitch
frmimageswitch.h 394B
main.qrc 390B
ui_frmimageswitch.h 3KB
imageswitch.cpp 2KB
imageswitch.vcxproj.filters 5KB
imageswitch.vcxproj 24KB
imageswitch.h 1KB
image
imageswitch
btncheckoff1.png 4KB
btncheckoff3.png 638B
btncheckoff2.png 2KB
btncheckon3.png 696B
btncheckon1.png 3KB
btncheckon2.png 2KB
main.cpp 819B
imageswitch.pro 422B
frmimageswitch.ui 2KB
frmimageswitch.cpp 1KB
imageswitch.vcxproj.user 168B
共 18 条
- 1
资源评论
梦回阑珊
- 粉丝: 5151
- 资源: 1670
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- C#机械制造业信息管理系统源码数据库 Access源码类型 WinForm
- 【python毕业设计】智能旅游推荐系统源码(完整前后端+mysql+说明文档+LW).zip
- springboot美容院管理系统(代码+数据库+LW)
- 【python毕业设计】学生成绩管理系统源码(完整前后端+mysql+说明文档+LW).zip
- 商道融绿、润灵环球ESG评级数据(2015-2023年)dta
- 【python毕业设计】疫情数据可视化分析系统源码(完整前后端+mysql+说明文档+LW).zip
- elasticsearch-analysis-dynamic-synonym 8.16.0
- 【python毕业设计】疫情防控下医院人员调动系统源码(完整前后端+mysql+说明文档+LW).zip
- 【python毕业设计】药物管理系统源码(完整前后端+mysql+说明文档).zip
- 2024年11月网络规划设计师(案例分析)真题与解析
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功