##// END OF EJS Templates
added experimental compacting to avoid generation of hundreds of files that all include the same stuff...
added experimental compacting to avoid generation of hundreds of files that all include the same stuff git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@128 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r92:f97ec94c87a9
Show More
PythonQtWrapper_QTextItem.cpp
42 lines | 1.0 KiB | 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::descent(QTextItem* theWrappedObject) const
{
return ( theWrappedObject->descent());
}
QString PythonQtWrapper_QTextItem::text(QTextItem* theWrappedObject) const
{
return ( theWrappedObject->text());
}
QTextItem::RenderFlags PythonQtWrapper_QTextItem::renderFlags(QTextItem* theWrappedObject) const
{
return ( theWrappedObject->renderFlags());
}
QFont PythonQtWrapper_QTextItem::font(QTextItem* theWrappedObject) const
{
return ( theWrappedObject->font());
}
qreal PythonQtWrapper_QTextItem::ascent(QTextItem* theWrappedObject) const
{
return ( theWrappedObject->ascent());
}
qreal PythonQtWrapper_QTextItem::width(QTextItem* theWrappedObject) const
{
return ( theWrappedObject->width());
}