##// END OF EJS Templates
Initial Pybind11 binding experiment working....
Initial Pybind11 binding experiment working. Can open an amda formatted file from Python and get few attributes from ScalarSeries. Loading module from python works. Embedding python interpreter also works. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1302:3771be3f513d
r1339:98271eda8c6e
Show More
CatalogueAbstractTreeItem.cpp
87 lines | 2.0 KiB | text/x-c | CppLexer
/ gui / src / Catalogue / CatalogueTreeItems / CatalogueAbstractTreeItem.cpp
Refactoring of catalogue: use a custom item class
r1229 #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;
}
Add catalogue handling
r1302 void CatalogueAbstractTreeItem::removeChild(CatalogueAbstractTreeItem *child)
{
impl->m_Children.removeAll(child);
delete child;
}
Refactoring of catalogue: use a custom item class
r1229 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;
}
Drop of events on a catalogue
r1230
bool CatalogueAbstractTreeItem::dropMimeData(const QMimeData *data, Qt::DropAction action)
{
Q_UNUSED(data);
Q_UNUSED(action);
return false;
}