##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
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());
}