X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsystraynotificationbackend.cpp;h=1c97d4f5df4c2cea6a30d865d005270bc160ba36;hp=6b67b2028a9b0c56d6804b46344020ec238ca173;hb=d76bb125c8dd275095409edd3426700a98d89f3a;hpb=5941801a1a5a61dc6d3e409ba33ab413adc9005f diff --git a/src/qtui/systraynotificationbackend.cpp b/src/qtui/systraynotificationbackend.cpp index 6b67b202..1c97d4f5 100644 --- a/src/qtui/systraynotificationbackend.cpp +++ b/src/qtui/systraynotificationbackend.cpp @@ -18,6 +18,8 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ +#ifndef QT_NO_SYSTEMTRAYICON + #include "systraynotificationbackend.h" #include @@ -31,7 +33,7 @@ #include "systemtray.h" SystrayNotificationBackend::SystrayNotificationBackend(QObject *parent) - : AbstractNotificationBackend(parent), _activeId(0) + : AbstractNotificationBackend(parent) { NotificationSettings notificationSettings; _showBubble = notificationSettings.value("Systray/ShowBubble", true).toBool(); @@ -41,16 +43,14 @@ SystrayNotificationBackend::SystrayNotificationBackend(QObject *parent) notificationSettings.notify("Systray/Animate", this, SLOT(animateChanged(const QVariant &))); connect(QtUi::mainWindow()->systemTray(), SIGNAL(messageClicked()), SLOT(notificationActivated())); + connect(QtUi::mainWindow()->systemTray(), SIGNAL(activated(QSystemTrayIcon::ActivationReason)), + SLOT(notificationActivated(QSystemTrayIcon::ActivationReason))); } void SystrayNotificationBackend::notify(const Notification ¬ification) { - /* fancy stuff to be implemented later: show notifications in order - _notifications.append(notification); - if(_showBubble && _notifications.count() == 1) { - showBubble(); - } - */ - _notifications.clear(); + if(notification.type != Highlight && notification.type != PrivMsg) + return; + _notifications.append(notification); if(_showBubble) showBubble(); @@ -60,23 +60,26 @@ void SystrayNotificationBackend::notify(const Notification ¬ification) { } void SystrayNotificationBackend::close(uint notificationId) { - Q_UNUSED(notificationId); - /* fancy stuff to be implemented later - int idx = _notifications.indexOf(notificationId); + QList::iterator i = _notifications.begin(); + while(i != _notifications.end()) { + if(i->notificationId == notificationId) + i = _notifications.erase(i); + else + ++i; + } - if(_notifications.isEmpty()) { - */ - _notifications.clear(); closeBubble(); - QtUi::mainWindow()->systemTray()->setAlert(false); + + if(!_notifications.count()) + QtUi::mainWindow()->systemTray()->setAlert(false); } void SystrayNotificationBackend::showBubble() { // fancy stuff later: show messages in order // for now, we just show the last message - if(_notifications.isEmpty()) return; - Notification n = _notifications.takeLast(); - _activeId = n.notificationId; + if(_notifications.isEmpty()) + return; + Notification n = _notifications.last(); 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); @@ -90,7 +93,17 @@ void SystrayNotificationBackend::closeBubble() { } void SystrayNotificationBackend::notificationActivated() { - emit activated(_activeId); + if(QtUi::mainWindow()->systemTray()->isAlerted()) { + QtUi::mainWindow()->systemTray()->setInhibitActivation(); + uint id = _notifications.count()? _notifications.last().notificationId : 0; + emit activated(id); + } +} + +void SystrayNotificationBackend::notificationActivated(QSystemTrayIcon::ActivationReason reason) { + if(reason == QSystemTrayIcon::Trigger) { + notificationActivated(); + } } void SystrayNotificationBackend::showBubbleChanged(const QVariant &v) { @@ -152,3 +165,5 @@ void SystrayNotificationBackend::ConfigWidget::save() { s.setValue("Systray/ShowBubble", _showBubbleBox->isChecked()); load(); } + +#endif /* QT_NO_SYSTEMTRAYICON */