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.

39 lines
619 B

#ifndef _KNOB_H_
#define _KNOB_H_
#include <qwidget.h>
class QwtKnob;
class QLabel;
class Knob: public QWidget
{
Q_OBJECT
Q_PROPERTY( QColor theme READ theme WRITE setTheme )
public:
Knob( const QString &title,
double min, double max, QWidget *parent = NULL );
virtual QSize sizeHint() const;
void setValue( double value );
double value() const;
void setTheme( const QColor & );
QColor theme() const;
Q_SIGNALS:
double valueChanged( double );
protected:
virtual void resizeEvent( QResizeEvent * );
private:
QwtKnob *d_knob;
QLabel *d_label;
};
#endif