##// END OF EJS Templates
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes...
improved so that dict contains properties and that dir() shows all available things, including the derived base attributes git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@70 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r34:5daedfb035c8
Show More
PythonQtWrapper_QTextInlineObject.cpp
78 lines | 2.1 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_gui / PythonQtWrapper_QTextInlineObject.cpp
#include "PythonQtWrapper_QTextInlineObject.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qrect.h>
#include <qtextformat.h>
QTextInlineObject* PythonQtWrapper_QTextInlineObject::new_QTextInlineObject()
{
return new QTextInlineObject(); }
bool PythonQtWrapper_QTextInlineObject::isValid(QTextInlineObject* theWrappedObject) const
{
return theWrappedObject->isValid();
}
qreal PythonQtWrapper_QTextInlineObject::ascent(QTextInlineObject* theWrappedObject) const
{
return theWrappedObject->ascent();
}
void PythonQtWrapper_QTextInlineObject::setAscent(QTextInlineObject* theWrappedObject, qreal a)
{
theWrappedObject->setAscent(a);
}
Qt::LayoutDirection PythonQtWrapper_QTextInlineObject::textDirection(QTextInlineObject* theWrappedObject) const
{
return theWrappedObject->textDirection();
}
int PythonQtWrapper_QTextInlineObject::formatIndex(QTextInlineObject* theWrappedObject) const
{
return theWrappedObject->formatIndex();
}
void PythonQtWrapper_QTextInlineObject::setDescent(QTextInlineObject* theWrappedObject, qreal d)
{
theWrappedObject->setDescent(d);
}
qreal PythonQtWrapper_QTextInlineObject::width(QTextInlineObject* theWrappedObject) const
{
return theWrappedObject->width();
}
qreal PythonQtWrapper_QTextInlineObject::descent(QTextInlineObject* theWrappedObject) const
{
return theWrappedObject->descent();
}
QTextFormat PythonQtWrapper_QTextInlineObject::format(QTextInlineObject* theWrappedObject) const
{
return theWrappedObject->format();
}
qreal PythonQtWrapper_QTextInlineObject::height(QTextInlineObject* theWrappedObject) const
{
return theWrappedObject->height();
}
void PythonQtWrapper_QTextInlineObject::setWidth(QTextInlineObject* theWrappedObject, qreal w)
{
theWrappedObject->setWidth(w);
}
int PythonQtWrapper_QTextInlineObject::textPosition(QTextInlineObject* theWrappedObject) const
{
return theWrappedObject->textPosition();
}
QRectF PythonQtWrapper_QTextInlineObject::rect(QTextInlineObject* theWrappedObject) const
{
return theWrappedObject->rect();
}