summaryrefslogtreecommitdiffstats
path: root/tutorial/t7/lcdrange.h
blob: 365c732896300ab682ae5f464715e16ab7608383 (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 <qvbox.h>

class TQSlider;


class LCDRange : public TQVBox
{
    Q_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