X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsystraynotificationbackend.cpp;h=82d9f96d68c16c007232487fd812cf2511b8f614;hp=fa7b245780d9b97f39af86772b86aca7d396f3bc;hb=a9cc264bc4ee3e51ede21b79276704d4043e3656;hpb=138bb708911ef06fa37859fa51bca5f47125ccdd diff --git a/src/qtui/systraynotificationbackend.cpp b/src/qtui/systraynotificationbackend.cpp index fa7b2457..82d9f96d 100644 --- a/src/qtui/systraynotificationbackend.cpp +++ b/src/qtui/systraynotificationbackend.cpp @@ -18,9 +18,12 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#include "systraynotificationbackend.h" +#include +#include +#include +#include -#include +#include "systraynotificationbackend.h" #include "client.h" #include "clientsettings.h" @@ -35,29 +38,33 @@ SystrayNotificationBackend::SystrayNotificationBackend(QObject *parent) _blockActivation(false) { NotificationSettings notificationSettings; - _showBubble = notificationSettings.value("Systray/ShowBubble", true).toBool(); - _animate = notificationSettings.value("Systray/Animate", true).toBool(); - - notificationSettings.notify("Systray/ShowBubble", this, SLOT(showBubbleChanged(const QVariant &))); - notificationSettings.notify("Systray/Animate", this, SLOT(animateChanged(const QVariant &))); + notificationSettings.initAndNotify("Systray/ShowBubble", this, SLOT(showBubbleChanged(QVariant)), true); + notificationSettings.initAndNotify("Systray/Animate", this, SLOT(animateChanged(QVariant)), true); - connect(QtUi::mainWindow()->systemTray(), SIGNAL(messageClicked()), SLOT(notificationActivated())); + connect(QtUi::mainWindow()->systemTray(), SIGNAL(messageClicked(uint)), SLOT(notificationActivated(uint))); connect(QtUi::mainWindow()->systemTray(), SIGNAL(activated(SystemTray::ActivationReason)), SLOT(notificationActivated(SystemTray::ActivationReason))); QApplication::instance()->installEventFilter(this); + + updateToolTip(); } -void SystrayNotificationBackend::notify(const Notification ¬ification) { - if(notification.type != Highlight && notification.type != PrivMsg) +void SystrayNotificationBackend::notify(const Notification &n) { + if(n.type != Highlight && n.type != PrivMsg) return; - _notifications.append(notification); - if(_showBubble) - showBubble(); + _notifications.append(n); + if(_showBubble) { + 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, SystemTray::Information, 10000, n.notificationId); + } if(_animate) QtUi::mainWindow()->systemTray()->setAlert(true); + + updateToolTip(); } void SystrayNotificationBackend::close(uint notificationId) { @@ -69,36 +76,21 @@ void SystrayNotificationBackend::close(uint notificationId) { ++i; } - closeBubble(); + QtUi::mainWindow()->systemTray()->closeMessage(notificationId); 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.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); -} -void SystrayNotificationBackend::closeBubble() { - // there really seems to be no sane way to close the bubble... :( -#ifdef Q_WS_X11 - QtUi::mainWindow()->systemTray()->showMessage("", "", SystemTray::NoIcon, 1); -#endif + updateToolTip(); } -void SystrayNotificationBackend::notificationActivated() { +void SystrayNotificationBackend::notificationActivated(uint notificationId) { if(!_blockActivation) { if(QtUi::mainWindow()->systemTray()->isAlerted()) { _blockActivation = true; // prevent double activation because both tray icon and bubble might send a signal - uint id = _notifications.count()? _notifications.last().notificationId : 0; - emit activated(id); + if(!notificationId) + notificationId = _notifications.count()? _notifications.last().notificationId : 0; + emit activated(notificationId); } else GraphicalUi::toggleMainWidget(); } @@ -106,7 +98,7 @@ void SystrayNotificationBackend::notificationActivated() { void SystrayNotificationBackend::notificationActivated(SystemTray::ActivationReason reason) { if(reason == SystemTray::Trigger) { - notificationActivated(); + notificationActivated(0); } } @@ -126,6 +118,11 @@ void SystrayNotificationBackend::animateChanged(const QVariant &v) { _animate = v.toBool(); } +void SystrayNotificationBackend::updateToolTip() { + QtUi::mainWindow()->systemTray()->setToolTip("Quassel IRC", + _notifications.count()? tr("%n pending highlights", "", _notifications.count()) : QString()); +} + SettingsPage *SystrayNotificationBackend::createConfigWidget() const { return new ConfigWidget(); }