b42a2ea3ad97d92fa3ace847b7e519a6829c1c00
[mdictionary] / src / mdictionary / gui / NotifyManager.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 NotifyManager.h
23     \brief Manages notifications in applications
24
25     \author Mateusz Półrola <mateusz.polrola@comarch.pl>
26 */
27
28 #ifndef NOTIFYMANAGER_H
29 #define NOTIFYMANAGER_H
30
31 #include <QObject>
32 #include <QHash>
33 #include <QString>
34 #include <QDialog>
35 #include "../../include/Notify.h"
36 #include "MenuWidget.h"
37
38 /*!
39     Shows notifications to user, assures that a couple of the same notifications
40     will not be displayed at the same time. It automatically deletes
41     notifications after user accepts or rejects them.
42 */
43
44 class NotifyManager : public QObject
45 {
46     Q_OBJECT
47 public:
48     NotifyManager(QObject *parent = 0);
49
50 public slots:
51     //! Shows notification
52     /*!
53         Displays new notification of passed type containing passed text
54         \param type type of notification
55         \param text text of notification
56         \sa Notify::NotifyType
57     */
58     void showNotification(Notify::NotifyType type, QString text);
59
60     //! Refresh all notifications when stacked widgets changes
61     void screenChanged();
62
63     void setMenu(QWidget*);
64
65 private slots:
66     //! Informs that notification was closed and can be deleted
67     void notificationClosed();
68
69 private:
70     QHash<QString, QDialog*> activeNotifies;
71     QWidget* menu;
72 };
73
74 #endif // NOTIFYMANAGER_H