diff --git a/src/core/feedsmodelcategory.h b/src/core/feedsmodelcategory.h index 74f145d81..df926fd98 100755 --- a/src/core/feedsmodelcategory.h +++ b/src/core/feedsmodelcategory.h @@ -24,6 +24,16 @@ class FeedsModelCategory : public FeedsModelRootItem { explicit FeedsModelCategory(const FeedsModelCategory &other); 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. inline Type type() const { return m_type; diff --git a/src/core/feedsmodelrootitem.h b/src/core/feedsmodelrootitem.h index fed4d7402..5cedbf338 100755 --- a/src/core/feedsmodelrootitem.h +++ b/src/core/feedsmodelrootitem.h @@ -57,6 +57,15 @@ class FeedsModelRootItem { virtual int countOfUnreadMessages() 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. inline QList childItems() const { return m_childItems; diff --git a/src/core/feedsmodelstandardfeed.cpp b/src/core/feedsmodelstandardfeed.cpp index 644f471a1..6866bc9d2 100755 --- a/src/core/feedsmodelstandardfeed.cpp +++ b/src/core/feedsmodelstandardfeed.cpp @@ -162,6 +162,12 @@ void FeedsModelStandardFeed::update() { 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 &messages) { int feed_id = id(), message_id; qint64 message_creation_date; diff --git a/src/core/feedsmodelstandardfeed.h b/src/core/feedsmodelstandardfeed.h index cc2ab0510..204cef314 100644 --- a/src/core/feedsmodelstandardfeed.h +++ b/src/core/feedsmodelstandardfeed.h @@ -24,6 +24,10 @@ class FeedsModelStandardFeed : public FeedsModelFeed { // Perform fetching of new messages. void update(); + // Removes this standard feed from persistent + // storage. + bool removeItself(); + // Various getters/setters. inline QString encoding() const { return m_encoding;