X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fstatusnotifieritem.cpp;h=0a4f36e3350aa00c9262d33231c8472eb0435098;hp=df04252b31d428e38e61837ef571a2dcba85b4d0;hb=a5944c840aaf022ba970de5babc965ca70a6227f;hpb=dae6003f55206168e6d3c5cbace84e5b0c65990c diff --git a/src/qtui/statusnotifieritem.cpp b/src/qtui/statusnotifieritem.cpp index df04252b..0a4f36e3 100644 --- a/src/qtui/statusnotifieritem.cpp +++ b/src/qtui/statusnotifieritem.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 by the Quassel Project * + * Copyright (C) 2005-2016 by the Quassel Project * * devel@quassel-irc.org * * * * This contains code from KStatusNotifierItem, part of the KDE libs * @@ -51,15 +51,8 @@ public: protected: virtual QString iconNameForAction(QAction *action) // TODO Qt 4.7: fixme when we have converted our iconloader { - Icon icon(action->icon()); -#if QT_VERSION >= 0x040701 - // QIcon::name() is in the 4.7 git branch, but it is not in 4.7 TP. - // If you get a build error here, you need to update your pre-release - // of Qt 4.7. + QIcon icon(action->icon()); return icon.isNull() ? QString() : icon.name(); -#else - return QString(); -#endif } }; @@ -249,7 +242,7 @@ QString StatusNotifierItem::title() const QString StatusNotifierItem::iconName() const { if (state() == Passive) - return QString("quassel-inactive"); + return QString("inactive-quassel"); else return QString("quassel"); } @@ -258,7 +251,7 @@ QString StatusNotifierItem::iconName() const QString StatusNotifierItem::attentionIconName() const { if (animationEnabled()) - return QString("quassel-message"); + return QString("message-quassel"); else return QString("quassel"); } @@ -293,7 +286,7 @@ bool StatusNotifierItem::eventFilter(QObject *watched, QEvent *event) { if (mode() == StatusNotifier) { //FIXME: ugly ugly workaround to weird QMenu's focus problems -#ifdef HAVE_KDE +#ifdef HAVE_KDE4 if (watched == trayMenu() && (event->type() == QEvent::WindowDeactivate || (event->type() == QEvent::MouseButtonRelease && static_cast(event)->button() == Qt::LeftButton))) { // put at the back of event queue to let the action activate anyways