0c06b70d641087845f939ccb7900a5a494cd3d35
[quassel.git] / src / qtui / desktopnotificationbackend.h
1 /***************************************************************************
2 *   Copyright (C) 2005-08 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 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19 ***************************************************************************/
20
21 #ifndef DESKTOPNOTIFICATIONBACKEND_H_
22 #define DESKTOPNOTIFICATIONBACKEND_H_
23
24 #include "abstractnotificationbackend.h"
25
26 #include "settingspage.h"
27
28 #include "desktopnotificationinterface.h"
29
30 //! Implements the freedesktop.org notifications specification (via D-Bus)
31 /**
32  *  cf. http://www.galago-project.org/specs/notification/
33  *
34  *  This class will only be available if -DHAVE_DBUS is enabled
35  */
36 class DesktopNotificationBackend : public AbstractNotificationBackend {
37   Q_OBJECT
38
39 public:
40   DesktopNotificationBackend(QObject *parent = 0);
41   ~DesktopNotificationBackend();
42
43   void notify(const Notification &);
44   void close(uint notificationId);
45   SettingsPage *configWidget() const;
46
47 private slots:
48   void desktopNotificationClosed(uint id, uint reason);
49   void desktopNotificationInvoked(uint id, const QString &action);
50
51   void enabledChanged(const QVariant &);
52   void xHintChanged(const QVariant &);
53   void yHintChanged(const QVariant &);
54
55 private:
56   org::freedesktop::Notifications *_dbusInterface;
57   quint32 _dbusNotificationId;
58
59   bool _enabled;
60   int _xHint, _yHint;
61 };
62
63 #endif