X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Flegacysystemtray.cpp;h=40cd2ed8f756fd6567420f9f440896675263b074;hp=a3e706aa175c02ac4a4ba4d14d684cdf6b89a288;hb=c27d5bfbe80bfeb583a25404f4ccee4b70b010e0;hpb=04315f46a16fc3627218377071e008b6b9744992 diff --git a/src/qtui/legacysystemtray.cpp b/src/qtui/legacysystemtray.cpp index a3e706aa..40cd2ed8 100644 --- a/src/qtui/legacysystemtray.cpp +++ b/src/qtui/legacysystemtray.cpp @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2018 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 file is free software; you can redistribute it and/or modify * + * it under the terms of the GNU Library General Public License (LGPL) * + * as published by the Free Software Foundation; either version 2 of the * + * License, or (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -21,15 +21,15 @@ #ifndef QT_NO_SYSTEMTRAYICON #include "legacysystemtray.h" + +#include "icon.h" #include "mainwin.h" #include "qtui.h" LegacySystemTray::LegacySystemTray(QWidget *parent) - : SystemTray(parent), - _blinkState(false), - _lastMessageId(0) + : SystemTray(parent) { -#ifndef HAVE_KDE +#ifndef HAVE_KDE4 _trayIcon = new QSystemTrayIcon(associatedWidget()); #else _trayIcon = new KSystemTrayIcon(associatedWidget()); @@ -37,133 +37,86 @@ LegacySystemTray::LegacySystemTray(QWidget *parent) disconnect(_trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), _trayIcon, SLOT(activateOrHide(QSystemTrayIcon::ActivationReason))); #endif -#ifndef Q_WS_MAC +#ifndef Q_OS_MAC connect(_trayIcon, SIGNAL(activated(QSystemTrayIcon::ActivationReason)), - SLOT(on_activated(QSystemTrayIcon::ActivationReason))); + SLOT(onActivated(QSystemTrayIcon::ActivationReason))); #endif connect(_trayIcon, SIGNAL(messageClicked()), - SLOT(on_messageClicked())); - - _blinkTimer.setInterval(500); - _blinkTimer.setSingleShot(false); - connect(&_blinkTimer, SIGNAL(timeout()), SLOT(on_blinkTimeout())); - - connect(this, SIGNAL(toolTipChanged(QString, QString)), SLOT(syncLegacyIcon())); -} - - -void LegacySystemTray::init() -{ - if (mode() == Invalid) // derived class hasn't set a mode itself - setMode(Legacy); - - SystemTray::init(); + SLOT(onMessageClicked())); _trayIcon->setContextMenu(trayMenu()); -} + _trayIcon->setVisible(false); + setMode(Mode::Legacy); -void LegacySystemTray::syncLegacyIcon() -{ - _trayIcon->setIcon(stateIcon()); - -#if defined Q_WS_MAC || defined Q_WS_WIN - QString tooltip = QString("%1").arg(toolTipTitle()); - if (!toolTipSubTitle().isEmpty()) - tooltip += QString("\n%1").arg(toolTipSubTitle()); -#else - QString tooltip = QString("%1").arg(toolTipTitle()); - if (!toolTipSubTitle().isEmpty()) - tooltip += QString("
%1").arg(toolTipSubTitle()); -#endif + connect(this, SIGNAL(visibilityChanged(bool)), this, SLOT(onVisibilityChanged(bool))); + connect(this, SIGNAL(modeChanged(Mode)), this, SLOT(onModeChanged(Mode))); + connect(this, SIGNAL(toolTipChanged(QString, QString)), SLOT(updateToolTip())); + connect(this, SIGNAL(iconsChanged()), this, SLOT(updateIcon())); + connect(this, SIGNAL(currentIconNameChanged()), this, SLOT(updateIcon())); - _trayIcon->setToolTip(tooltip); + updateIcon(); + updateToolTip(); } -void LegacySystemTray::setVisible(bool visible) +bool LegacySystemTray::isSystemTrayAvailable() const { - SystemTray::setVisible(visible); - if (mode() == Legacy) { - if (shouldBeVisible()) - _trayIcon->show(); - else - _trayIcon->hide(); - } + return mode() == Mode::Legacy + ? QSystemTrayIcon::isSystemTrayAvailable() + : SystemTray::isSystemTrayAvailable(); } -bool LegacySystemTray::isVisible() const +void LegacySystemTray::onVisibilityChanged(bool isVisible) { if (mode() == Legacy) { - return _trayIcon->isVisible(); + _trayIcon->setVisible(isVisible); } - return SystemTray::isVisible(); } -void LegacySystemTray::setMode(Mode mode_) +void LegacySystemTray::onModeChanged(Mode mode) { - if (mode_ == mode()) - return; - - SystemTray::setMode(mode_); - - if (mode() == Legacy) { - syncLegacyIcon(); - if (shouldBeVisible()) - _trayIcon->show(); - else - _trayIcon->hide(); - if (state() == NeedsAttention) - _blinkTimer.start(); + if (mode == Mode::Legacy) { + _trayIcon->setVisible(isVisible()); } else { _trayIcon->hide(); - _blinkTimer.stop(); } } -void LegacySystemTray::setState(State state_) +void LegacySystemTray::updateIcon() { - State oldstate = state(); - SystemTray::setState(state_); - if (oldstate != state()) { - if (state() == NeedsAttention && mode() == Legacy && animationEnabled()) - _blinkTimer.start(); - else { - _blinkTimer.stop(); - _blinkState = false; - } - } - if (mode() == Legacy) - _trayIcon->setIcon(stateIcon()); + QString iconName = (state() == NeedsAttention) ? currentAttentionIconName() : currentIconName(); + _trayIcon->setIcon(icon::get(iconName, QString{":/icons/hicolor/24x24/status/%1.svg"}.arg(iconName))); } -Icon LegacySystemTray::stateIcon() const +void LegacySystemTray::updateToolTip() { - if (mode() == Legacy && state() == NeedsAttention && !_blinkState) - return SystemTray::stateIcon(Active); - return SystemTray::stateIcon(); -} - +#if defined Q_OS_MAC || defined Q_OS_WIN + QString tooltip = QString("%1").arg(toolTipTitle()); + if (!toolTipSubTitle().isEmpty()) + tooltip += QString("\n%1").arg(toolTipSubTitle()); +#else + QString tooltip = QString("%1").arg(toolTipTitle()); + if (!toolTipSubTitle().isEmpty()) + tooltip += QString("
%1").arg(toolTipSubTitle()); +#endif -void LegacySystemTray::on_blinkTimeout() -{ - _blinkState = !_blinkState; - _trayIcon->setIcon(stateIcon()); + _trayIcon->setToolTip(tooltip); } -void LegacySystemTray::on_activated(QSystemTrayIcon::ActivationReason reason) +void LegacySystemTray::onActivated(QSystemTrayIcon::ActivationReason reason) { activate((SystemTray::ActivationReason)reason); } -void LegacySystemTray::on_messageClicked() +void LegacySystemTray::onMessageClicked() { emit messageClicked(_lastMessageId); }