Clean and order documentation in source files. Source ready to beta 2 release
[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     \brief Shows downloading progress bar.
24
25     \author Mateusz Półrola <mateusz.polrola@comarch.com>
26 */
27
28 #include "XdxfDictDownloadProgressDialog.h"
29
30 XdxfDictDownloadProgressDialog::XdxfDictDownloadProgressDialog(QWidget*parent):
31     QDialog(parent) {
32     verticalLayout = new QVBoxLayout(this);
33     setLayout(verticalLayout);
34
35     downloadProgressBar = new QProgressBar(this);
36     downloadProgressBar->setMinimum(0);
37     downloadProgressBar->setMaximum(0);
38     downloadProgressBar->setTextVisible(true);
39
40     cancelButton = new QPushButton(tr("Cancel"),this);
41
42     connect(cancelButton, SIGNAL(clicked()),
43             this, SIGNAL(cancelDownloading()));
44
45     #ifndef Q_WS_MAEMO_5
46             downloadLabel = new QLabel(this);
47             verticalLayout->addWidget(downloadLabel, 0, Qt::AlignCenter);
48     #endif
49
50     verticalLayout->addWidget(downloadProgressBar);
51     verticalLayout->addWidget(cancelButton);
52     setModal(true);
53
54     #ifndef Q_WS_MAEMO_5
55         setMinimumWidth(350);
56     #endif
57 }
58
59
60 void XdxfDictDownloadProgressDialog::show() {
61     downloadProgressBar->setMaximum(0);
62     QDialog::show();
63 }
64
65
66 void XdxfDictDownloadProgressDialog::setText(QString text) {
67     setWindowTitle(text);
68     #ifndef Q_WS_MAEMO_5
69         downloadLabel->setText(text);
70     #endif
71 }
72
73
74 void XdxfDictDownloadProgressDialog::updateProgress(float progress) {
75     if(downloadProgressBar->maximum() == 0) {
76         downloadProgressBar->setMaximum(100);
77     }
78     downloadProgressBar->setValue(progress*100);
79 }
80
81
82 void XdxfDictDownloadProgressDialog::reject() {
83     #ifndef Q_WS_MAEMO_5
84         Q_EMIT cancelDownloading();
85     #else
86         return;
87     #endif
88 }