blob: cbb69b4b7cfe970fbf83aa554369a783376a0274 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/****************************************************************
**
** Definition of LCDRange class, TQt tutorial 8
**
****************************************************************/
#ifndef LCDRANGE_H
#define LCDRANGE_H
#include <ntqvbox.h>
class TQSlider;
class LCDRange : public TQVBox
{
TQ_OBJECT
public:
LCDRange( TQWidget *parent=0, const char *name=0 );
int value() const;
public slots:
void setValue( int );
void setRange( int minVal, int maxVal );
signals:
void valueChanged( int );
private:
TQSlider *slider;
};
#endif // LCDRANGE_H
|