X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fknotificationbackend.cpp;h=8cc58a9a0a0c3ab5bac69b9b8d03efa200f68992;hp=3596ae05ffeb5da4cfb3c7e46d9884b51eb36296;hb=6e85a37d1b7d3501f0fd7cc94fd0fcd4ba0c6cc4;hpb=d4a670812fa741525591281093ee7167db9fd267 diff --git a/src/qtui/knotificationbackend.cpp b/src/qtui/knotificationbackend.cpp index 3596ae05..8cc58a9a 100644 --- a/src/qtui/knotificationbackend.cpp +++ b/src/qtui/knotificationbackend.cpp @@ -41,7 +41,11 @@ void KNotificationBackend::notify(const Notification &n) { QString message = QString("<%1> %2").arg(n.sender, Qt::escape(n.message)); KNotification *notification = KNotification::event("Highlight", message, DesktopIcon("dialog-information"), QtUi::mainWindow(), KNotification::Persistent|KNotification::RaiseWidgetOnActivation|KNotification::CloseWhenWidgetActivated); - connect(notification, SIGNAL(activated()), SLOT(notificationActivated())); + connect(notification, SIGNAL(activated(uint)), SLOT(notificationActivated())); + connect(notification, SIGNAL(closed()), SLOT(notificationClosed())); + notification->setActions(QStringList("View")); + _notificationIds[notification] = n.notificationId; + QtUi::mainWindow()->systemTray()->setAlert(true); } @@ -51,7 +55,18 @@ void KNotificationBackend::close(uint notificationId) { } void KNotificationBackend::notificationActivated() { - emit activated(); + uint id = 0; + KNotification *n = qobject_cast(sender()); + if(n && _notificationIds.contains(n)) + id = _notificationIds.value(n); + + emit activated(id); +} + +void KNotificationBackend::notificationClosed() { + KNotification *n = qobject_cast(sender()); + if(n && _notificationIds.contains(n)) + _notificationIds.remove(n); } SettingsPage *KNotificationBackend::createConfigWidget() const {