X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fknotificationbackend.cpp;h=24974e0f6fd61d557e1009b6611590c003f5ad05;hp=baf0f1507e4dabd20ab4db2a523bd088b9bd0d2e;hb=b64a1e62e2168dc21e350fccc6c42b0d0d5e2a35;hpb=b324a124e384bd8c9f54d97c5b5d6a5cc50fd91b diff --git a/src/qtui/knotificationbackend.cpp b/src/qtui/knotificationbackend.cpp index baf0f150..24974e0f 100644 --- a/src/qtui/knotificationbackend.cpp +++ b/src/qtui/knotificationbackend.cpp @@ -1,5 +1,5 @@ /*************************************************************************** -* Copyright (C) 2005-08 by the Quassel Project * +* Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -22,6 +22,7 @@ #include #include +#include #include "knotificationbackend.h" @@ -30,25 +31,79 @@ #include "iconloader.h" #include "networkmodel.h" #include "qtui.h" +#include "systemtray.h" -KNotificationBackend::KNotificationBackend(QObject *parent) : AbstractNotificationBackend(parent) { - +KNotificationBackend::KNotificationBackend(QObject *parent) +: AbstractNotificationBackend(parent) +{ + 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())); + notification->setActions(QStringList("View")); + notification->setProperty("notificationId", n.notificationId); + + _notifications.append(qMakePair(n.notificationId, QPointer(notification))); + + QtUi::mainWindow()->systemTray()->setAlert(true); +} + +void KNotificationBackend::removeNotificationById(uint notificationId) { + QList > >::iterator i = _notifications.begin(); + while(i != _notifications.end()) { + if(i->first == notificationId) { + if(i->second) + i->second->close(); + i = _notifications.erase(i); + } else + ++i; + } } void KNotificationBackend::close(uint notificationId) { - Q_UNUSED(notificationId); + removeNotificationById(notificationId); + if(!_notifications.count()) + QtUi::mainWindow()->systemTray()->setAlert(false); } void KNotificationBackend::notificationActivated() { - emit activated(); + uint id = 0; + KNotification *n = qobject_cast(sender()); + if(n) + id = n->property("notificationId").toUInt(); + + notificationActivated(id); +} + +void KNotificationBackend::notificationActivated(QSystemTrayIcon::ActivationReason reason) { + if(reason == QSystemTrayIcon::Trigger && _notifications.count()) { + notificationActivated(_notifications.first().first); // oldest one + } +} + +void KNotificationBackend::notificationActivated(uint notificationId) { + QtUi::mainWindow()->systemTray()->setInhibitActivation(); + emit activated(notificationId); + } SettingsPage *KNotificationBackend::createConfigWidget() const {