Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions

t9/lcdrange.h Example File

/****************************************************************
**
** 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


Copyright © 2007 TrolltechTrademarks
TQt 3.3.8