##// 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_QTextImageFormat.cpp
53 lines | 1.4 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_gui / PythonQtWrapper_QTextImageFormat.cpp
#include "PythonQtWrapper_QTextImageFormat.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qbrush.h>
#include <qcolor.h>
#include <qfont.h>
#include <qpen.h>
#include <qstringlist.h>
#include <qtextformat.h>
#include <qvector.h>
QTextImageFormat* PythonQtWrapper_QTextImageFormat::new_QTextImageFormat()
{
return new PythonQtShell_QTextImageFormat(); }
qreal PythonQtWrapper_QTextImageFormat::width(QTextImageFormat* theWrappedObject) const
{
return ( theWrappedObject->width());
}
void PythonQtWrapper_QTextImageFormat::setHeight(QTextImageFormat* theWrappedObject, qreal height)
{
( theWrappedObject->setHeight(height));
}
bool PythonQtWrapper_QTextImageFormat::isValid(QTextImageFormat* theWrappedObject) const
{
return ( theWrappedObject->isValid());
}
void PythonQtWrapper_QTextImageFormat::setName(QTextImageFormat* theWrappedObject, const QString& name)
{
( theWrappedObject->setName(name));
}
void PythonQtWrapper_QTextImageFormat::setWidth(QTextImageFormat* theWrappedObject, qreal width)
{
( theWrappedObject->setWidth(width));
}
qreal PythonQtWrapper_QTextImageFormat::height(QTextImageFormat* theWrappedObject) const
{
return ( theWrappedObject->height());
}
QString PythonQtWrapper_QTextImageFormat::name(QTextImageFormat* theWrappedObject) const
{
return ( theWrappedObject->name());
}