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_SPINBOX_H
00024 #define QDS_SPINBOX_H
00025
00026 #include "QDS_Datum.h"
00027
00028 class QtxIntSpinBox;
00029
00030 class QDS_EXPORT QDS_SpinBox : public QDS_Datum
00031 {
00032 Q_OBJECT
00033
00034 public:
00035 QDS_SpinBox( const QString&, QWidget* = 0, const int = All, const QString& = QString() );
00036 virtual ~QDS_SpinBox();
00037
00038 int step() const;
00039 void setStep( const int );
00040
00041 private slots:
00042 void onValueChanged( int );
00043
00044 protected:
00045 QtxIntSpinBox* spinBox() const;
00046
00047 virtual QWidget* createControl( QWidget* );
00048
00049 virtual QString getString() const;
00050 virtual void setString( const QString& );
00051
00052 virtual void unitSystemChanged( const QString& );
00053 };
00054
00055 #endif