博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
QPushButton 控制两种状态
阅读量:4694 次
发布时间:2019-06-09

本文共 2104 字,大约阅读时间需要 7 分钟。

【1】Custom.cpp

1 #include "CustomButton.h" 2  3 CustomButton::CustomButton(QWidget* parent) 4     : QPushButton(parent) 5     , m_bCheckState(false) 6 { 7     setFixedSize(33, 33); 8     setFlat(true); 9 }10 11 void CustomButton::mousePressEvent(QMouseEvent *event)12 {13     if (m_bCheckState)14     {15         m_bCheckState = false;16         setStyleSheet("QPushButton{background-image:url(:/new/image/mute.png);border:none;}");17     }18     else19     {20         m_bCheckState = true;21         setStyleSheet("QPushButton{background-image:url(:/new/image/unmute.png);border:none;}");22     }23 24     return QPushButton::mousePressEvent(event);25 }

【2】Custom.h

1 #ifndef CUSTOMBUTTON_H 2 #define CUSTOMBUTTON_H 3  4 #include 
5 6 class CustomButton : public QPushButton 7 { 8 public: 9 CustomButton(QWidget* parent = Q_NULLPTR);10 11 protected:12 void mousePressEvent(QMouseEvent* event);13 14 private:15 bool m_bCheckState;16 };17 18 #endif // CUSTOMBUTTON_H

【3】pro

#-------------------------------------------------## Project created by QtCreator##-------------------------------------------------QT       += core guigreaterThan(QT_MAJOR_VERSION, 4): QT += widgetsTARGET = TestStateTEMPLATE = app# The following define makes your compiler emit warnings if you use# any feature of Qt which as been marked as deprecated (the exact warnings# depend on your compiler). Please consult the documentation of the# deprecated API in order to know how to port your code away from it.DEFINES += QT_DEPRECATED_WARNINGS# You can also make your code fail to compile if you use deprecated APIs.# In order to do so, uncomment the following line.# You can also select to disable deprecated APIs only up to a certain version of Qt.#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0SOURCES += main.cpp\        widget.cpp \    CustomButton.cppHEADERS  += widget.h \    CustomButton.hFORMS    += widget.uiRESOURCES += \    image.qrc

【4】其他默认文件

Good Good  Study, Day Day Up.

顺序 选择  循环 总结

转载于:https://www.cnblogs.com/Braveliu/p/9440223.html

你可能感兴趣的文章
SSH加固
查看>>
端口扫描base
查看>>
iOS IM开发的一些开源、框架和教程等资料
查看>>
FansUnion:共同写博客计划终究还是“流产”了
查看>>
python 二维字典
查看>>
pip 警告!The default format will switch to columns in the future
查看>>
Arrays类学习笔记
查看>>
实验吧之【天下武功唯快不破】
查看>>
2019-3-25多线程的同步与互斥(互斥锁、条件变量、读写锁、自旋锁、信号量)...
查看>>
win7-64 mysql的安装
查看>>
dcm4chee 修改默认(0002,0013) ImplementationVersionName
查看>>
maven3在eclipse3.4.2中创建java web项目
查看>>
发布时间 sql语句
查看>>
黑马程序员 ExecuteReader执行查询
查看>>
记一些从数学和程序设计中体会到的思想
查看>>
题目1462:两船载物问题
查看>>
POJ 2378 Tree Cutting(树形DP,水)
查看>>
第二冲刺阶段个人博客5
查看>>
UVA 116 Unidirectional TSP (白书dp)
查看>>
第三方测速工具
查看>>