X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsystraynotificationbackend.cpp;h=b6652962201c2e2cf0b5f23797f340790b8f9dde;hp=545c22dd9c062e8b466a972a390d6cf46dfec877;hb=c8467bd28cb62ffbc4d3f6c7b459ce75ef580238;hpb=9ea27e456f4163c37118f6dc34188809fc37d6d9 diff --git a/src/qtui/systraynotificationbackend.cpp b/src/qtui/systraynotificationbackend.cpp index 545c22dd..b6652962 100644 --- a/src/qtui/systraynotificationbackend.cpp +++ b/src/qtui/systraynotificationbackend.cpp @@ -31,7 +31,7 @@ #include "systemtray.h" SystrayNotificationBackend::SystrayNotificationBackend(QObject *parent) - : AbstractNotificationBackend(parent), _activeId(0) + : AbstractNotificationBackend(parent) { NotificationSettings notificationSettings; _showBubble = notificationSettings.value("Systray/ShowBubble", true).toBool(); @@ -41,19 +41,14 @@ SystrayNotificationBackend::SystrayNotificationBackend(QObject *parent) notificationSettings.notify("Systray/Animate", this, SLOT(animateChanged(const QVariant &))); 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) { - showBubble(); - } - */ - _notifications.clear(); _notifications.append(notification); if(_showBubble) showBubble(); @@ -63,23 +58,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(); - _activeId = n.notificationId; + 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); @@ -93,7 +91,17 @@ void SystrayNotificationBackend::closeBubble() { } void SystrayNotificationBackend::notificationActivated() { - emit activated(_activeId); + if(QtUi::mainWindow()->systemTray()->isAlerted()) { + QtUi::mainWindow()->systemTray()->setInhibitActivation(); + uint id = _notifications.count()? _notifications.last().notificationId : 0; + emit activated(id); + } +} + +void SystrayNotificationBackend::notificationActivated(QSystemTrayIcon::ActivationReason reason) { + if(reason == QSystemTrayIcon::Trigger) { + notificationActivated(); + } } void SystrayNotificationBackend::showBubbleChanged(const QVariant &v) {