##// 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_QSqlIndex.h
31 lines | 1.1 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QSQLINDEX_H
#define PYTHONQTWRAPPER_QSQLINDEX_H
#include <qsqlindex.h>
#include <QObject>
#include <PythonQt.h>
#include <QVariant>
#include <qsqlfield.h>
#include <qsqlindex.h>
#include <qsqlrecord.h>
class PythonQtWrapper_QSqlIndex : public QObject
{ Q_OBJECT
public:
public slots:
QSqlIndex* new_QSqlIndex(const QSqlIndex& other);
QSqlIndex* new_QSqlIndex(const QString& cursorName = QString(), const QString& name = QString());
void delete_QSqlIndex(QSqlIndex* obj) { delete obj; }
bool isDescending(QSqlIndex* theWrappedObject, int i) const;
QString name(QSqlIndex* theWrappedObject) const;
void append(QSqlIndex* theWrappedObject, const QSqlField& field, bool desc);
void setDescending(QSqlIndex* theWrappedObject, int i, bool desc);
void setName(QSqlIndex* theWrappedObject, const QString& name);
QString cursorName(QSqlIndex* theWrappedObject) const;
void setCursorName(QSqlIndex* theWrappedObject, const QString& cursorName);
void append(QSqlIndex* theWrappedObject, const QSqlField& field);
};
#endif // PYTHONQTWRAPPER_QSQLINDEX_H