X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsystraynotificationbackend.cpp;h=e82af91a1b6e8f887b3f97c9ff275f86e5d72202;hp=e9929805704c6ef49196d3d4fb5b55b7858deb15;hb=9fb25d34cfc4dee02159b112c72e018c6e26e63f;hpb=7d252c0e8aa2728d9a57130c7aae8923c5321542 diff --git a/src/qtui/systraynotificationbackend.cpp b/src/qtui/systraynotificationbackend.cpp index e9929805..e82af91a 100644 --- a/src/qtui/systraynotificationbackend.cpp +++ b/src/qtui/systraynotificationbackend.cpp @@ -1,5 +1,5 @@ /*************************************************************************** -* Copyright (C) 2005-08 by the Quassel Project * +* Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -28,9 +28,10 @@ #include "mainwin.h" #include "networkmodel.h" #include "qtui.h" +#include "systemtray.h" SystrayNotificationBackend::SystrayNotificationBackend(QObject *parent) - : AbstractNotificationBackend(parent) + : AbstractNotificationBackend(parent), _activeId(0) { NotificationSettings notificationSettings; _showBubble = notificationSettings.value("Systray/ShowBubble", true).toBool(); @@ -39,11 +40,15 @@ SystrayNotificationBackend::SystrayNotificationBackend(QObject *parent) notificationSettings.notify("Systray/ShowBubble", this, SLOT(showBubbleChanged(const QVariant &))); notificationSettings.notify("Systray/Animate", this, SLOT(animateChanged(const QVariant &))); - _iconActive = false; - connect(&_animationTimer, SIGNAL(timeout()), SLOT(blink())); + connect(QtUi::mainWindow()->systemTray(), SIGNAL(messageClicked()), SLOT(notificationActivated())); + connect(QtUi::mainWindow()->systemTray(), SIGNAL(activated(QSystemTrayIcon::ActivationReason)), + SLOT(notificationActivated(QSystemTrayIcon::ActivationReason))); } void SystrayNotificationBackend::notify(const Notification ¬ification) { + if(notification.type != Highlight && notification.type != PrivMsg) + return; + /* fancy stuff to be implemented later: show notifications in order _notifications.append(notification); if(_showBubble && _notifications.count() == 1) { @@ -52,12 +57,11 @@ void SystrayNotificationBackend::notify(const Notification ¬ification) { */ _notifications.clear(); _notifications.append(notification); - if(_showBubble) { + if(_showBubble) showBubble(); - } - if(_animate) { - startAnimation(); - } + + if(_animate) + QtUi::mainWindow()->systemTray()->setAlert(true); } void SystrayNotificationBackend::close(uint notificationId) { @@ -68,45 +72,45 @@ void SystrayNotificationBackend::close(uint notificationId) { if(_notifications.isEmpty()) { */ _notifications.clear(); + _activeId = 0; closeBubble(); - stopAnimation(); + 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; + if(_notifications.isEmpty()) + return; Notification n = _notifications.takeLast(); + _activeId = n.notificationId; QString title = Client::networkModel()->networkName(n.bufferId) + " - " + Client::networkModel()->bufferName(n.bufferId); QString message = QString("<%1> %2").arg(n.sender, n.message); - QtUi::mainWindow()->systemTrayIcon()->showMessage(title, message); + QtUi::mainWindow()->systemTray()->showMessage(title, message); } void SystrayNotificationBackend::closeBubble() { // there really seems to be no sane way to close the bubble... :( #ifdef Q_WS_X11 - QtUi::mainWindow()->systemTrayIcon()->showMessage("", "", QSystemTrayIcon::NoIcon, 1); + QtUi::mainWindow()->systemTray()->showMessage("", "", QSystemTrayIcon::NoIcon, 1); #endif } -void SystrayNotificationBackend::showBubbleChanged(const QVariant &v) { - _showBubble = v.toBool(); -} - -void SystrayNotificationBackend::startAnimation() { - if(!_animationTimer.isActive()) - _animationTimer.start(500); +void SystrayNotificationBackend::notificationActivated() { + if(QtUi::mainWindow()->systemTray()->isAlerted()) { + QtUi::mainWindow()->systemTray()->setInhibitActivation(); + emit activated(_activeId); + } } -void SystrayNotificationBackend::stopAnimation() { - _animationTimer.stop(); - QtUi::mainWindow()->systemTrayIcon()->setIcon(Icon("quassel")); - _iconActive = false; +void SystrayNotificationBackend::notificationActivated(QSystemTrayIcon::ActivationReason reason) { + if(reason == QSystemTrayIcon::Trigger) { + notificationActivated(); + } } -void SystrayNotificationBackend::blink() { - QtUi::mainWindow()->systemTrayIcon()->setIcon(_iconActive ? Icon("quassel") : Icon("quassel_newmessage")); - _iconActive = !_iconActive; +void SystrayNotificationBackend::showBubbleChanged(const QVariant &v) { + _showBubble = v.toBool(); } void SystrayNotificationBackend::animateChanged(const QVariant &v) {