4b39953b056e356996a02c154c0307fc6e0cf0bd
[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     void reject();
48     void updateCachingProgress(int, int);
49
50 Q_SIGNALS:
51     //! signal emitted when user cancels caching of a dictionary
52     void cancelCaching();
53
54
55 private:
56     QLabel* cachingLabel;
57     QLabel* cachingTimeLabel;
58     QProgressBar* cachingProgressBar;
59     QPushButton* cancelButton;
60     QVBoxLayout* verticalLayout;
61     //! used to check the progress of dictionary caching
62     QTime time;
63 };
64
65 #endif // XDXFCACHINGDIALOG_H