common: Make SyncableObject non-copyable
[quassel.git] / src / qtui / osxnotificationbackend.h
1 /***************************************************************************
2  *   Copyright (C) 2005-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 OSXNOTIFICATIONBACKEND_H_
22 #define OSXNOTIFICATIONBACKEND_H_
23
24 #include "abstractnotificationbackend.h"
25 #include "settingspage.h"
26
27 class OSXNotificationBackend : public AbstractNotificationBackend
28 {
29     Q_OBJECT
30
31 public:
32     OSXNotificationBackend(QObject* parent = 0);
33
34     void notify(const Notification&);
35     void close(uint notificationId);
36     virtual SettingsPage* createConfigWidget() const;
37
38 private slots:
39     void enabledChanged(const QVariant& value);
40
41 private:
42     class ConfigWidget;
43
44     bool _enabled;
45 };
46
47 class OSXNotificationBackend::ConfigWidget : public SettingsPage
48 {
49     Q_OBJECT
50
51 public:
52     ConfigWidget(QWidget* parent = 0);
53     void save();
54     void load();
55     bool hasDefaults() const;
56     void defaults();
57
58 private slots:
59     void widgetChanged();
60
61 private:
62     QCheckBox* _enabledBox;
63     bool _enabled;
64 };
65
66 #endif  // OSXNOTIFICATIONBACKEND_H_