blob: 24ff8d4a6e7fc110889999741bb6cef3165b6cca (
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
|
/****************************************************************
**
** Definition of LCDRange class, TQt tutorial 7
**
****************************************************************/
#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 );
signals:
void valueChanged( int );
private:
TQSlider *slider;
};
#endif // LCDRANGE_H
|