Fix visibility issues with StatusNotifier
[quassel.git] / src / qtui / legacysystemtray.cpp
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 QT_NO_SYSTEMTRAYICON
22
23 #include "legacysystemtray.h"
24 #include "mainwin.h"
25 #include "qtui.h"
26
27 LegacySystemTray::LegacySystemTray(QWidget *parent)
28   : SystemTray(parent),
29   _blinkState(false),
30   _lastMessageId(0)
31 {
32 #ifndef HAVE_KDE
33   _trayIcon = new QSystemTrayIcon(associatedWidget());
34 #else
35   _trayIcon = new KSystemTrayIcon(associatedWidget());
36   // We don't want to trigger a minimize if a highlight is pending, so we brutally remove the internal connection for that
37   disconnect(_trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
38                  _trayIcon, SLOT(activateOrHide(QSystemTrayIcon::ActivationReason)));
39 #endif
40 #ifndef Q_WS_MAC
41   connect(_trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
42                      SLOT(on_activated(QSystemTrayIcon::ActivationReason)));
43 #endif
44   connect(_trayIcon, SIGNAL(messageClicked()),
45                      SLOT(on_messageClicked()));
46
47   _blinkTimer.setInterval(500);
48   _blinkTimer.setSingleShot(false);
49   connect(&_blinkTimer, SIGNAL(timeout()), SLOT(on_blinkTimeout()));
50
51   connect(this, SIGNAL(toolTipChanged(QString,QString)), SLOT(syncLegacyIcon()));
52 }
53
54 void LegacySystemTray::init() {
55   if(mode() == Invalid) // derived class hasn't set a mode itself
56     setMode(Legacy);
57
58   SystemTray::init();
59
60   _trayIcon->setContextMenu(trayMenu());
61 }
62
63 void LegacySystemTray::syncLegacyIcon() {
64   _trayIcon->setIcon(stateIcon());
65
66 #if defined Q_WS_MAC || defined Q_WS_WIN
67   QString tooltip = QString("%1").arg(toolTipTitle());
68   if(!toolTipSubTitle().isEmpty())
69     tooltip += QString("\n%1").arg(toolTipSubTitle());
70 #else
71   QString tooltip = QString("<b>%1</b>").arg(toolTipTitle());
72   if(!toolTipSubTitle().isEmpty())
73     tooltip += QString("<br>%1").arg(toolTipSubTitle());
74 #endif
75
76   _trayIcon->setToolTip(tooltip);
77 }
78
79 void LegacySystemTray::setVisible(bool visible) {
80   SystemTray::setVisible(visible);
81   if(mode() == Legacy) {
82     if(shouldBeVisible())
83       _trayIcon->show();
84     else
85       _trayIcon->hide();
86   }
87 }
88
89 bool LegacySystemTray::isVisible() const {
90   if(mode() == Legacy) {
91     return _trayIcon->isVisible();
92   }
93   return SystemTray::isVisible();
94 }
95
96 void LegacySystemTray::setMode(Mode mode_) {
97   SystemTray::setMode(mode_);
98
99   if(mode() == Legacy) {
100     syncLegacyIcon();
101     if(shouldBeVisible())
102       _trayIcon->show();
103     else
104       _trayIcon->hide();
105     if(state() == NeedsAttention)
106       _blinkTimer.start();
107   } else {
108     _trayIcon->hide();
109     _blinkTimer.stop();
110   }
111 }
112
113 void LegacySystemTray::setState(State state_) {
114   State oldstate = state();
115   SystemTray::setState(state_);
116   if(oldstate != state()) {
117     if(state() == NeedsAttention && mode() == Legacy && animationEnabled())
118       _blinkTimer.start();
119     else {
120       _blinkTimer.stop();
121       _blinkState = false;
122     }
123   }
124   if(mode() == Legacy)
125     _trayIcon->setIcon(stateIcon());
126 }
127
128 Icon LegacySystemTray::stateIcon() const {
129   if(mode() == Legacy && state() == NeedsAttention && !_blinkState)
130     return SystemTray::stateIcon(Active);
131   return SystemTray::stateIcon();
132 }
133
134 void LegacySystemTray::on_blinkTimeout() {
135   _blinkState = !_blinkState;
136   _trayIcon->setIcon(stateIcon());
137 }
138
139 void LegacySystemTray::on_activated(QSystemTrayIcon::ActivationReason reason) {
140   activate((SystemTray::ActivationReason)reason);
141 }
142
143 void LegacySystemTray::on_messageClicked() {
144   emit messageClicked(_lastMessageId);
145 }
146
147 void LegacySystemTray::showMessage(const QString &title, const QString &message, SystemTray::MessageIcon icon, int msTimeout, uint id) {
148   // fancy stuff later: show messages in order
149   // for now, we just show the last message
150   _lastMessageId = id;
151   _trayIcon->showMessage(title, message, (QSystemTrayIcon::MessageIcon)icon, msTimeout);
152 }
153
154 void LegacySystemTray::closeMessage(uint notificationId) {
155   Q_UNUSED(notificationId)
156
157   // there really seems to be no sane way to close the bubble... :(
158 #ifdef Q_WS_X11
159   showMessage("", "", NoIcon, 1);
160 #endif
161 }
162
163 #endif /* QT_NO_SYSTEMTRAYICON */