1/***************************************************************************
2 * Copyright (C) 2005-2014 by the Quassel Project *
3 * devel@quassel-irc.org *
4 * *
5 * This file is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU Library General Public License (LGPL) *
7 * as published by the Free Software Foundation; either version 2 of the *
8 * License, or (at your option) any later version. *
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 LEGACYSYSTEMTRAY_H_
22#define LEGACYSYSTEMTRAY_H_
23
24#ifndef QT_NO_SYSTEMTRAYICON
25
26#ifdef HAVE_KDE
27# include <KSystemTrayIcon>
28#else
29# include <QSystemTrayIcon>
30#endif
31
32#include <QTimer>
33
34#include "systemtray.h"
35
36class LegacySystemTray : public SystemTray
37{
38 Q_OBJECT
39
40public:
41 explicit LegacySystemTray(QWidget *parent);
42 virtual ~LegacySystemTray() {}
43 virtual void init();
44
45 virtual bool isVisible() const;
46 virtual inline bool isSystemTrayAvailable() const;
47 virtual Icon stateIcon() const; // overriden to care about blinkState
48
49public slots:
50 virtual void setState(State state);
51 virtual void setVisible(bool visible = true);
52 virtual void showMessage(const QString &title, const QString &message, MessageIcon icon = Information, int msTimeout = 10000, uint notificationId = 0);
53 virtual void closeMessage(uint notificationId);
54
55protected slots:
56
57protected:
58 virtual void setMode(Mode mode);
59
60private slots:
61 void on_blinkTimeout();
62 void on_activated(QSystemTrayIcon::ActivationReason);
63 void on_messageClicked();
64
65 void syncLegacyIcon();
66
67private:
68 QTimer _blinkTimer;
69 bool _blinkState;
70 uint _lastMessageId;
71
72#ifdef HAVE_KDE
73 KSystemTrayIcon *_trayIcon;
74#else
75 QSystemTrayIcon *_trayIcon;
76#endif
77};
78
79
80// inlines
81
82bool LegacySystemTray::isSystemTrayAvailable() const
83{
84 return mode() == Legacy ? QSystemTrayIcon::isSystemTrayAvailable()
85 : SystemTray::isSystemTrayAvailable();
86}
87
88
89#endif /* QT_NO_SYSTEMTRAYICON */
90
91#endif /* LEGACYSYSTEMTRAY_H_ */
92