1 Star 0 Fork 21

龙在江湖/QT-Monitor

forked from wangnanbo/QT-Monitor 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
switchbutton.h 698 Bytes
一键复制 编辑 原始数据 按行查看 历史
猴哥一棍流 提交于 2015-09-07 08:56 . init
#ifndef SWITCHBUTTON_H
#define SWITCHBUTTON_H
#include <QPushButton>
/* 说明:自定义开关按钮控件头文件
* 功能:用来控制配置文件的开关设置
* 作者:刘典武 QQ:517216493
* 时间:2013-12-19 检查:2014-1-10
*/
class SwitchButton : public QPushButton
{
Q_OBJECT
public:
explicit SwitchButton(QWidget *parent = 0);
//获取当前选中状态
bool GetCheck() const {
return isCheck;
}
//设置当前选中状态
void SetCheck(bool isCheck);
private:
bool isCheck;
QString styleOn;
QString styleOff;
signals:
private slots:
void ChangeOnOff();
};
#endif //SWITCHBUTTON_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/yizhengsh/QT-Monitor.git
git@gitee.com:yizhengsh/QT-Monitor.git
yizhengsh
QT-Monitor
QT-Monitor
master

搜索帮助