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