##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QModelIndex.cpp
88 lines | 2.3 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); }
Qt::ItemFlags PythonQtWrapper_QModelIndex::flags(QModelIndex* theWrappedObject) const
{
return ( theWrappedObject->flags());
}
void* PythonQtWrapper_QModelIndex::internalPointer(QModelIndex* theWrappedObject) const
{
return ( theWrappedObject->internalPointer());
}
QVariant PythonQtWrapper_QModelIndex::data(QModelIndex* theWrappedObject, int role) const
{
return ( theWrappedObject->data(role));
}
qint64 PythonQtWrapper_QModelIndex::internalId(QModelIndex* theWrappedObject) const
{
return ( theWrappedObject->internalId());
}
QModelIndex PythonQtWrapper_QModelIndex::sibling(QModelIndex* theWrappedObject, int row, int column) const
{
return ( theWrappedObject->sibling(row, column));
}
bool PythonQtWrapper_QModelIndex::operator_equal(QModelIndex* theWrappedObject, const QModelIndex& other) const
{
return ( (*theWrappedObject)== other);
}
int PythonQtWrapper_QModelIndex::column(QModelIndex* theWrappedObject) const
{
return ( theWrappedObject->column());
}
bool PythonQtWrapper_QModelIndex::isValid(QModelIndex* theWrappedObject) const
{
return ( theWrappedObject->isValid());
}
const QAbstractItemModel* PythonQtWrapper_QModelIndex::model(QModelIndex* theWrappedObject) const
{
return ( theWrappedObject->model());
}
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));
}
bool PythonQtWrapper_QModelIndex::operator_less(QModelIndex* theWrappedObject, const QModelIndex& other) const
{
return ( (*theWrappedObject)< other);
}
QModelIndex PythonQtWrapper_QModelIndex::parent(QModelIndex* theWrappedObject) const
{
return ( theWrappedObject->parent());
}
QString PythonQtWrapper_QModelIndex::toString(QModelIndex* obj) {
QString result;
QDebug d(&result);
d << *obj;
return result;
}