Merge pull request #151 from Tucos/ws-hist
[quassel.git] / src / qtui / dockmanagernotificationbackend.h
1 /***************************************************************************
2  *   Copyright (C) 2013 by the Quassel Project                             *
3  *   devel@quassel-irc.org                                                 *
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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #ifndef DOCKMANAGERNOTIFICATIONBACKEND_H_
22 #define DOCKMANAGERNOTIFICATIONBACKEND_H_
23
24 #include <QDBusConnection>
25 #include <QDBusInterface>
26
27 #include "abstractnotificationbackend.h"
28 #include "settingspage.h"
29
30 class QCheckBox;
31
32 class DockManagerNotificationBackend : public AbstractNotificationBackend
33 {
34     Q_OBJECT
35
36 public:
37     DockManagerNotificationBackend(QObject *parent = 0);
38
39     void notify(const Notification &);
40     void close(uint notificationId);
41     virtual SettingsPage *createConfigWidget() const;
42
43 private slots:
44     void enabledChanged(const QVariant &);
45     void updateProgress(int progress);
46     void updateProgress(int done, int total);
47     void itemAdded(QDBusObjectPath);
48     void synchronized();
49
50 private:
51     class ConfigWidget;
52     bool _enabled;
53     bool _available;
54     QDBusConnection _bus;
55     QDBusInterface *_dock;
56     QDBusInterface *_item;
57     int _count;
58 };
59
60
61 class DockManagerNotificationBackend::ConfigWidget : public SettingsPage
62 {
63     Q_OBJECT
64
65 public:
66     ConfigWidget(bool enabled, QWidget *parent = 0);
67
68     void save();
69     void load();
70     bool hasDefaults() const;
71     void defaults();
72
73 private slots:
74     void widgetChanged();
75
76 private:
77     QCheckBox *enabledBox;
78     bool enabled;
79 };
80
81
82 #endif