Add an icon (inkscape SVG)
[groove] / grooveprogressbar.h
1 #ifndef GROOVEPROGRESSBAR_H
2 #define GROOVEPROGRESSBAR_H
3
4 #include <QDialog>
5 #include <QtGui>
6 #include "qmaemo5rotator.h"
7
8 class grooveProgressBar : public QDialog
9 {
10     Q_OBJECT
11 public:
12     explicit grooveProgressBar(QDialog *parent = 0);
13     void setMaximum(int maximum);
14     void setValue(int position);
15     int maximum();
16     QMaemo5Rotator *rot;
17
18 signals:
19
20 public slots:
21
22 private:
23     QProgressBar *bar;
24     QHBoxLayout  *lay;
25 };
26
27 #endif // GROOVEPROGRESSBAR_H