2188566dd10815158f09484e9a2eb35755e1726f
[quassel.git] / src / qtui / indicatornotificationbackend.h
1 /***************************************************************************
2 *   Copyright (C) 2009 Canonical Ltd                                      *
3 *   author: aurelien.gateau@canonical.com                                 *
4 *                                                                         *
5 *   This program 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 2 of the License, or     *
8 *   (at your option) version 3.                                           *
9 *                                                                         *
10 *   This program 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 this program; if not, write to the                         *
17 *   Free Software Foundation, Inc.,                                       *
18 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19 ***************************************************************************/
20
21 #ifndef INDICATORNOTIFICATIONBACKEND_H_
22 #define INDICATORNOTIFICATIONBACKEND_H_
23
24 #include <QHash>
25
26 #include "abstractnotificationbackend.h"
27 #include "settingspage.h"
28
29 #include "ui_indicatornotificationconfigwidget.h"
30
31 namespace QIndicate {
32 class Server;
33 }
34
35 class Indicator;
36
37 typedef QHash<BufferId, Indicator *> IndicatorHash;
38
39 class IndicatorNotificationBackend : public AbstractNotificationBackend {
40   Q_OBJECT
41
42 public:
43   IndicatorNotificationBackend(QObject *parent = 0);
44   ~IndicatorNotificationBackend();
45
46   void notify(const Notification &);
47   void close(uint notificationId);
48   virtual SettingsPage *createConfigWidget() const;
49
50 private slots:
51   void enabledChanged(const QVariant &);
52   void indicatorDisplayed();
53
54 private:
55   class ConfigWidget;
56
57   bool _enabled;
58
59   QIndicate::Server *_server;
60   IndicatorHash _indicatorHash;
61 };
62
63 class IndicatorNotificationBackend::ConfigWidget : public SettingsPage {
64   Q_OBJECT
65
66 public:
67   ConfigWidget(QWidget *parent = 0);
68   ~ConfigWidget();
69
70   void save();
71   void load();
72   bool hasDefaults() const;
73   void defaults();
74
75 private slots:
76   void widgetChanged();
77
78 private:
79   Ui::IndicatorNotificationConfigWidget ui;
80
81   bool enabled;
82 };
83
84 #endif