X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fknotificationbackend.cpp;h=4e1379636ad4acd84d60c47aa9761f2c844ed090;hp=076ba2d3e4a429e96c0c58ed5aace632631ed976;hb=fcf721c85ec4f804d11ac1553592de860f5a3f1d;hpb=387dfc925a35952daadf901c2fb31f3a3f8487c1 diff --git a/src/qtui/knotificationbackend.cpp b/src/qtui/knotificationbackend.cpp index 076ba2d3..4e137963 100644 --- a/src/qtui/knotificationbackend.cpp +++ b/src/qtui/knotificationbackend.cpp @@ -33,7 +33,10 @@ #include "qtui.h" #include "systemtray.h" -KNotificationBackend::KNotificationBackend(QObject *parent) : AbstractNotificationBackend(parent) { +KNotificationBackend::KNotificationBackend(QObject *parent) +: AbstractNotificationBackend(parent), + _lastNotificationId(0) +{ connect(QtUi::mainWindow()->systemTray(), SIGNAL(activated(QSystemTrayIcon::ActivationReason)), SLOT(notificationActivated(QSystemTrayIcon::ActivationReason))); } @@ -59,14 +62,27 @@ void KNotificationBackend::notify(const Notification &n) { connect(notification, SIGNAL(activated(uint)), SLOT(notificationActivated())); connect(notification, SIGNAL(closed()), SLOT(notificationClosed())); notification->setActions(QStringList("View")); - _notificationIds[notification] = n.notificationId; + _notificationIds[notification] = _lastNotificationId = n.notificationId; QtUi::mainWindow()->systemTray()->setAlert(true); } +void KNotificationBackend::removeNotificationById(uint notificationId) { + QHash::iterator i = _notificationIds.begin(); + while(i != _notificationIds.end()) { + if(i.value() == notificationId) + i = _notificationIds.erase(i); + else + ++i; + } + if(_lastNotificationId == notificationId) + _lastNotificationId = 0; +} + void KNotificationBackend::close(uint notificationId) { - Q_UNUSED(notificationId); - QtUi::mainWindow()->systemTray()->setAlert(false); + removeNotificationById(notificationId); + if(!_notificationIds.count()) + QtUi::mainWindow()->systemTray()->setAlert(false); } void KNotificationBackend::notificationActivated() { @@ -79,19 +95,13 @@ void KNotificationBackend::notificationActivated() { } void KNotificationBackend::notificationActivated(QSystemTrayIcon::ActivationReason reason) { - if(reason == QSystemTrayIcon::Trigger && _notificationIds.count() > 0) { - notificationActivated(_notificationIds.values().at(0)); // we choose a random one for now + if(reason == QSystemTrayIcon::Trigger && _lastNotificationId > 0) { + notificationActivated(_lastNotificationId); // most recent one } } void KNotificationBackend::notificationActivated(uint notificationId) { - QHash::iterator i = _notificationIds.begin(); - while(i != _notificationIds.end()) { - if(i.value() == notificationId) - i = _notificationIds.erase(i); - else - ++i; - } + removeNotificationById(notificationId); QtUi::mainWindow()->systemTray()->setInhibitActivation(); emit activated(notificationId); @@ -102,9 +112,9 @@ void KNotificationBackend::notificationActivated(uint notificationId) { } void KNotificationBackend::notificationClosed() { - KNotification *n = qobject_cast(sender()); - if(n && _notificationIds.contains(n)) - _notificationIds.remove(n); + //KNotification *n = qobject_cast(sender()); + //if(n && _notificationIds.contains(n)) + // _notificationIds.remove(n); } SettingsPage *KNotificationBackend::createConfigWidget() const {