#ifndef DISKGAUGE_H #define DISKGAUGE_H #include #include #include #include class DiskGauge : public QwtDial { public: DiskGauge( QWidget* parent = NULL ); //void setGaugeValues( double minGaugeVal, double maxGaugeVal, double curGaugeVal ); void setLabel( QString newLabel ); protected: virtual void drawScaleContents( QPainter *painter, const QPoint ¢er, int radius ) const; private: QString gaugeLabel; }; #endif // DISKGAUGE_H