Fix ALL the license headers!
[quassel.git] / src / qtui / legacysystemtray.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2012 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 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
36 class LegacySystemTray : public SystemTray
37 {
38     Q_OBJECT
39
40 public:
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
49 public 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
55 protected slots:
56
57 protected:
58     virtual void setMode(Mode mode);
59
60 private slots:
61     void on_blinkTimeout();
62     void on_activated(QSystemTrayIcon::ActivationReason);
63     void on_messageClicked();
64
65     void syncLegacyIcon();
66
67 private:
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
82 bool 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_ */