first import
[mardrone] / mardrone / gaugelabel.h
1 #ifndef GAUGELABEL_H
2 #define GAUGELABEL_H
3 #include "gauge.h"
4
5 class GaugeLabel : public Gauge
6 {
7     Q_OBJECT
8 public:
9     explicit GaugeLabel(QGraphicsItem *parent = 0);
10     void paint(QPainter *painter,const QStyleOptionGraphicsItem *option,
11                                QWidget *widget);
12     void drawNumLabel(QPainter *painter);
13     void drawLabel(QPainter *painter,char *text,int style);
14 signals:
15 };
16
17 #endif // GAUGELABEL_H