diff options
Diffstat (limited to 'tutorial/t13/lcdrange.h')
-rw-r--r-- | tutorial/t13/lcdrange.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/tutorial/t13/lcdrange.h b/tutorial/t13/lcdrange.h new file mode 100644 index 0000000..2df2686 --- /dev/null +++ b/tutorial/t13/lcdrange.h @@ -0,0 +1,42 @@ +/**************************************************************** +** +** Definition of LCDRange class, Qt tutorial 12 +** +****************************************************************/ + +#ifndef LCDRANGE_H +#define LCDRANGE_H + +#include <qwidget.h> + +class QSlider; +class QLabel; + + +class LCDRange : public QWidget +{ + Q_OBJECT +public: + LCDRange( QWidget *parent=0, const char *name=0 ); + LCDRange( const char *s, QWidget *parent=0, const char *name=0 ); + + int value() const; + const char *text() const; + +public slots: + void setValue( int ); + void setRange( int minVal, int maxVal ); + void setText( const char * ); + +signals: + void valueChanged( int ); + +private: + void init(); + + QSlider *slider; + QLabel *label; +}; + + +#endif // LCDRANGE_H |