putting project-files up
[wpcreator] / src / progressdialog.h
diff --git a/src/progressdialog.h b/src/progressdialog.h
new file mode 100644 (file)
index 0000000..f294ac2
--- /dev/null
@@ -0,0 +1,28 @@
+#ifndef PROGRESSDIALOG_H
+#define PROGRESSDIALOG_H
+
+#include <QtGui/QDialog>
+
+namespace Ui {
+    class ProgressDialog;
+}
+
+class ProgressDialog : public QDialog {
+    Q_OBJECT
+    Q_DISABLE_COPY(ProgressDialog)
+public:
+    explicit ProgressDialog(QWidget *parent = 0);
+    virtual ~ProgressDialog();
+
+public slots:
+    void updateInstallationStatus(int);
+    void installationFinished ();
+
+protected:
+    virtual void changeEvent(QEvent *e);
+
+private:
+    Ui::ProgressDialog *m_ui;
+};
+
+#endif // PROGRESSDIALOG_H