Progressbar fix
[groove] / grooveprogressbar.h
diff --git a/grooveprogressbar.h b/grooveprogressbar.h
new file mode 100644 (file)
index 0000000..770e1b1
--- /dev/null
@@ -0,0 +1,25 @@
+#ifndef GROOVEPROGRESSBAR_H
+#define GROOVEPROGRESSBAR_H
+
+#include <QDialog>
+#include <QtGui>
+
+class grooveProgressBar : public QDialog
+{
+    Q_OBJECT
+public:
+    explicit grooveProgressBar(QDialog *parent = 0);
+    void setMaximum(int maximum);
+    void setValue(int position);
+    int maximum();
+
+signals:
+
+public slots:
+
+private:
+    QProgressBar *bar;
+    QHBoxLayout  *lay;
+};
+
+#endif // GROOVEPROGRESSBAR_H