##// END OF EJS Templates
- added call method that does a direct call on the ObjectType...
- added call method that does a direct call on the ObjectType - added comments and improved docs git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@72 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r36:1d1e7c03e848
Show More
PythonQtWrapper_QSqlRecord.h
49 lines | 2.3 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QSQLRECORD_H
#define PYTHONQTWRAPPER_QSQLRECORD_H
#include <qsqlrecord.h>
#include <QObject>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 #include <PythonQt.h>
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include <QSqlField>
#include <QVariant>
#include <qsqlfield.h>
#include <qsqlrecord.h>
class PythonQtWrapper_QSqlRecord : public QObject
{ Q_OBJECT
public:
public slots:
QSqlRecord* new_QSqlRecord();
QSqlRecord* new_QSqlRecord(const QSqlRecord& other);
void delete_QSqlRecord(QSqlRecord* obj) { delete obj; }
florianlink
upgraded wrappers to current generator version...
r28 bool isNull(QSqlRecord* theWrappedObject, int i) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 bool isGenerated(QSqlRecord* theWrappedObject, const QString& name) const;
void setValue(QSqlRecord* theWrappedObject, int i, const QVariant& val);
void clear(QSqlRecord* theWrappedObject);
florianlink
upgraded wrappers to current generator version...
r28 bool isGenerated(QSqlRecord* theWrappedObject, int i) const;
QSqlField field(QSqlRecord* theWrappedObject, int i) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 bool isEmpty(QSqlRecord* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 void setGenerated(QSqlRecord* theWrappedObject, int i, bool generated);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setNull(QSqlRecord* theWrappedObject, int i);
florianlink
upgraded wrappers to current generator version...
r28 void setValue(QSqlRecord* theWrappedObject, const QString& name, const QVariant& val);
void remove(QSqlRecord* theWrappedObject, int pos);
int indexOf(QSqlRecord* theWrappedObject, const QString& name) const;
void setGenerated(QSqlRecord* theWrappedObject, const QString& name, bool generated);
void replace(QSqlRecord* theWrappedObject, int pos, const QSqlField& field);
void append(QSqlRecord* theWrappedObject, const QSqlField& field);
int count(QSqlRecord* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 QVariant value(QSqlRecord* theWrappedObject, const QString& name) const;
florianlink
upgraded wrappers to current generator version...
r28 void setNull(QSqlRecord* theWrappedObject, const QString& name);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void clearValues(QSqlRecord* theWrappedObject);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 QVariant value(QSqlRecord* theWrappedObject, int i) const;
florianlink
upgraded wrappers to current generator version...
r28 bool contains(QSqlRecord* theWrappedObject, const QString& name) const;
QSqlField field(QSqlRecord* theWrappedObject, const QString& name) const;
bool operator_equal(QSqlRecord* theWrappedObject, const QSqlRecord& other) const;
void insert(QSqlRecord* theWrappedObject, int pos, const QSqlField& field);
QString fieldName(QSqlRecord* theWrappedObject, int i) const;
bool isNull(QSqlRecord* theWrappedObject, const QString& name) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QSQLRECORD_H