##// 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_QSqlField.h
52 lines | 2.3 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QSQLFIELD_H
#define PYTHONQTWRAPPER_QSQLFIELD_H
#include <qsqlfield.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 <QVariant>
#include <qsqlfield.h>
class PythonQtWrapper_QSqlField : public QObject
{ Q_OBJECT
public:
Q_ENUMS(RequiredStatus )
enum RequiredStatus{
Unknown = QSqlField::Unknown, Optional = QSqlField::Optional, Required = QSqlField::Required};
public slots:
QSqlField* new_QSqlField(const QSqlField& other);
QSqlField* new_QSqlField(const QString& fieldName = QString(), QVariant::Type type = QVariant::Invalid);
void delete_QSqlField(QSqlField* obj) { delete obj; }
florianlink
recreated wrappers to match current python qt version...
r73 bool isGenerated(QSqlField* theWrappedObject) const;
bool isValid(QSqlField* theWrappedObject) const;
int length(QSqlField* theWrappedObject) const;
bool operator_equal(QSqlField* theWrappedObject, const QSqlField& other) const;
void setReadOnly(QSqlField* theWrappedObject, bool readOnly);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void clear(QSqlField* theWrappedObject);
florianlink
recreated wrappers to match current python qt version...
r73 void setAutoValue(QSqlField* theWrappedObject, bool autoVal);
int precision(QSqlField* theWrappedObject) const;
void setGenerated(QSqlField* theWrappedObject, bool gen);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setType(QSqlField* theWrappedObject, QVariant::Type type);
florianlink
recreated wrappers to match current python qt version...
r73 bool isReadOnly(QSqlField* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QVariant value(QSqlField* theWrappedObject) const;
bool isNull(QSqlField* theWrappedObject) const;
QVariant::Type type(QSqlField* theWrappedObject) const;
void setRequired(QSqlField* theWrappedObject, bool required);
int typeID(QSqlField* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 QString name(QSqlField* theWrappedObject) const;
QSqlField::RequiredStatus requiredStatus(QSqlField* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 bool isAutoValue(QSqlField* theWrappedObject) const;
void setPrecision(QSqlField* theWrappedObject, int precision);
void setValue(QSqlField* theWrappedObject, const QVariant& value);
QVariant defaultValue(QSqlField* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 void setName(QSqlField* theWrappedObject, const QString& name);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void setDefaultValue(QSqlField* theWrappedObject, const QVariant& value);
void setLength(QSqlField* theWrappedObject, int fieldLength);
florianlink
recreated wrappers to match current python qt version...
r73 void setRequiredStatus(QSqlField* theWrappedObject, QSqlField::RequiredStatus status);
void setSqlType(QSqlField* theWrappedObject, int type);
QString toString(QSqlField*);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QSQLFIELD_H