X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsystraynotificationbackend.cpp;h=ae16ac2e5b6ad883c88b74904286cf37d565fe13;hp=dcdd8165425750d3615acab4b27e215bb57b0438;hb=f04db2cb802b1296ca739c823495930c71d3b4ab;hpb=12de4bc686cb6412a5018c157157c45e9fef67ca diff --git a/src/qtui/systraynotificationbackend.cpp b/src/qtui/systraynotificationbackend.cpp index dcdd8165..ae16ac2e 100644 --- a/src/qtui/systraynotificationbackend.cpp +++ b/src/qtui/systraynotificationbackend.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2010 by the Quassel Project * + * Copyright (C) 2005-2013 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * 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. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include @@ -35,134 +35,165 @@ #include "systemtray.h" SystrayNotificationBackend::SystrayNotificationBackend(QObject *parent) - : AbstractNotificationBackend(parent), - _blockActivation(false) + : AbstractNotificationBackend(parent), + _blockActivation(false) { - NotificationSettings notificationSettings; - notificationSettings.initAndNotify("Systray/ShowBubble", this, SLOT(showBubbleChanged(QVariant)), true); - notificationSettings.initAndNotify("Systray/Animate", this, SLOT(animateChanged(QVariant)), true); + NotificationSettings notificationSettings; + notificationSettings.initAndNotify("Systray/ShowBubble", this, SLOT(showBubbleChanged(QVariant)), true); + notificationSettings.initAndNotify("Systray/Animate", this, SLOT(animateChanged(QVariant)), true); - connect(QtUi::mainWindow()->systemTray(), SIGNAL(messageClicked(uint)), SLOT(notificationActivated(uint))); - connect(QtUi::mainWindow()->systemTray(), SIGNAL(activated(SystemTray::ActivationReason)), - SLOT(notificationActivated(SystemTray::ActivationReason))); + 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); + QApplication::instance()->installEventFilter(this); - updateToolTip(); + updateToolTip(); } -void SystrayNotificationBackend::notify(const Notification &n) { - if(n.type != Highlight && n.type != PrivMsg) - return; - _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); - } +void SystrayNotificationBackend::notify(const Notification &n) +{ + if (n.type != Highlight && n.type != PrivMsg) + return; + + _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); + if (_animate) + QtUi::mainWindow()->systemTray()->setAlert(true); - updateToolTip(); + updateToolTip(); } -void SystrayNotificationBackend::close(uint notificationId) { - QList::iterator i = _notifications.begin(); - while(i != _notifications.end()) { - if(i->notificationId == notificationId) - i = _notifications.erase(i); - else - ++i; - } - QtUi::mainWindow()->systemTray()->closeMessage(notificationId); +void SystrayNotificationBackend::close(uint notificationId) +{ + QList::iterator i = _notifications.begin(); + while (i != _notifications.end()) { + if (i->notificationId == notificationId) + i = _notifications.erase(i); + else + ++i; + } + + QtUi::mainWindow()->systemTray()->closeMessage(notificationId); - //if(!_notifications.count()) //FIXME make configurable + //if(!_notifications.count()) //FIXME make configurable QtUi::mainWindow()->systemTray()->setAlert(false); - updateToolTip(); + updateToolTip(); } -void SystrayNotificationBackend::notificationActivated(uint notificationId) { - if(!_blockActivation) { - if(_notifications.count()) { - if(QtUi::mainWindow()->systemTray()->mode() == SystemTray::Legacy) - _blockActivation = true; // prevent double activation because both tray icon and bubble might send a signal - if(!notificationId) - notificationId = _notifications.count()? _notifications.last().notificationId : 0; - emit activated(notificationId); - } else - GraphicalUi::toggleMainWidget(); - } + +void SystrayNotificationBackend::notificationActivated(uint notificationId) +{ + if (!_blockActivation) { + if (_notifications.count()) { + if (QtUi::mainWindow()->systemTray()->mode() == SystemTray::Legacy) + _blockActivation = true; // prevent double activation because both tray icon and bubble might send a signal + if (!notificationId) + notificationId = _notifications.count() ? _notifications.last().notificationId : 0; + emit activated(notificationId); + } + else + GraphicalUi::toggleMainWidget(); + } } -void SystrayNotificationBackend::notificationActivated(SystemTray::ActivationReason reason) { - if(reason == SystemTray::Trigger) { - notificationActivated(0); - } + +void SystrayNotificationBackend::notificationActivated(SystemTray::ActivationReason reason) +{ + if (reason == SystemTray::Trigger) { + notificationActivated(0); + } } + // moving the mouse or releasing the button means that we're not dealing with a double activation -bool SystrayNotificationBackend::eventFilter(QObject *obj, QEvent *event) { - if(event->type() == QEvent::MouseMove || event->type() == QEvent::MouseButtonRelease) { - _blockActivation = false; - } - return AbstractNotificationBackend::eventFilter(obj, event); +bool SystrayNotificationBackend::eventFilter(QObject *obj, QEvent *event) +{ + if (event->type() == QEvent::MouseMove || event->type() == QEvent::MouseButtonRelease) { + _blockActivation = false; + } + return AbstractNotificationBackend::eventFilter(obj, event); } -void SystrayNotificationBackend::showBubbleChanged(const QVariant &v) { - _showBubble = v.toBool(); + +void SystrayNotificationBackend::showBubbleChanged(const QVariant &v) +{ + _showBubble = v.toBool(); } -void SystrayNotificationBackend::animateChanged(const QVariant &v) { - _animate = v.toBool(); + +void SystrayNotificationBackend::animateChanged(const QVariant &v) +{ + _animate = v.toBool(); } -void SystrayNotificationBackend::updateToolTip() { - QtUi::mainWindow()->systemTray()->setToolTip("Quassel IRC", - _notifications.count()? tr("%n pending highlight(s)", "", _notifications.count()) : QString()); + +void SystrayNotificationBackend::updateToolTip() +{ + QtUi::mainWindow()->systemTray()->setToolTip("Quassel IRC", + _notifications.count() ? tr("%n pending highlight(s)", "", _notifications.count()) : QString()); } -SettingsPage *SystrayNotificationBackend::createConfigWidget() const { - return new ConfigWidget(); + +SettingsPage *SystrayNotificationBackend::createConfigWidget() const +{ + return new ConfigWidget(); } + /***************************************************************************/ -SystrayNotificationBackend::ConfigWidget::ConfigWidget(QWidget *parent) : SettingsPage("Internal", "SystrayNotification", parent) { - _showBubbleBox = new QCheckBox(tr("Show a message in a popup")); - _showBubbleBox->setIcon(SmallIcon("dialog-information")); - connect(_showBubbleBox, SIGNAL(toggled(bool)), this, SLOT(widgetChanged())); - QHBoxLayout *layout = new QHBoxLayout(this); - layout->addWidget(_showBubbleBox); +SystrayNotificationBackend::ConfigWidget::ConfigWidget(QWidget *parent) : SettingsPage("Internal", "SystrayNotification", parent) +{ + _showBubbleBox = new QCheckBox(tr("Show a message in a popup")); + _showBubbleBox->setIcon(SmallIcon("dialog-information")); + connect(_showBubbleBox, SIGNAL(toggled(bool)), this, SLOT(widgetChanged())); + QHBoxLayout *layout = new QHBoxLayout(this); + layout->addWidget(_showBubbleBox); } -void SystrayNotificationBackend::ConfigWidget::widgetChanged() { - bool changed = (_showBubble != _showBubbleBox->isChecked()); - if(changed != hasChanged()) - setChangedState(changed); + +void SystrayNotificationBackend::ConfigWidget::widgetChanged() +{ + bool changed = (_showBubble != _showBubbleBox->isChecked()); + if (changed != hasChanged()) + setChangedState(changed); } -bool SystrayNotificationBackend::ConfigWidget::hasDefaults() const { - return true; + +bool SystrayNotificationBackend::ConfigWidget::hasDefaults() const +{ + return true; } -void SystrayNotificationBackend::ConfigWidget::defaults() { - _showBubbleBox->setChecked(false); - widgetChanged(); + +void SystrayNotificationBackend::ConfigWidget::defaults() +{ + _showBubbleBox->setChecked(false); + widgetChanged(); } -void SystrayNotificationBackend::ConfigWidget::load() { - NotificationSettings s; - _showBubble = s.value("Systray/ShowBubble", false).toBool(); - _showBubbleBox->setChecked(_showBubble); - setChangedState(false); + +void SystrayNotificationBackend::ConfigWidget::load() +{ + NotificationSettings s; + _showBubble = s.value("Systray/ShowBubble", false).toBool(); + _showBubbleBox->setChecked(_showBubble); + setChangedState(false); } -void SystrayNotificationBackend::ConfigWidget::save() { - NotificationSettings s; - s.setValue("Systray/ShowBubble", _showBubbleBox->isChecked()); - load(); + +void SystrayNotificationBackend::ConfigWidget::save() +{ + NotificationSettings s; + s.setValue("Systray/ShowBubble", _showBubbleBox->isChecked()); + load(); }