X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsystraynotificationbackend.cpp;h=6b67b2028a9b0c56d6804b46344020ec238ca173;hp=3d9d74bef9c99b83f7edd9ac127d94cef0adb4fd;hb=5941801a1a5a61dc6d3e409ba33ab413adc9005f;hpb=09cc362cca645192f04aaac58953e1f1bace6d59 diff --git a/src/qtui/systraynotificationbackend.cpp b/src/qtui/systraynotificationbackend.cpp index 3d9d74be..6b67b202 100644 --- a/src/qtui/systraynotificationbackend.cpp +++ b/src/qtui/systraynotificationbackend.cpp @@ -31,7 +31,7 @@ #include "systemtray.h" SystrayNotificationBackend::SystrayNotificationBackend(QObject *parent) - : AbstractNotificationBackend(parent) + : AbstractNotificationBackend(parent), _activeId(0) { NotificationSettings notificationSettings; _showBubble = notificationSettings.value("Systray/ShowBubble", true).toBool(); @@ -40,7 +40,7 @@ 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())); } void SystrayNotificationBackend::notify(const Notification ¬ification) { @@ -76,6 +76,7 @@ void SystrayNotificationBackend::showBubble() { // for now, we just show the last message 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()->systemTray()->showMessage(title, message); @@ -88,6 +89,10 @@ void SystrayNotificationBackend::closeBubble() { #endif } +void SystrayNotificationBackend::notificationActivated() { + emit activated(_activeId); +} + void SystrayNotificationBackend::showBubbleChanged(const QVariant &v) { _showBubble = v.toBool(); }