##// END OF EJS Templates
started to update/improve docs...
started to update/improve docs git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@68 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r32:ae159b178ea0
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();
}