1 /***************************************************************************
2 * Copyright (C) 2005-2010 by the Quassel Project *
3 * devel@quassel-irc.org *
5 * This contains code from KStatusNotifierItem, part of the KDE libs *
6 * Copyright (C) 2009 Marco Martin <notmart@gmail.com> *
8 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) version 3. *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the *
20 * Free Software Foundation, Inc., *
21 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
22 ***************************************************************************/
24 #ifndef STATUSNOTIFIERITEM_H_
25 #define STATUSNOTIFIERITEM_H_
29 #include "notificationsclient.h"
30 #include "systemtray.h"
31 #include "statusnotifierwatcher.h"
33 #ifdef QT_NO_SYSTEMTRAYICON
34 # define StatusNotifierItemParent SystemTray
36 # define StatusNotifierItemParent LegacySystemTray
37 # include "legacysystemtray.h"
40 class StatusNotifierItemDBus;
42 class StatusNotifierItem : public StatusNotifierItemParent {
46 explicit StatusNotifierItem(QWidget *parent);
47 virtual ~StatusNotifierItem();
49 virtual bool isSystemTrayAvailable() const;
50 virtual bool isVisible() const;
53 virtual void setState(State state);
54 virtual void setVisible(bool visible);
55 virtual void showMessage(const QString &title, const QString &message, MessageIcon icon = Information, int msTimeout = 10000, uint notificationId = 0);
56 virtual void closeMessage(uint notificationId);
60 virtual void setMode(Mode mode);
62 QString title() const;
63 QString iconName() const;
64 QString attentionIconName() const;
65 QString toolTipIconName() const;
67 virtual bool eventFilter(QObject *watched, QEvent *event);
70 void activated(const QPoint &pos);
71 void serviceChange(const QString& name, const QString& oldOwner, const QString& newOwner);
73 void notificationClosed(uint id, uint reason);
74 void notificationInvoked(uint id, const QString &action);
77 void registerToDaemon();
79 static const int _protocolVersion;
80 StatusNotifierItemDBus *_statusNotifierItemDBus;
82 org::kde::StatusNotifierWatcher *_statusNotifierWatcher;
83 org::freedesktop::Notifications *_notificationsClient;
84 bool _notificationsClientSupportsMarkup;
85 bool _notificationsClientSupportsActions;
86 quint32 _lastNotificationsDBusId;
87 QHash<uint, uint> _notificationsIdMap; ///< Maps our own notification ID to the D-Bus one
89 friend class StatusNotifierItemDBus;
92 #endif /* HAVE_DBUS */
93 #endif /* STATUSNOTIFIERITEM_H_ */