104 lines
2.2 KiB
C++
Executable File
104 lines
2.2 KiB
C++
Executable File
#include "core/feedsmodelrootitem.h"
|
|
|
|
#include "qtsingleapplication/qtsingleapplication.h"
|
|
|
|
#include <QVariant>
|
|
|
|
|
|
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;
|
|
}
|
|
|
|
void FeedsModelRootItem::update() {
|
|
}
|
|
|
|
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<FeedsModelRootItem*>(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 *> FeedsModelRootItem::childItems() const {
|
|
return m_childItems;
|
|
}
|
|
|
|
void FeedsModelRootItem::clearChilds() {
|
|
m_childItems.clear();
|
|
}
|