X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsystraynotificationbackend.cpp;h=fa7b245780d9b97f39af86772b86aca7d396f3bc;hp=3d9d74bef9c99b83f7edd9ac127d94cef0adb4fd;hb=138bb708911ef06fa37859fa51bca5f47125ccdd;hpb=8118229704229c33e151b3c707c8beaa0c077a86 diff --git a/src/qtui/systraynotificationbackend.cpp b/src/qtui/systraynotificationbackend.cpp index 3d9d74be..fa7b2457 100644 --- a/src/qtui/systraynotificationbackend.cpp +++ b/src/qtui/systraynotificationbackend.cpp @@ -1,22 +1,22 @@ /*************************************************************************** -* Copyright (C) 2005-09 by the Quassel Project * -* devel@quassel-irc.org * -* * -* This program is free software; you can redistribute it and/or modify * -* it under the terms of the GNU General Public License as published by * -* the Free Software Foundation; either version 2 of the License, or * -* (at your option) version 3. * -* * -* This program is distributed in the hope that it will be useful, * -* but WITHOUT ANY WARRANTY; without even the implied warranty of * -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -* GNU General Public License for more details. * -* * -* You should have received a copy of the GNU General Public License * -* along with this program; if not, write to the * -* Free Software Foundation, Inc., * -* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * -***************************************************************************/ + * Copyright (C) 2005-2010 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ #include "systraynotificationbackend.h" @@ -31,7 +31,8 @@ #include "systemtray.h" SystrayNotificationBackend::SystrayNotificationBackend(QObject *parent) - : AbstractNotificationBackend(parent) + : AbstractNotificationBackend(parent), + _blockActivation(false) { NotificationSettings notificationSettings; _showBubble = notificationSettings.value("Systray/ShowBubble", true).toBool(); @@ -40,17 +41,17 @@ SystrayNotificationBackend::SystrayNotificationBackend(QObject *parent) notificationSettings.notify("Systray/ShowBubble", this, SLOT(showBubbleChanged(const QVariant &))); notificationSettings.notify("Systray/Animate", this, SLOT(animateChanged(const QVariant &))); - connect(QtUi::mainWindow()->systemTray(), SIGNAL(messageClicked()), this, SIGNAL(activated())); + connect(QtUi::mainWindow()->systemTray(), SIGNAL(messageClicked()), SLOT(notificationActivated())); + connect(QtUi::mainWindow()->systemTray(), SIGNAL(activated(SystemTray::ActivationReason)), + SLOT(notificationActivated(SystemTray::ActivationReason))); + + QApplication::instance()->installEventFilter(this); } void SystrayNotificationBackend::notify(const Notification ¬ification) { - /* fancy stuff to be implemented later: show notifications in order - _notifications.append(notification); - if(_showBubble && _notifications.count() == 1) { - showBubble(); - } - */ - _notifications.clear(); + if(notification.type != Highlight && notification.type != PrivMsg) + return; + _notifications.append(notification); if(_showBubble) showBubble(); @@ -60,22 +61,26 @@ void SystrayNotificationBackend::notify(const Notification ¬ification) { } void SystrayNotificationBackend::close(uint notificationId) { - Q_UNUSED(notificationId); - /* fancy stuff to be implemented later - int idx = _notifications.indexOf(notificationId); + QList::iterator i = _notifications.begin(); + while(i != _notifications.end()) { + if(i->notificationId == notificationId) + i = _notifications.erase(i); + else + ++i; + } - if(_notifications.isEmpty()) { - */ - _notifications.clear(); closeBubble(); - QtUi::mainWindow()->systemTray()->setAlert(false); + + if(!_notifications.count()) + QtUi::mainWindow()->systemTray()->setAlert(false); } void SystrayNotificationBackend::showBubble() { // fancy stuff later: show messages in order // for now, we just show the last message - if(_notifications.isEmpty()) return; - Notification n = _notifications.takeLast(); + if(_notifications.isEmpty()) + return; + Notification n = _notifications.last(); QString title = Client::networkModel()->networkName(n.bufferId) + " - " + Client::networkModel()->bufferName(n.bufferId); QString message = QString("<%1> %2").arg(n.sender, n.message); QtUi::mainWindow()->systemTray()->showMessage(title, message); @@ -84,10 +89,35 @@ void SystrayNotificationBackend::showBubble() { void SystrayNotificationBackend::closeBubble() { // there really seems to be no sane way to close the bubble... :( #ifdef Q_WS_X11 - QtUi::mainWindow()->systemTray()->showMessage("", "", QSystemTrayIcon::NoIcon, 1); + QtUi::mainWindow()->systemTray()->showMessage("", "", SystemTray::NoIcon, 1); #endif } +void SystrayNotificationBackend::notificationActivated() { + if(!_blockActivation) { + if(QtUi::mainWindow()->systemTray()->isAlerted()) { + _blockActivation = true; // prevent double activation because both tray icon and bubble might send a signal + uint id = _notifications.count()? _notifications.last().notificationId : 0; + emit activated(id); + } else + GraphicalUi::toggleMainWidget(); + } +} + +void SystrayNotificationBackend::notificationActivated(SystemTray::ActivationReason reason) { + if(reason == SystemTray::Trigger) { + notificationActivated(); + } +} + +// moving the mouse or releasing the button means that we're not dealing with a double activation +bool SystrayNotificationBackend::eventFilter(QObject *obj, QEvent *event) { + if(event->type() == QEvent::MouseMove || event->type() == QEvent::MouseButtonRelease) { + _blockActivation = false; + } + return AbstractNotificationBackend::eventFilter(obj, event); +} + void SystrayNotificationBackend::showBubbleChanged(const QVariant &v) { _showBubble = v.toBool(); }