##// END OF EJS Templates
Separate the initialization of the properties of the graph of the update of the units of the graph....
Separate the initialization of the properties of the graph of the update of the units of the graph. The initialization of the properties is carried out when adding a variable in the graph, the update of the units is carried out when loading the data of this variable

File last commit:

r1285:964109cb8b70
r1308:41b7c6aab8be
Show More
CatalogueAbstractTreeItem.cpp
81 lines | 1.9 KiB | text/x-c | CppLexer
/ gui / src / Catalogue / CatalogueTreeItems / CatalogueAbstractTreeItem.cpp
#include "Catalogue/CatalogueTreeItems/CatalogueAbstractTreeItem.h"
struct CatalogueAbstractTreeItem::CatalogueAbstractTreeItemPrivate {
int m_Type;
QVector<CatalogueAbstractTreeItem *> m_Children;
CatalogueAbstractTreeItem *m_Parent = nullptr;
CatalogueAbstractTreeItemPrivate(int type) : m_Type(type) {}
};
CatalogueAbstractTreeItem::CatalogueAbstractTreeItem(int type)
: impl{spimpl::make_unique_impl<CatalogueAbstractTreeItemPrivate>(type)}
{
}
CatalogueAbstractTreeItem::~CatalogueAbstractTreeItem()
{
qDeleteAll(impl->m_Children);
}
void CatalogueAbstractTreeItem::addChild(CatalogueAbstractTreeItem *child)
{
impl->m_Children << child;
child->impl->m_Parent = this;
}
QVector<CatalogueAbstractTreeItem *> CatalogueAbstractTreeItem::children() const
{
return impl->m_Children;
}
CatalogueAbstractTreeItem *CatalogueAbstractTreeItem::parent() const
{
return impl->m_Parent;
}
int CatalogueAbstractTreeItem::type() const
{
return impl->m_Type;
}
QString CatalogueAbstractTreeItem::text(int column) const
{
return data(0, Qt::DisplayRole).toString();
}
QVariant CatalogueAbstractTreeItem::data(int column, int role) const
{
Q_UNUSED(column);
Q_UNUSED(role);
return QVariant();
}
Qt::ItemFlags CatalogueAbstractTreeItem::flags(int column) const
{
Q_UNUSED(column);
return Qt::NoItemFlags;
}
bool CatalogueAbstractTreeItem::setData(int column, int role, const QVariant &value)
{
Q_UNUSED(column);
Q_UNUSED(role);
Q_UNUSED(value);
return false;
}
bool CatalogueAbstractTreeItem::canDropMimeData(const QMimeData *data, Qt::DropAction action)
{
Q_UNUSED(data);
Q_UNUSED(action);
return false;
}
bool CatalogueAbstractTreeItem::dropMimeData(const QMimeData *data, Qt::DropAction action)
{
Q_UNUSED(data);
Q_UNUSED(action);
return false;
}