You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tqt3/tutorial/t14/lcdrange.h

43 lines
796 B

/****************************************************************
**
** Definition of LCDRange class, TQt tutorial 12
**
****************************************************************/
#ifndef LCDRANGE_H
#define LCDRANGE_H
#include <ntqwidget.h>
class TQSlider;
class TQLabel;
class LCDRange : public TQWidget
{
TQ_OBJECT
public:
LCDRange( TQWidget *parent=0, const char *name=0 );
LCDRange( const char *s, TQWidget *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();
TQSlider *slider;
TQLabel *label;
};
#endif // LCDRANGE_H