StatusNotifierItem ("D-Bus tray icon") improvements
[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 class Indicator;
34 }
35
36 class Indicator;
37
38 typedef QHash<BufferId, Indicator *> IndicatorHash;
39
40 class IndicatorNotificationBackend : public AbstractNotificationBackend {
41   Q_OBJECT
42
43 public:
44   IndicatorNotificationBackend(QObject *parent = 0);
45   ~IndicatorNotificationBackend();
46
47   void notify(const Notification &);
48   void close(uint notificationId);
49   virtual SettingsPage *createConfigWidget() const;
50
51 private slots:
52   void activateMainWidget();
53   void enabledChanged(const QVariant &);
54   void indicatorDisplayed(QIndicate::Indicator *);
55
56 private:
57   class ConfigWidget;
58
59   bool _enabled;
60
61   QIndicate::Server *_server;
62   IndicatorHash _indicatorHash;
63 };
64
65 class IndicatorNotificationBackend::ConfigWidget : public SettingsPage {
66   Q_OBJECT
67
68 public:
69   ConfigWidget(QWidget *parent = 0);
70   ~ConfigWidget();
71
72   void save();
73   void load();
74   bool hasDefaults() const;
75   void defaults();
76
77 private slots:
78   void widgetChanged();
79
80 private:
81   Ui::IndicatorNotificationConfigWidget ui;
82
83   bool enabled;
84 };
85
86 #endif