##// 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_QTextItem.cpp
42 lines | 1001 B | text/x-c | CppLexer
#include "PythonQtWrapper_QTextItem.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qfont.h>
QTextItem* PythonQtWrapper_QTextItem::new_QTextItem()
{
return new PythonQtShell_QTextItem(); }
qreal PythonQtWrapper_QTextItem::ascent(QTextItem* theWrappedObject) const
{
return theWrappedObject->ascent();
}
qreal PythonQtWrapper_QTextItem::descent(QTextItem* theWrappedObject) const
{
return theWrappedObject->descent();
}
qreal PythonQtWrapper_QTextItem::width(QTextItem* theWrappedObject) const
{
return theWrappedObject->width();
}
QString PythonQtWrapper_QTextItem::text(QTextItem* theWrappedObject) const
{
return theWrappedObject->text();
}
QFont PythonQtWrapper_QTextItem::font(QTextItem* theWrappedObject) const
{
return theWrappedObject->font();
}
QTextItem::RenderFlags PythonQtWrapper_QTextItem::renderFlags(QTextItem* theWrappedObject) const
{
return theWrappedObject->renderFlags();
}