X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsystraynotificationbackend.cpp;h=3d9d74bef9c99b83f7edd9ac127d94cef0adb4fd;hp=1c8b572554d38916cb1f6bd01e2fedf7ee1bb4a9;hb=dcac65fc4beeb1167de8ebec5cc54608fc314fd3;hpb=5c78a50fa720e5f82fcaa03c0176feab71d74c8e diff --git a/src/qtui/systraynotificationbackend.cpp b/src/qtui/systraynotificationbackend.cpp index 1c8b5725..3d9d74be 100644 --- a/src/qtui/systraynotificationbackend.cpp +++ b/src/qtui/systraynotificationbackend.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 * @@ -28,8 +28,11 @@ #include "mainwin.h" #include "networkmodel.h" #include "qtui.h" +#include "systemtray.h" -SystrayNotificationBackend::SystrayNotificationBackend(QObject *parent) : AbstractNotificationBackend(parent) { +SystrayNotificationBackend::SystrayNotificationBackend(QObject *parent) + : AbstractNotificationBackend(parent) +{ NotificationSettings notificationSettings; _showBubble = notificationSettings.value("Systray/ShowBubble", true).toBool(); _animate = notificationSettings.value("Systray/Animate", true).toBool(); @@ -37,13 +40,7 @@ SystrayNotificationBackend::SystrayNotificationBackend(QObject *parent) : Abstra notificationSettings.notify("Systray/ShowBubble", this, SLOT(showBubbleChanged(const QVariant &))); notificationSettings.notify("Systray/Animate", this, SLOT(animateChanged(const QVariant &))); - _configWidget = new ConfigWidget(); - _iconActive = false; - connect(&_animationTimer, SIGNAL(timeout()), SLOT(blink())); -} - -SystrayNotificationBackend::~SystrayNotificationBackend() { - delete _configWidget; + connect(QtUi::mainWindow()->systemTray(), SIGNAL(messageClicked()), this, SIGNAL(activated())); } void SystrayNotificationBackend::notify(const Notification ¬ification) { @@ -55,12 +52,11 @@ void SystrayNotificationBackend::notify(const Notification ¬ification) { */ _notifications.clear(); _notifications.append(notification); - if(_showBubble) { + if(_showBubble) showBubble(); - } - if(_animate && _notifications.count() == 1) { - startAnimation(); - } + + if(_animate) + QtUi::mainWindow()->systemTray()->setAlert(true); } void SystrayNotificationBackend::close(uint notificationId) { @@ -72,7 +68,7 @@ void SystrayNotificationBackend::close(uint notificationId) { */ _notifications.clear(); closeBubble(); - stopAnimation(); + QtUi::mainWindow()->systemTray()->setAlert(false); } void SystrayNotificationBackend::showBubble() { @@ -82,40 +78,26 @@ void SystrayNotificationBackend::showBubble() { Notification n = _notifications.takeLast(); QString title = Client::networkModel()->networkName(n.bufferId) + " - " + Client::networkModel()->bufferName(n.bufferId); QString message = QString("<%1> %2").arg(n.sender, n.message); - QtUi::mainWindow()->systemTrayIcon()->showMessage(title, message); + QtUi::mainWindow()->systemTray()->showMessage(title, message); } void SystrayNotificationBackend::closeBubble() { - // there really seems to be no decent way to close the bubble... - QtUi::mainWindow()->systemTrayIcon()->showMessage("", "", QSystemTrayIcon::NoIcon, 1); + // there really seems to be no sane way to close the bubble... :( +#ifdef Q_WS_X11 + QtUi::mainWindow()->systemTray()->showMessage("", "", QSystemTrayIcon::NoIcon, 1); +#endif } void SystrayNotificationBackend::showBubbleChanged(const QVariant &v) { _showBubble = v.toBool(); } -void SystrayNotificationBackend::startAnimation() { - if(!_animationTimer.isActive()) - _animationTimer.start(500); -} - -void SystrayNotificationBackend::stopAnimation() { - _animationTimer.stop(); - QtUi::mainWindow()->systemTrayIcon()->setIcon(Icon("quassel")); - _iconActive = false; -} - -void SystrayNotificationBackend::blink() { - QtUi::mainWindow()->systemTrayIcon()->setIcon(_iconActive ? Icon("quassel") : Icon("quassel_newmessage")); - _iconActive = !_iconActive; -} - void SystrayNotificationBackend::animateChanged(const QVariant &v) { _animate = v.toBool(); } -SettingsPage *SystrayNotificationBackend::configWidget() const { - return _configWidget; +SettingsPage *SystrayNotificationBackend::createConfigWidget() const { + return new ConfigWidget(); } /***************************************************************************/