bff11cdb1fae44e2fc13fa6a249c8208ea443b64
[gpssportsniffer] / downloadingStatus.cpp
1 #include "downloadingStatus.h"
2 #include "ui_downloadingStatus.h"
3
4 DownloadingStatus::DownloadingStatus(QWidget *parent) :
5     QDialog(parent),
6     ui(new Ui::DownloadingStatus)
7 {
8     ui->setupUi(this);
9 }
10
11 DownloadingStatus::~DownloadingStatus()
12 {
13     delete ui;
14 }
15
16 QProgressBar* DownloadingStatus::getProgressBar(){
17     return ui->progressBar;
18 }
19
20 void DownloadingStatus::setText(QString text){
21     ui->label->setText(text);
22 }