X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fknotificationbackend.cpp;h=4e1379636ad4acd84d60c47aa9761f2c844ed090;hp=64bdfdc30aa867678ea7cbf836d3572b52bf7161;hb=fcf721c85ec4f804d11ac1553592de860f5a3f1d;hpb=8118229704229c33e151b3c707c8beaa0c077a86 diff --git a/src/qtui/knotificationbackend.cpp b/src/qtui/knotificationbackend.cpp index 64bdfdc3..4e137963 100644 --- a/src/qtui/knotificationbackend.cpp +++ b/src/qtui/knotificationbackend.cpp @@ -22,6 +22,7 @@ #include #include +#include #include "knotificationbackend.h" @@ -32,26 +33,88 @@ #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))); } void KNotificationBackend::notify(const Notification &n) { - //QString title = Client::networkModel()->networkName(n.bufferId) + " - " + Client::networkModel()->bufferName(n.bufferId); - QString message = QString("<%1> %2").arg(n.sender, 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())); + QString type; + switch(n.type) { + case Highlight: + type = "Highlight"; break; + case HighlightFocused: + type = "HighlightFocused"; break; + case PrivMsg: + type = "PrivMsg"; break; + case PrivMsgFocused: + type = "PrivMsgFocused"; break; + } + + QString message = QString("<%1> %2").arg(n.sender, Qt::escape(n.message)); + KNotification *notification = KNotification::event(type, message, DesktopIcon("dialog-information"), QtUi::mainWindow(), + KNotification::RaiseWidgetOnActivation + |KNotification::CloseWhenWidgetActivated + |KNotification::CloseOnTimeout); + connect(notification, SIGNAL(activated(uint)), SLOT(notificationActivated())); + connect(notification, SIGNAL(closed()), SLOT(notificationClosed())); + notification->setActions(QStringList("View")); + _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() { - emit activated(); + uint id = 0; + KNotification *n = qobject_cast(sender()); + if(n && _notificationIds.contains(n)) + id = _notificationIds.value(n); + + notificationActivated(id); +} + +void KNotificationBackend::notificationActivated(QSystemTrayIcon::ActivationReason reason) { + if(reason == QSystemTrayIcon::Trigger && _lastNotificationId > 0) { + notificationActivated(_lastNotificationId); // most recent one + } +} + +void KNotificationBackend::notificationActivated(uint notificationId) { + removeNotificationById(notificationId); + + QtUi::mainWindow()->systemTray()->setInhibitActivation(); + emit activated(notificationId); + + if(!_notificationIds.count()) + QtUi::mainWindow()->systemTray()->setAlert(false); + +} + +void KNotificationBackend::notificationClosed() { + //KNotification *n = qobject_cast(sender()); + //if(n && _notificationIds.contains(n)) + // _notificationIds.remove(n); } SettingsPage *KNotificationBackend::createConfigWidget() const {