f4ed7b7859c5547c8791ce0c1d0f9af4eda94240
[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
53 private:
54   class ConfigWidget;
55
56   bool _enabled;
57
58   QIndicate::Server *_server;
59   IndicatorHash _indicatorHash;
60 };
61
62 class IndicatorNotificationBackend::ConfigWidget : public SettingsPage {
63   Q_OBJECT
64
65 public:
66   ConfigWidget(QWidget *parent = 0);
67   ~ConfigWidget();
68
69   void save();
70   void load();
71   bool hasDefaults() const;
72   void defaults();
73
74 private slots:
75   void widgetChanged();
76
77 private:
78   Ui::IndicatorNotificationConfigWidget ui;
79
80   bool enabled;
81 };
82
83 #endif