b5192914bbe99be6d5c44b500bf84a0f9bf46110
[mdictionary] / src / plugins / xdxf / XdxfCachingDialog.h
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.h
23     \author Mateusz Półrola <mateusz.polrola@gmail.com>
24 */
25
26
27 #ifndef XDXFCACHINGDIALOG_H
28 #define XDXFCACHINGDIALOG_H
29
30 #include <QDialog>
31 #include <QtGui>
32
33
34 class XdxfPlugin;
35
36 //! Shows dialog with progress of dictionary caching
37 /*!
38     Displays progress bar and estimated time left of caching
39 */
40 class XdxfCachingDialog : public QDialog
41 {
42     Q_OBJECT
43 public:
44     explicit XdxfCachingDialog(QWidget *parent = 0);
45
46 public Q_SLOTS:
47     //! Overload function from QDialog, this function does nothing
48     void reject() { return;}
49
50     //! update progresBar and print text with time to end caching
51     void updateCachingProgress(int, int);
52
53 Q_SIGNALS:
54     //! signal emitted when user cancels caching of a dictionary
55     void cancelCaching();
56
57
58 private:
59     QLabel* cachingLabel;
60     QLabel* cachingTimeLabel;
61     QProgressBar* cachingProgressBar;
62     QPushButton* cancelButton;
63     QVBoxLayout* verticalLayout;
64     //! used to check the progress of dictionary caching
65     QTime time;
66 };
67
68 #endif // XDXFCACHINGDIALOG_H