X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fknotificationbackend.cpp;h=d3939dfba8e8f6a19c5a786950756e8e1e5a7ae4;hp=4e1379636ad4acd84d60c47aa9761f2c844ed090;hb=e7d1bc1fa02e1233f140e4b04d99ab8f4685bce5;hpb=fcf721c85ec4f804d11ac1553592de860f5a3f1d diff --git a/src/qtui/knotificationbackend.cpp b/src/qtui/knotificationbackend.cpp index 4e137963..d3939dfb 100644 --- a/src/qtui/knotificationbackend.cpp +++ b/src/qtui/knotificationbackend.cpp @@ -1,28 +1,27 @@ /*************************************************************************** -* Copyright (C) 2005-09 by the Quassel Project * -* devel@quassel-irc.org * -* * -* This program is free software; you can redistribute it and/or modify * -* it under the terms of the GNU General Public License as published by * -* the Free Software Foundation; either version 2 of the License, or * -* (at your option) version 3. * -* * -* This program is distributed in the hope that it will be useful, * -* but WITHOUT ANY WARRANTY; without even the implied warranty of * -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -* GNU General Public License for more details. * -* * -* You should have received a copy of the GNU General Public License * -* along with this program; if not, write to the * -* Free Software Foundation, Inc., * -* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * -***************************************************************************/ - -#include + * Copyright (C) 2005-2010 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ #include #include #include +#include #include "knotificationbackend.h" @@ -31,14 +30,12 @@ #include "iconloader.h" #include "networkmodel.h" #include "qtui.h" -#include "systemtray.h" KNotificationBackend::KNotificationBackend(QObject *parent) -: AbstractNotificationBackend(parent), - _lastNotificationId(0) +: AbstractNotificationBackend(parent) { - connect(QtUi::mainWindow()->systemTray(), SIGNAL(activated(QSystemTrayIcon::ActivationReason)), - SLOT(notificationActivated(QSystemTrayIcon::ActivationReason))); + connect(QtUi::mainWindow()->systemTray(), SIGNAL(activated(SystemTray::ActivationReason)), + SLOT(notificationActivated(SystemTray::ActivationReason))); } void KNotificationBackend::notify(const Notification &n) { @@ -60,61 +57,51 @@ void KNotificationBackend::notify(const Notification &n) { |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; + notification->setProperty("notificationId", n.notificationId); + + _notifications.append(qMakePair(n.notificationId, QPointer(notification))); 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 + 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; } - if(_lastNotificationId == notificationId) - _lastNotificationId = 0; } void KNotificationBackend::close(uint notificationId) { removeNotificationById(notificationId); - if(!_notificationIds.count()) + if(!_notifications.count()) QtUi::mainWindow()->systemTray()->setAlert(false); } void KNotificationBackend::notificationActivated() { uint id = 0; KNotification *n = qobject_cast(sender()); - if(n && _notificationIds.contains(n)) - id = _notificationIds.value(n); + if(n) + id = n->property("notificationId").toUInt(); notificationActivated(id); } -void KNotificationBackend::notificationActivated(QSystemTrayIcon::ActivationReason reason) { - if(reason == QSystemTrayIcon::Trigger && _lastNotificationId > 0) { - notificationActivated(_lastNotificationId); // most recent one +void KNotificationBackend::notificationActivated(SystemTray::ActivationReason reason) { + if(reason == SystemTray::Trigger && _notifications.count()) { + notificationActivated(_notifications.first().first); // oldest 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 {