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