Can mark category.
This commit is contained in:
parent
23b0f411d6
commit
bfa177a32d
@ -20,6 +20,9 @@
|
|||||||
#include "definitions/definitions.h"
|
#include "definitions/definitions.h"
|
||||||
#include "miscellaneous/application.h"
|
#include "miscellaneous/application.h"
|
||||||
#include "miscellaneous/iconfactory.h"
|
#include "miscellaneous/iconfactory.h"
|
||||||
|
#include "services/tt-rss/definitions.h"
|
||||||
|
#include "services/tt-rss/ttrssserviceroot.h"
|
||||||
|
#include "services/tt-rss/network/ttrssnetworkfactory.h"
|
||||||
|
|
||||||
#include <QVariant>
|
#include <QVariant>
|
||||||
|
|
||||||
@ -38,6 +41,27 @@ TtRssCategory::TtRssCategory(const QSqlRecord &record) : Category(NULL) {
|
|||||||
TtRssCategory::~TtRssCategory() {
|
TtRssCategory::~TtRssCategory() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TtRssServiceRoot *TtRssCategory::serviceRoot() {
|
||||||
|
return qobject_cast<TtRssServiceRoot*>(getParentServiceRoot());
|
||||||
|
}
|
||||||
|
|
||||||
|
bool TtRssCategory::markAsReadUnread(RootItem::ReadStatus status) {
|
||||||
|
QNetworkReply::NetworkError error;
|
||||||
|
QStringList ids = serviceRoot()->customIDSOfMessagesForItem(this);
|
||||||
|
TtRssUpdateArticleResponse response = serviceRoot()->network()->updateArticles(ids, UpdateArticle::Unread,
|
||||||
|
status == RootItem::Unread ?
|
||||||
|
UpdateArticle::SetToTrue :
|
||||||
|
UpdateArticle::SetToFalse,
|
||||||
|
error);
|
||||||
|
|
||||||
|
if (error != QNetworkReply::NoError || response.updateStatus() != STATUS_OK) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return serviceRoot()->markFeedsReadUnread(getSubTreeFeeds(), status);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int TtRssCategory::customId() const {
|
int TtRssCategory::customId() const {
|
||||||
return m_customId;
|
return m_customId;
|
||||||
}
|
}
|
||||||
|
@ -23,6 +23,8 @@
|
|||||||
#include <QSqlRecord>
|
#include <QSqlRecord>
|
||||||
|
|
||||||
|
|
||||||
|
class TtRssServiceRoot;
|
||||||
|
|
||||||
class TtRssCategory : public Category {
|
class TtRssCategory : public Category {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
@ -31,6 +33,10 @@ class TtRssCategory : public Category {
|
|||||||
explicit TtRssCategory(const QSqlRecord &record);
|
explicit TtRssCategory(const QSqlRecord &record);
|
||||||
virtual ~TtRssCategory();
|
virtual ~TtRssCategory();
|
||||||
|
|
||||||
|
TtRssServiceRoot *serviceRoot();
|
||||||
|
|
||||||
|
bool markAsReadUnread(ReadStatus status);
|
||||||
|
|
||||||
int customId() const;
|
int customId() const;
|
||||||
void setCustomId(int custom_id);
|
void setCustomId(int custom_id);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user