Use new snore api and a bug fix
[quassel.git] / src / qtui / snorenotificationbackend.h
1 /***************************************************************************
2 *   Copyright (C) 2011-2013 by Patrick von Reth                           *
3 *   vonreth@kde.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 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19 ***************************************************************************/
20
21 #ifndef SNORENOTIFICATIONBACKEND_H_
22 #define SNORENOTIFICATIONBACKEND_H_
23
24 #include "abstractnotificationbackend.h"
25
26 #include "settingspage.h"
27
28 #include "ui_snorentificationconfigwidget.h"
29
30 #include <snore/core/snore.h>
31 #include <snore/core/notification/notification.h>
32
33 class SystrayNotificationBackend;
34
35 class SnoreNotificationBackend : public AbstractNotificationBackend {
36     Q_OBJECT
37 public:
38     SnoreNotificationBackend (QObject *parent);
39     ~SnoreNotificationBackend();
40
41     void notify(const Notification &);
42     void close(uint notificationId);
43
44     virtual SettingsPage *createConfigWidget()const;
45
46 signals:
47     void activated(uint notificationId = 0);
48
49 public slots:
50     void actionInvoked(Snore::Notification);
51 private slots:
52     void backendChanged(const QVariant &);
53     void timeoutChanged(const QVariant &);
54
55 private:
56     void setTraybackend();
57     bool setSnoreBackend(const QString &backend);
58
59     class ConfigWidget;
60     SystrayNotificationBackend * m_systrayBackend;
61     Snore::SnoreCore *m_snore;
62     QHash<uint, uint> m_notificationIds;
63     Snore::Icon m_icon;
64     Snore::Application m_application;
65     Snore::Alert m_alert;
66     int m_timeout;
67 };
68
69 class SnoreNotificationBackend::ConfigWidget : public SettingsPage {
70     Q_OBJECT
71
72 public:
73     ConfigWidget(Snore::SnoreCore *snore, QWidget *parent = 0);
74     void save();
75     void load();
76     bool hasDefaults() const;
77     void defaults();
78
79 private slots:
80     void backendChanged(const QString&);
81     void timeoutChanged(int);
82
83 private:
84     Ui::SnoreNotificationConfigWidget ui;
85     Snore::SnoreCore *m_snore;
86
87     //  QSpinBox *timeoutBox;
88
89     //  bool enabled;
90     //  int timeout;
91 };
92
93 #endif