2a3b935c88937f5ddb4713ae5411a468b48c06b3
[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 //Created by Mateusz Półrola
23
24 #include "XdxfCachingDialog.h"
25 #include "xdxfplugin.h"
26 #include <QDebug>
27
28
29 XdxfCachingDialog::XdxfCachingDialog(XdxfPlugin *parent) :
30     QDialog(0)
31 {
32     verticalLayout = new QVBoxLayout;
33     setLayout(verticalLayout);
34
35     setWindowTitle(tr("Caching dictionary, please wait"));
36     cachingProgressBar = new QProgressBar;
37     cachingProgressBar->setMinimum(0);
38     cachingProgressBar->setMaximum(100);
39     cachingProgressBar->setTextVisible(true);
40
41     cancelButton = new QPushButton(tr("Cancel"));
42
43
44     verticalLayout->addWidget(cachingProgressBar);
45     verticalLayout->addWidget(cancelButton);
46
47     connect(cancelButton, SIGNAL(clicked()),
48             this, SIGNAL(cancelCaching()));
49
50     connect(parent, SIGNAL(updateCachingProgress(int, int)),
51             this, SLOT(updateCachingProgress(int, int)));
52
53     time.start();
54 }
55
56 void XdxfCachingDialog::updateCachingProgress(int progress, int time) {
57     cachingProgressBar->setValue(progress);
58
59
60     int seconds = float((100 - progress)*time) / (5*1000);
61
62     setWindowTitle(tr("Caching dictionary, please wait ") + "( " +
63                       QString::number(seconds) + tr(" seconds left") + " )");
64
65 }
66
67 void XdxfCachingDialog::reject() {
68     return;
69 }