##// 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
com_trolltech_qt_sql_init.cpp
34 lines | 2.7 KiB | text/x-c | CppLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include <PythonQt.h>
florianlink
upgraded wrappers to current generator version...
r28 #include "PythonQtWrapper_QSqlRelation.h"
florianlink
recreated wrappers to match current python qt version...
r73 #include "PythonQtWrapper_QSqlDatabase.h"
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include "PythonQtWrapper_QSqlDriverCreatorBase.h"
florianlink
upgraded wrappers to current generator version...
r28 #include "PythonQtWrapper_QSqlQuery.h"
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include "PythonQtWrapper_QSqlRecord.h"
florianlink
recreated wrappers to match current python qt version...
r73 #include "PythonQtWrapper_QSqlResult.h"
#include "PythonQtWrapper_QSqlError.h"
#include "PythonQtWrapper_QSqlField.h"
florianlink
upgraded wrappers to current generator version...
r28 #include "PythonQtWrapper_QSql.h"
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include "PythonQtWrapper_QSqlIndex.h"
florianlink
recreated wrappers to match current python qt version...
r73 #include "PythonQtWrapper_QSqlDriver.h"
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include "PythonQtWrapper_QSqlQueryModel.h"
#include "PythonQtWrapper_QSqlTableModel.h"
#include "PythonQtWrapper_QSqlRelationalTableModel.h"
florianlink
upgraded wrappers to current generator version...
r28
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void PythonQt_init_QtSql() {
florianlink
upgraded wrappers to current generator version...
r28 PythonQt::self()->registerCPPClass("QSqlRelation", "", "QtSql", PythonQtCreateObject<PythonQtWrapper_QSqlRelation>);
florianlink
recreated wrappers to match current python qt version...
r73 PythonQt::self()->registerCPPClass("QSqlDatabase", "", "QtSql", PythonQtCreateObject<PythonQtWrapper_QSqlDatabase>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QSqlDatabase>);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 PythonQt::self()->registerCPPClass("QSqlDriverCreatorBase", "", "QtSql", PythonQtCreateObject<PythonQtWrapper_QSqlDriverCreatorBase>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QSqlDriverCreatorBase>);
florianlink
upgraded wrappers to current generator version...
r28 PythonQt::self()->registerCPPClass("QSqlQuery", "", "QtSql", PythonQtCreateObject<PythonQtWrapper_QSqlQuery>);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 PythonQt::self()->registerCPPClass("QSqlRecord", "", "QtSql", PythonQtCreateObject<PythonQtWrapper_QSqlRecord>);
florianlink
recreated wrappers to match current python qt version...
r73 PythonQt::self()->registerCPPClass("QSqlResult", "", "QtSql", PythonQtCreateObject<PythonQtWrapper_QSqlResult>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QSqlResult>);
PythonQt::self()->registerCPPClass("QSqlError", "", "QtSql", PythonQtCreateObject<PythonQtWrapper_QSqlError>);
PythonQt::self()->registerCPPClass("QSqlField", "", "QtSql", PythonQtCreateObject<PythonQtWrapper_QSqlField>);
florianlink
upgraded wrappers to current generator version...
r28 PythonQt::self()->registerCPPClass("QSql", "", "QtSql", PythonQtCreateObject<PythonQtWrapper_QSql>);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 PythonQt::self()->registerCPPClass("QSqlIndex", "QSqlRecord", "QtSql", PythonQtCreateObject<PythonQtWrapper_QSqlIndex>);
florianlink
recreated wrappers to match current python qt version...
r73 PythonQt::self()->registerClass(&QSqlDriver::staticMetaObject, "QtSql", PythonQtCreateObject<PythonQtWrapper_QSqlDriver>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QSqlDriver>);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 PythonQt::self()->registerClass(&QSqlQueryModel::staticMetaObject, "QtSql", PythonQtCreateObject<PythonQtWrapper_QSqlQueryModel>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QSqlQueryModel>);
PythonQt::self()->registerClass(&QSqlTableModel::staticMetaObject, "QtSql", PythonQtCreateObject<PythonQtWrapper_QSqlTableModel>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QSqlTableModel>);
PythonQt::self()->registerClass(&QSqlRelationalTableModel::staticMetaObject, "QtSql", PythonQtCreateObject<PythonQtWrapper_QSqlRelationalTableModel>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QSqlRelationalTableModel>);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13
}