29a8d18fb9da9fc4e1dd496ebd94a372af55b7d5
[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 */
24 //Created by Mateusz Półrola
25
26 #include "XdxfCachingDialog.h"
27 #include "xdxfplugin.h"
28 #include <QDebug>
29
30
31 XdxfCachingDialog::XdxfCachingDialog(QWidget *parent): QDialog(parent) {
32     verticalLayout = new QVBoxLayout(this);
33     setLayout(verticalLayout);
34
35     setWindowTitle(tr("Caching dictionary, please wait"));
36     cachingProgressBar = new QProgressBar(this);
37     cachingProgressBar->setMinimum(0);
38     cachingProgressBar->setMaximum(100);
39     cachingProgressBar->setTextVisible(true);
40
41     cancelButton = new QPushButton(tr("Cancel"),this);
42
43
44     cachingLabel = new QLabel(this);
45     cachingLabel->hide();
46
47
48     verticalLayout->addWidget(cachingLabel);
49     verticalLayout->addWidget(cachingProgressBar);
50     verticalLayout->addWidget(cancelButton);
51
52     connect(cancelButton, SIGNAL(clicked()),
53             this, SIGNAL(cancelCaching()));
54
55     time.start();
56
57     setModal(true);
58 }
59
60
61 void XdxfCachingDialog::reject() {
62     return;
63 }
64
65 void XdxfCachingDialog::updateCachingProgress(int progress, int time) {
66     cachingProgressBar->setValue(progress);
67
68     if(!cachingLabel->isVisible())
69         cachingLabel->show();
70
71     int seconds = float((100 - progress)*time) / (5*1000);
72
73     cachingLabel->setText(tr("Estimated time left: ") +
74                           tr("%n second(s)", "", seconds));
75     if(progress >= 100)
76         this->accept();
77 }