diff --git a/src/services/abstract/feed.cpp b/src/services/abstract/feed.cpp index 2faabce27..8183d158e 100755 --- a/src/services/abstract/feed.cpp +++ b/src/services/abstract/feed.cpp @@ -31,3 +31,22 @@ Feed::Feed(RootItem *parent) : RootItem(parent) { Feed::~Feed() { } + +QVariant Feed::data(int column, int role) const { + switch (role) { + case Qt::ForegroundRole: + switch (status()) { + case NewMessages: + return QColor(Qt::blue); + + case NetworkError: + return QColor(Qt::red); + + default: + return QVariant(); + } + + default: + return RootItem::data(column, role); + } +} diff --git a/src/services/abstract/feed.h b/src/services/abstract/feed.h index 459f4e6cf..edd1362d5 100755 --- a/src/services/abstract/feed.h +++ b/src/services/abstract/feed.h @@ -22,6 +22,8 @@ #include "core/message.h" +#include + // Base class for "feed" nodes. class Feed : public RootItem { @@ -61,6 +63,8 @@ class Feed : public RootItem { // messages. virtual int update() = 0; + QVariant data(int column, int role) const; + ///////////////////////////////////////// // Members to override. */ ///////////////////////////////////////// diff --git a/src/services/standard/standardfeed.cpp b/src/services/standard/standardfeed.cpp index 9057b67d9..92c74b20c 100755 --- a/src/services/standard/standardfeed.cpp +++ b/src/services/standard/standardfeed.cpp @@ -160,6 +160,54 @@ QList StandardFeed::undeletedMessages() const { return messages; } +QVariant StandardFeed::data(int column, int role) const { + switch (role) { + case Qt::ToolTipRole: + if (column == FDS_MODEL_TITLE_INDEX) { + QString auto_update_string; + + switch (autoUpdateType()) { + case DontAutoUpdate: + //: Describes feed auto-update status. + auto_update_string = tr("does not use auto-update"); + break; + + case DefaultAutoUpdate: + //: Describes feed auto-update status. + auto_update_string = tr("uses global settings"); + break; + + case SpecificAutoUpdate: + default: + //: Describes feed auto-update status. + auto_update_string = tr("uses specific settings " + "(%n minute(s) to next auto-update)", + 0, + autoUpdateRemainingInterval()); + break; + } + + //: Tooltip for feed. + return tr("%1 (%2)" + "%3\n\n" + "Network status: %6\n" + "Encoding: %4\n" + "Auto-update status: %5").arg(title(), + StandardFeed::typeToString(type()), + description().isEmpty() ? QString() : QString('\n') + description(), + encoding(), + auto_update_string, + NetworkFactory::networkErrorText(m_networkError)); + } + else { + return Feed::data(column, role); + } + + default: + return Feed::data(column, role); + } +} + QString StandardFeed::typeToString(StandardFeed::Type type) { switch (type) { case Atom10: @@ -372,66 +420,6 @@ QPair StandardFeed::guessFeed(const Q return result; } -QVariant StandardFeed::data(int column, int role) const { - switch (role) { - case Qt::ToolTipRole: - if (column == FDS_MODEL_TITLE_INDEX) { - QString auto_update_string; - - switch (autoUpdateType()) { - case DontAutoUpdate: - //: Describes feed auto-update status. - auto_update_string = tr("does not use auto-update"); - break; - - case DefaultAutoUpdate: - //: Describes feed auto-update status. - auto_update_string = tr("uses global settings"); - break; - - case SpecificAutoUpdate: - default: - //: Describes feed auto-update status. - auto_update_string = tr("uses specific settings " - "(%n minute(s) to next auto-update)", - 0, - autoUpdateRemainingInterval()); - break; - } - - //: Tooltip for feed. - return tr("%1 (%2)" - "%3\n\n" - "Network status: %6\n" - "Encoding: %4\n" - "Auto-update status: %5").arg(title(), - StandardFeed::typeToString(type()), - description().isEmpty() ? QString() : QString('\n') + description(), - encoding(), - auto_update_string, - NetworkFactory::networkErrorText(m_networkError)); - } - else { - return Feed::data(column, role); - } - - case Qt::ForegroundRole: - switch (status()) { - case NewMessages: - return QColor(Qt::blue); - - case NetworkError: - return QColor(Qt::red); - - default: - return QVariant(); - } - - default: - return Feed::data(column, role); - } -} - Qt::ItemFlags StandardFeed::additionalFlags() const { return Qt::ItemIsDragEnabled; } diff --git a/src/services/standard/standardfeed.h b/src/services/standard/standardfeed.h index de1b8db56..84a414c96 100755 --- a/src/services/standard/standardfeed.h +++ b/src/services/standard/standardfeed.h @@ -79,8 +79,9 @@ class StandardFeed : public Feed { QList undeletedMessages() const; - // Obtains data related to this feed. QVariant data(int column, int role) const; + + // Obtains data related to this feed. Qt::ItemFlags additionalFlags() const; bool performDragDropChange(RootItem *target_item); diff --git a/src/services/tt-rss/ttrssfeed.cpp b/src/services/tt-rss/ttrssfeed.cpp index 6a724c639..be6bea0aa 100755 --- a/src/services/tt-rss/ttrssfeed.cpp +++ b/src/services/tt-rss/ttrssfeed.cpp @@ -289,7 +289,13 @@ int TtRssFeed::updateMessages(const QList &messages) { qDebug("Transaction commit for message downloader failed."); } else { - setStatus(NewMessages); + if (updated_messages > 0) { + setStatus(NewMessages); + } + else { + setStatus(Normal); + } + updateCounts(true); serviceRoot()->itemChanged(QList() << this); }