5057a3acebb28cc8e03fea1c7b676d49ca0d8de5
[gpssportsniffer] / downloadingStatus.h
1 #ifndef DOWNLOADINGSTATUS_H
2 #define DOWNLOADINGSTATUS_H
3
4 #include <QDialog>
5 #include <QProgressBar>
6
7 namespace Ui {
8     class DownloadingStatus;
9 }
10
11 class DownloadingStatus : public QDialog
12 {
13     Q_OBJECT
14
15 public:
16     explicit DownloadingStatus(QWidget *parent = 0);
17     ~DownloadingStatus();
18     QProgressBar* getProgressBar();
19     void setText(QString text);
20
21
22 private:
23     Ui::DownloadingStatus *ui;
24 };
25
26 #endif // DOWNLOADINGSTATUS_H