Symbian fixes: full screen mode, dialog softkeys.
[dorian] / widgets / progressdialog.h
1 #ifndef PROGRESSDIALOG_H
2 #define PROGRESSDIALOG_H
3
4 #include <QString>
5 #include <QProgressDialog>
6
7 class ProgressDialog: public QProgressDialog
8 {
9     Q_OBJECT
10
11 public:
12     explicit ProgressDialog(const QString &label, QWidget *parent = 0);
13     void showWait();
14
15 signals:
16
17 public slots:
18
19 };
20
21 #endif // PROGRESSDIALOG_H