putting project-files up
[wpcreator] / src / progressdialog.h
1 #ifndef PROGRESSDIALOG_H
2 #define PROGRESSDIALOG_H
3
4 #include <QtGui/QDialog>
5
6 namespace Ui {
7     class ProgressDialog;
8 }
9
10 class ProgressDialog : public QDialog {
11     Q_OBJECT
12     Q_DISABLE_COPY(ProgressDialog)
13 public:
14     explicit ProgressDialog(QWidget *parent = 0);
15     virtual ~ProgressDialog();
16
17 public slots:
18     void updateInstallationStatus(int);
19     void installationFinished ();
20
21 protected:
22     virtual void changeEvent(QEvent *e);
23
24 private:
25     Ui::ProgressDialog *m_ui;
26 };
27
28 #endif // PROGRESSDIALOG_H