fix small bug(wildcard), and change some comments
[mdictionary] / src / plugins / xdxf / XdxfDictDownloadProgressDialog.cpp
1 /*******************************************************************************
2
3     This file is part of mDictionary.
4
5     mDictionary is free software: you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation, either version 3 of the License, or
8     (at your option) any later version.
9
10     mDictionary is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with mDictionary.  If not, see <http://www.gnu.org/licenses/>.
17
18     Copyright 2010 Comarch S.A.
19
20 *******************************************************************************/
21 /*!
22     \file XdxfDictDownloadProgressDialog.cpp
23     \author Mateusz Półrola <mateusz.polrola@comarch.com>
24 */
25
26 #include "XdxfDictDownloadProgressDialog.h"
27
28 XdxfDictDownloadProgressDialog::XdxfDictDownloadProgressDialog(QWidget*parent):
29     QDialog(parent) {
30     verticalLayout = new QVBoxLayout(this);
31     setLayout(verticalLayout);
32
33     downloadProgressBar = new QProgressBar(this);
34     downloadProgressBar->setMinimum(0);
35     downloadProgressBar->setMaximum(0);
36     downloadProgressBar->setTextVisible(true);
37
38     cancelButton = new QPushButton(tr("Cancel"),this);
39
40     connect(cancelButton, SIGNAL(clicked()),
41             this, SIGNAL(cancelDownloading()));
42
43     #ifndef Q_WS_MAEMO_5
44             downloadLabel = new QLabel(this);
45             verticalLayout->addWidget(downloadLabel, 0, Qt::AlignCenter);
46     #endif
47
48     verticalLayout->addWidget(downloadProgressBar);
49     verticalLayout->addWidget(cancelButton);
50     setModal(true);
51
52     #ifndef Q_WS_MAEMO_5
53         setMinimumWidth(350);
54     #endif
55 }
56
57
58 void XdxfDictDownloadProgressDialog::show() {
59     downloadProgressBar->setMaximum(0);
60     QDialog::show();
61 }
62
63
64 void XdxfDictDownloadProgressDialog::setText(QString text) {
65     setWindowTitle(text);
66     #ifndef Q_WS_MAEMO_5
67         downloadLabel->setText(text);
68     #endif
69 }
70
71
72 void XdxfDictDownloadProgressDialog::updateProgress(float progress) {
73     if(downloadProgressBar->maximum() == 0) {
74         downloadProgressBar->setMaximum(100);
75     }
76     downloadProgressBar->setValue(progress*100);
77 }
78
79
80 void XdxfDictDownloadProgressDialog::reject() {
81     #ifndef Q_WS_MAEMO_5
82         Q_EMIT cancelDownloading();
83     #else
84         return;
85     #endif
86 }