Changed repo structure
[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(XdxfPlugin *parent) //:
32 //    QDialog((QWidget*)parent)
33 {
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
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     time.start();
60 }
61
62 void XdxfCachingDialog::updateCachingProgress(int progress, int time) {
63     cachingProgressBar->setValue(progress);
64
65     if(!cachingLabel->isVisible())
66         cachingLabel->show();
67
68     int seconds = float((100 - progress)*time) / (5*1000);
69
70     cachingLabel->setText(tr("Estimated time left: ") +
71                      /*QString::number(seconds)*/  tr("%n second(s)", "", seconds));
72     if(progress >= 100)
73         this->hide();
74         
75
76 }
77
78 void XdxfCachingDialog::reject() {
79     return;
80 }
81
82 void XdxfCachingDialog::cancelButtonClicked(){
83     return;
84 }