Refactored data getter a bit.

This commit is contained in:
Martin Rotter 2015-12-13 18:21:06 +01:00
parent ce7e0f6579
commit 0900d68dca
5 changed files with 80 additions and 62 deletions

View File

@ -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);
}
}

View File

@ -22,6 +22,8 @@
#include "core/message.h"
#include <QVariant>
// 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. */
/////////////////////////////////////////

View File

@ -160,6 +160,54 @@ QList<Message> 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*,QNetworkReply::NetworkError> 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;
}

View File

@ -79,8 +79,9 @@ class StandardFeed : public Feed {
QList<Message> 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);

View File

@ -289,7 +289,13 @@ int TtRssFeed::updateMessages(const QList<Message> &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<RootItem*>() << this);
}