Merge branch 'cache'
[mdictionary] / trunk / src / plugins / xdxf / src / 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(XdxfPlugin *parent) :
32     QDialog(0)
33 {
34     verticalLayout = new QVBoxLayout;
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
45
46     cachingLabel = new QLabel(this);
47     cachingLabel->hide();
48
49
50     verticalLayout->addWidget(cachingLabel);
51     verticalLayout->addWidget(cachingProgressBar);
52     verticalLayout->addWidget(cancelButton);
53
54     connect(cancelButton, SIGNAL(clicked()),
55             this, SIGNAL(cancelCaching()));
56
57     connect(parent, SIGNAL(updateCachingProgress(int, int)),
58             this, SLOT(updateCachingProgress(int, int)));
59
60     time.start();
61 }
62
63 void XdxfCachingDialog::updateCachingProgress(int progress, int time) {
64     cachingProgressBar->setValue(progress);
65
66     if(!cachingLabel->isVisible())
67         cachingLabel->show();
68
69     int seconds = float((100 - progress)*time) / (5*1000);
70
71     cachingLabel->setText(tr("Estimated time left: ") +
72                       QString::number(seconds) + tr(" seconds"));
73     if(progress >= 100)
74         this->hide();
75         
76
77 }
78
79 void XdxfCachingDialog::reject() {
80     return;
81 }
82
83 void XdxfCachingDialog::cancelButtonClicked(){
84     return;
85 }