Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef QDS_CHECKBOX_H
00024 #define QDS_CHECKBOX_H
00025
00026 #include "QDS_Datum.h"
00027
00028 class QCheckBox;
00029
00030 class QDS_EXPORT QDS_CheckBox : public QDS_Datum
00031 {
00032 Q_OBJECT
00033
00034 public:
00035 QDS_CheckBox( const QString&, QWidget* = 0, const int = All, const QString& = QString() );
00036 virtual ~QDS_CheckBox();
00037
00038 bool isChecked() const;
00039 void setChecked( const bool );
00040
00041 virtual void clear();
00042
00043 signals:
00044 void toggled( bool );
00045
00046 private slots:
00047 void onParamChanged();
00048 void onStateChanged( int );
00049
00050 protected:
00051 QCheckBox* checkBox() const;
00052 virtual QWidget* createControl( QWidget* );
00053
00054 virtual QString getString() const;
00055 virtual void setString( const QString& );
00056 };
00057
00058 #endif