##// END OF EJS Templates
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well...
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@52 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r16:c68e0aff542c
Show More
PythonQtWrapper_QSqlField.cpp
148 lines | 3.7 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QSqlField.h"
#include <QVariant>
#include <qsqlfield.h>
QSqlField* PythonQtWrapper_QSqlField::new_QSqlField(const QSqlField& other)
{
return new QSqlField(other); }
QSqlField* PythonQtWrapper_QSqlField::new_QSqlField(const QString& fieldName, QVariant::Type type)
{
return new QSqlField(fieldName, type); }
void PythonQtWrapper_QSqlField::clear(QSqlField* theWrappedObject)
{
theWrappedObject->clear();
}
QVariant PythonQtWrapper_QSqlField::defaultValue(QSqlField* theWrappedObject) const
{
return theWrappedObject->defaultValue();
}
bool PythonQtWrapper_QSqlField::isAutoValue(QSqlField* theWrappedObject) const
{
return theWrappedObject->isAutoValue();
}
bool PythonQtWrapper_QSqlField::isGenerated(QSqlField* theWrappedObject) const
{
return theWrappedObject->isGenerated();
}
bool PythonQtWrapper_QSqlField::isNull(QSqlField* theWrappedObject) const
{
return theWrappedObject->isNull();
}
bool PythonQtWrapper_QSqlField::isReadOnly(QSqlField* theWrappedObject) const
{
return theWrappedObject->isReadOnly();
}
bool PythonQtWrapper_QSqlField::isValid(QSqlField* theWrappedObject) const
{
return theWrappedObject->isValid();
}
int PythonQtWrapper_QSqlField::length(QSqlField* theWrappedObject) const
{
return theWrappedObject->length();
}
QString PythonQtWrapper_QSqlField::name(QSqlField* theWrappedObject) const
{
return theWrappedObject->name();
}
bool PythonQtWrapper_QSqlField::operator_equal(QSqlField* theWrappedObject, const QSqlField& other) const
{
return *theWrappedObject == other;
}
int PythonQtWrapper_QSqlField::precision(QSqlField* theWrappedObject) const
{
return theWrappedObject->precision();
}
QSqlField::RequiredStatus PythonQtWrapper_QSqlField::requiredStatus(QSqlField* theWrappedObject) const
{
return theWrappedObject->requiredStatus();
}
void PythonQtWrapper_QSqlField::setAutoValue(QSqlField* theWrappedObject, bool autoVal)
{
theWrappedObject->setAutoValue(autoVal);
}
void PythonQtWrapper_QSqlField::setDefaultValue(QSqlField* theWrappedObject, const QVariant& value)
{
theWrappedObject->setDefaultValue(value);
}
void PythonQtWrapper_QSqlField::setGenerated(QSqlField* theWrappedObject, bool gen)
{
theWrappedObject->setGenerated(gen);
}
void PythonQtWrapper_QSqlField::setLength(QSqlField* theWrappedObject, int fieldLength)
{
theWrappedObject->setLength(fieldLength);
}
void PythonQtWrapper_QSqlField::setName(QSqlField* theWrappedObject, const QString& name)
{
theWrappedObject->setName(name);
}
void PythonQtWrapper_QSqlField::setPrecision(QSqlField* theWrappedObject, int precision)
{
theWrappedObject->setPrecision(precision);
}
void PythonQtWrapper_QSqlField::setReadOnly(QSqlField* theWrappedObject, bool readOnly)
{
theWrappedObject->setReadOnly(readOnly);
}
void PythonQtWrapper_QSqlField::setRequired(QSqlField* theWrappedObject, bool required)
{
theWrappedObject->setRequired(required);
}
void PythonQtWrapper_QSqlField::setRequiredStatus(QSqlField* theWrappedObject, QSqlField::RequiredStatus status)
{
theWrappedObject->setRequiredStatus(status);
}
void PythonQtWrapper_QSqlField::setSqlType(QSqlField* theWrappedObject, int type)
{
theWrappedObject->setSqlType(type);
}
void PythonQtWrapper_QSqlField::setType(QSqlField* theWrappedObject, QVariant::Type type)
{
theWrappedObject->setType(type);
}
void PythonQtWrapper_QSqlField::setValue(QSqlField* theWrappedObject, const QVariant& value)
{
theWrappedObject->setValue(value);
}
QVariant::Type PythonQtWrapper_QSqlField::type(QSqlField* theWrappedObject) const
{
return theWrappedObject->type();
}
int PythonQtWrapper_QSqlField::typeID(QSqlField* theWrappedObject) const
{
return theWrappedObject->typeID();
}
QVariant PythonQtWrapper_QSqlField::value(QSqlField* theWrappedObject) const
{
return theWrappedObject->value();
}