Clean and order documentation in source files. Source ready to beta 2 release
[mdictionary] / src / plugins / xdxf / XdxfCachingDialog.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 XdxfCachingDialog.cpp
23     \brief Shows dialog with progress of dictionary caching
24
25     \author Mateusz Półrola
26 */
27
28 #include "XdxfCachingDialog.h"
29 #include "xdxfplugin.h"
30 #include <QDebug>
31
32
33 XdxfCachingDialog::XdxfCachingDialog(QWidget *parent): QDialog(parent) {
34     verticalLayout = new QVBoxLayout(this);
35     setLayout(verticalLayout);
36
37     setWindowTitle(tr("Caching dictionary, please wait"));
38     cachingProgressBar = new QProgressBar(this);
39     cachingProgressBar->setMinimum(0);
40     cachingProgressBar->setMaximum(100);
41     cachingProgressBar->setTextVisible(true);
42
43     cancelButton = new QPushButton(tr("Cancel"),this);
44     cachingTimeLabel = new QLabel(this);
45     cachingTimeLabel->hide();
46
47     #ifndef Q_WS_MAEMO_5
48             cachingLabel = new QLabel(this);
49             cachingLabel->setText(tr("Caching dictionary, please wait"));
50             verticalLayout->addWidget(cachingLabel, 0, Qt::AlignCenter);
51     #endif
52
53     verticalLayout->addWidget(cachingTimeLabel);
54     verticalLayout->addWidget(cachingProgressBar);
55     verticalLayout->addWidget(cancelButton);
56
57     connect(cancelButton, SIGNAL(clicked()),
58             this, SIGNAL(cancelCaching()));
59
60     time.start();
61     setModal(true);
62 }
63
64
65 void XdxfCachingDialog::updateCachingProgress(int progress, int time) {
66     cachingProgressBar->setValue(progress);
67
68     if(!cachingTimeLabel->isVisible())
69         cachingTimeLabel->show();
70
71     int seconds = float((100 - progress)*time) / (5*1000);
72
73     cachingTimeLabel->setText(tr("Estimated time left: ") +
74                           tr("%n second(s)", "", seconds));
75     if(progress >= 100)
76         this->accept();
77 }