ZNewCheckBox.h
资源名称:timer_scr.rar [点击查看]
上传用户:karlzgj
上传日期:2020-03-01
资源大小:68k
文件大小:0k
源码类别:
TAPI编程
开发平台:
QT
- #ifndef ZNEWCHECKBOX_H
- #define ZNEWCHECKBOX_H
- #include <ZCheckBox.h>
- class ZNewCheckBox : public ZCheckBox
- {
- Q_OBJECT
- public:
- ZNewCheckBox( const QString & text, QWidget * parent);
- ~ZNewCheckBox();
- bool isChecked();
- void setChecked( bool check );
- private slots:
- void slotSChanged(bool state);
- private:
- bool curState;
- };
- #endif