cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / qtui / dockmanagernotificationbackend.h
1 /***************************************************************************
2  *   Copyright (C) 2013-2020 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 = nullptr);
38
39     void notify(const Notification&) override;
40     void close(uint notificationId) override;
41     SettingsPage* createConfigWidget() const override;
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{nullptr};
56     QDBusInterface* _item{nullptr};
57     int _count{0};
58 };
59
60 class DockManagerNotificationBackend::ConfigWidget : public SettingsPage
61 {
62     Q_OBJECT
63
64 public:
65     ConfigWidget(bool enabled, QWidget* parent = nullptr);
66
67     void save() override;
68     void load() override;
69     bool hasDefaults() const override;
70     void defaults() override;
71
72 private slots:
73     void widgetChanged();
74
75 private:
76     QCheckBox* enabledBox;
77     bool enabled;
78 };
79
80 #endif