Refactoring.

This commit is contained in:
Martin Rotter 2014-01-16 22:29:53 +01:00
parent 45e28fa0aa
commit 742eff13f2
4 changed files with 29 additions and 0 deletions

View File

@ -24,6 +24,16 @@ class FeedsModelCategory : public FeedsModelRootItem {
explicit FeedsModelCategory(const FeedsModelCategory &other); explicit FeedsModelCategory(const FeedsModelCategory &other);
virtual ~FeedsModelCategory(); virtual ~FeedsModelCategory();
inline bool removeItself() {
bool result = true;
foreach (FeedsModelRootItem *child, m_childItems) {
result &= child->removeItself();
}
return result;
}
// All types of categories offer these getters/setters. // All types of categories offer these getters/setters.
inline Type type() const { inline Type type() const {
return m_type; return m_type;

View File

@ -57,6 +57,15 @@ class FeedsModelRootItem {
virtual int countOfUnreadMessages() const; virtual int countOfUnreadMessages() const;
virtual int countOfAllMessages() const; virtual int countOfAllMessages() const;
// This method is used to permanently
// "remove" (or "unregister") this item.
// This typically removes item and its
// "children" (for example messages or child feeds)
// from the database.
virtual bool removeItself() {
return false;
}
// Access to children. // Access to children.
inline QList<FeedsModelRootItem*> childItems() const { inline QList<FeedsModelRootItem*> childItems() const {
return m_childItems; return m_childItems;

View File

@ -162,6 +162,12 @@ void FeedsModelStandardFeed::update() {
updateMessages(messages); updateMessages(messages);
} }
bool FeedsModelStandardFeed::removeItself() {
// TODO: pokracovat, vymazat tento standardni
// kanal z database a smazat jeho zpravy atp.
return false;
}
void FeedsModelStandardFeed::updateMessages(const QList<Message> &messages) { void FeedsModelStandardFeed::updateMessages(const QList<Message> &messages) {
int feed_id = id(), message_id; int feed_id = id(), message_id;
qint64 message_creation_date; qint64 message_creation_date;

View File

@ -24,6 +24,10 @@ class FeedsModelStandardFeed : public FeedsModelFeed {
// Perform fetching of new messages. // Perform fetching of new messages.
void update(); void update();
// Removes this standard feed from persistent
// storage.
bool removeItself();
// Various getters/setters. // Various getters/setters.
inline QString encoding() const { inline QString encoding() const {
return m_encoding; return m_encoding;