##// END OF EJS Templates
updated version number, next version will be 2.0 due to the wrapping generator addition...
updated version number, next version will be 2.0 due to the wrapping generator addition git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@69 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r33:1742cf875fd9
Show More
PythonQtWrapper_QModelIndex.cpp
81 lines | 2.1 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QModelIndex.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qabstractitemmodel.h>
QModelIndex* PythonQtWrapper_QModelIndex::new_QModelIndex()
{
return new QModelIndex(); }
QModelIndex* PythonQtWrapper_QModelIndex::new_QModelIndex(const QModelIndex& other)
{
return new QModelIndex(other); }
void* PythonQtWrapper_QModelIndex::internalPointer(QModelIndex* theWrappedObject) const
{
return theWrappedObject->internalPointer();
}
QModelIndex PythonQtWrapper_QModelIndex::parent(QModelIndex* theWrappedObject) const
{
return theWrappedObject->parent();
}
bool PythonQtWrapper_QModelIndex::operator_less(QModelIndex* theWrappedObject, const QModelIndex& other) const
{
return (*theWrappedObject)< other;
}
int PythonQtWrapper_QModelIndex::column(QModelIndex* theWrappedObject) const
{
return theWrappedObject->column();
}
QModelIndex PythonQtWrapper_QModelIndex::sibling(QModelIndex* theWrappedObject, int row, int column) const
{
return theWrappedObject->sibling(row, column);
}
QVariant PythonQtWrapper_QModelIndex::data(QModelIndex* theWrappedObject, int role) const
{
return theWrappedObject->data(role);
}
Qt::ItemFlags PythonQtWrapper_QModelIndex::flags(QModelIndex* theWrappedObject) const
{
return theWrappedObject->flags();
}
qint64 PythonQtWrapper_QModelIndex::internalId(QModelIndex* theWrappedObject) const
{
return theWrappedObject->internalId();
}
bool PythonQtWrapper_QModelIndex::isValid(QModelIndex* theWrappedObject) const
{
return theWrappedObject->isValid();
}
const QAbstractItemModel* PythonQtWrapper_QModelIndex::model(QModelIndex* theWrappedObject) const
{
return theWrappedObject->model();
}
bool PythonQtWrapper_QModelIndex::operator_equal(QModelIndex* theWrappedObject, const QModelIndex& other) const
{
return (*theWrappedObject)== other;
}
int PythonQtWrapper_QModelIndex::row(QModelIndex* theWrappedObject) const
{
return theWrappedObject->row();
}
QModelIndex PythonQtWrapper_QModelIndex::child(QModelIndex* theWrappedObject, int row, int column) const
{
return theWrappedObject->child(row, column);
}