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