Added download progress notification
[mdictionary] / src / plugins / xdxf / XdxfDictDownloadProgressDialog.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 /*!
23   \file XdxfDictDownloadProgressDialog.h
24   \author Mateusz Półrola <mateusz.polrola@comarch.com>
25   */
26
27 #ifndef XDXFDICTDOWNLOADPROGRESSDIALOG_H
28 #define XDXFDICTDOWNLOADPROGRESSDIALOG_H
29
30 #include <QDialog>
31 #include <QtGui>
32
33 /*!
34   Shows downloading progress bar. Currently it displays "busy bar".
35   User can cancel current download by pressing cancel button
36   */
37 class XdxfDictDownloadProgressDialog : public QDialog {
38     Q_OBJECT
39 public:
40     XdxfDictDownloadProgressDialog(QWidget *parent = 0);
41
42 public Q_SLOTS:
43     //! Reimplemented to block rejecting on maemo. User must cancel.
44     void reject();
45
46     //! Set text which will be displayed to user as info about current download
47     void setText(QString);
48
49     void updateProgress(float progress);
50
51     void show();
52
53 Q_SIGNALS:
54     //! signal emitted when user cancels downloading of a dictionary
55     void cancelDownloading();
56
57
58 private:
59     QLabel* downloadLabel;
60     QProgressBar* downloadProgressBar;
61     QPushButton* cancelButton;
62     QVBoxLayout* verticalLayout;
63 };
64
65 #endif // XDXFDICTDOWNLOADPROGRESSDIALOG_H