#include "core/feedsmodelrootitem.h" #include "qtsingleapplication/qtsingleapplication.h" #include FeedsModelRootItem::FeedsModelRootItem(FeedsModelRootItem *parent_item) : m_kind(FeedsModelRootItem::RootItem), m_parentItem(parent_item) { } FeedsModelRootItem::~FeedsModelRootItem() { qDebug("Destroying FeedsModelRootItem instance."); qDeleteAll(m_childItems); } FeedsModelRootItem *FeedsModelRootItem::parent() { return m_parentItem; } void FeedsModelRootItem::setParent(FeedsModelRootItem *parent_item) { m_parentItem = parent_item; } FeedsModelRootItem::Kind FeedsModelRootItem::kind() const { return m_kind; } FeedsModelRootItem *FeedsModelRootItem::child(int row) { return m_childItems.value(row); } void FeedsModelRootItem::appendChild(FeedsModelRootItem *child) { m_childItems.append(child); child->setParent(this); } int FeedsModelRootItem::columnCount() const { // FeedsModel offers exactly two columns. return 2; } int FeedsModelRootItem::row() const { if (m_parentItem) { return m_parentItem->m_childItems.indexOf(const_cast(this)); } else { // This item has no parent. Therefore, its row index is 0. return 0; } } int FeedsModelRootItem::childCount() const { return m_childItems.count(); } QVariant FeedsModelRootItem::data(int column, int role) const { Q_UNUSED(column) Q_UNUSED(role) // Do not return anything for the root item. return QVariant(); } int FeedsModelRootItem::countOfAllMessages() const { return 0; } int FeedsModelRootItem::countOfUnreadMessages() const { return 0; } void FeedsModelRootItem::setIcon(const QIcon &icon) { m_icon = icon; } int FeedsModelRootItem::id() const { return m_id; } void FeedsModelRootItem::setId(int id) { m_id = id; } QString FeedsModelRootItem::title() const { return m_title; } void FeedsModelRootItem::setTitle(const QString &title) { m_title = title; } QList FeedsModelRootItem::childItems() const { return m_childItems; } void FeedsModelRootItem::clearChilds() { m_childItems.clear(); } bool FeedsModelRootItem::isEqual(FeedsModelRootItem *lhs, FeedsModelRootItem *rhs) { return (lhs->kind() == rhs->kind()) && (lhs->id() == rhs->id()); } bool FeedsModelRootItem::lessThan(FeedsModelRootItem *lhs, FeedsModelRootItem *rhs) { if (lhs->kind() == rhs->kind()) { return lhs->id() < rhs->id(); } else { return false; } }