introduce fullscreen mode, fixes #803
[quassel.git] / src / qtui / legacysystemtray.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2010 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 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   Q_OBJECT
38
39 public:
40   explicit LegacySystemTray(QWidget *parent);
41   virtual ~LegacySystemTray() {}
42   virtual void init();
43
44   virtual bool isVisible() const;
45   virtual inline bool isSystemTrayAvailable() const;
46   virtual Icon stateIcon() const; // overriden to care about blinkState
47
48 public slots:
49   virtual void setState(State state);
50   virtual void setVisible(bool visible = true);
51   virtual void showMessage(const QString &title, const QString &message, MessageIcon icon = Information, int msTimeout = 10000, uint notificationId = 0);
52   virtual void closeMessage(uint notificationId);
53
54 protected slots:
55
56 protected:
57   virtual void setMode(Mode mode);
58
59 private slots:
60   void on_blinkTimeout();
61   void on_activated(QSystemTrayIcon::ActivationReason);
62   void on_messageClicked();
63
64   void syncLegacyIcon();
65
66 private:
67   QTimer _blinkTimer;
68   bool _blinkState;
69   uint _lastMessageId;
70
71 #ifdef HAVE_KDE
72   KSystemTrayIcon *_trayIcon;
73 #else
74   QSystemTrayIcon *_trayIcon;
75 #endif
76
77 };
78
79 // inlines
80
81 bool LegacySystemTray::isSystemTrayAvailable() const {
82   return mode() == Legacy ? QSystemTrayIcon::isSystemTrayAvailable()
83                           : SystemTray::isSystemTrayAvailable();
84 }
85
86 #endif /* QT_NO_SYSTEMTRAYICON */
87
88 #endif /* LEGACYSYSTEMTRAY_H_ */