summaryrefslogtreecommitdiffstats
path: root/tutorial/t9/lcdrange.h
blob: f42bd8313d9f8fa40321e0361106179fab2e60ce (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 <tqvbox.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