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
30class QCheckBox;
31
32class DockManagerNotificationBackend : public AbstractNotificationBackend
33{
34 Q_OBJECT
35
36public:
37 DockManagerNotificationBackend(QObject *parent = 0);
38
39 void notify(const Notification &);
40 void close(uint notificationId);
41 virtual SettingsPage *createConfigWidget() const;
42
43private 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
50private:
51 class ConfigWidget;
52 bool _enabled;
53 QDBusConnection _bus;
54 QDBusInterface *_dock;
55 QDBusInterface *_item;
56 int _count;
57};
58
59
60class DockManagerNotificationBackend::ConfigWidget : public SettingsPage
61{
62 Q_OBJECT
63
64public:
65 ConfigWidget(QWidget *parent = 0);
66
67 void save();
68 void load();
69 bool hasDefaults() const;
70 void defaults();
71
72private slots:
73 void widgetChanged();
74
75private:
76 QCheckBox *enabledBox;
77 bool enabled;
78};
79
80
81#endif
82