forked from mirror/openmw-tes3mp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.4 KiB
C++
70 lines
1.4 KiB
C++
#include "modelitem.hpp"
|
|
|
|
ContentSelectorModel::ModelItem::ModelItem(ModelItem *parent)
|
|
: mParentItem(parent)
|
|
{
|
|
}
|
|
/*
|
|
ContentSelectorModel::ModelItem::ModelItem(const ModelItem *parent)
|
|
// : mParentItem(parent)
|
|
{
|
|
}
|
|
*/
|
|
|
|
ContentSelectorModel::ModelItem::~ModelItem()
|
|
{
|
|
qDeleteAll(mChildItems);
|
|
}
|
|
|
|
|
|
ContentSelectorModel::ModelItem *ContentSelectorModel::ModelItem::parent() const
|
|
{
|
|
return mParentItem;
|
|
}
|
|
|
|
bool ContentSelectorModel::ModelItem::hasFormat(const QString &mimetype) const
|
|
{
|
|
if (mimetype == "application/omwcontent")
|
|
return true;
|
|
|
|
return QMimeData::hasFormat(mimetype);
|
|
}
|
|
int ContentSelectorModel::ModelItem::row() const
|
|
{
|
|
if (mParentItem)
|
|
return 1;
|
|
//return mParentItem->childRow(const_cast<ModelItem*>(this));
|
|
//return mParentItem->mChildItems.indexOf(const_cast<ModelItem*>(this));
|
|
|
|
return -1;
|
|
}
|
|
|
|
|
|
int ContentSelectorModel::ModelItem::childCount() const
|
|
{
|
|
return mChildItems.count();
|
|
}
|
|
|
|
int ContentSelectorModel::ModelItem::childRow(ModelItem *child) const
|
|
{
|
|
Q_ASSERT(child);
|
|
|
|
return mChildItems.indexOf(child);
|
|
}
|
|
|
|
ContentSelectorModel::ModelItem *ContentSelectorModel::ModelItem::child(int row)
|
|
{
|
|
return mChildItems.value(row);
|
|
}
|
|
|
|
|
|
void ContentSelectorModel::ModelItem::appendChild(ModelItem *item)
|
|
{
|
|
mChildItems.append(item);
|
|
}
|
|
|
|
void ContentSelectorModel::ModelItem::removeChild(int row)
|
|
{
|
|
mChildItems.removeAt(row);
|
|
}
|