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