ZNewCheckBox.h
上传用户:karlzgj
上传日期:2020-03-01
资源大小:68k
文件大小:0k
源码类别:

TAPI编程

开发平台:

QT

  1. #ifndef ZNEWCHECKBOX_H
  2. #define ZNEWCHECKBOX_H
  3. #include <ZCheckBox.h>
  4. class ZNewCheckBox : public ZCheckBox 
  5. {
  6.   Q_OBJECT
  7.   public:
  8.     ZNewCheckBox( const QString & text, QWidget * parent);
  9.     ~ZNewCheckBox();   
  10.    
  11.     bool isChecked();
  12.     void setChecked( bool check );
  13.     
  14.   private slots:
  15.     void slotSChanged(bool state);
  16.     
  17.   private:
  18.     bool curState; 
  19. };
  20. #endif