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