##// END OF EJS Templates
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well...
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@52 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r16:c68e0aff542c
Show More
PythonQtWrapper_QFontMetricsF.cpp
141 lines | 4.1 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QFontMetricsF.h"
#include <QVariant>
#include <qfont.h>
#include <qpaintdevice.h>
#include <qrect.h>
#include <qsize.h>
QFontMetricsF* PythonQtWrapper_QFontMetricsF::new_QFontMetricsF(const QFont& arg__1)
{
return new QFontMetricsF(arg__1); }
QFontMetricsF* PythonQtWrapper_QFontMetricsF::new_QFontMetricsF(const QFont& arg__1, QPaintDevice* pd)
{
return new QFontMetricsF(arg__1, pd); }
qreal PythonQtWrapper_QFontMetricsF::ascent(QFontMetricsF* theWrappedObject) const
{
return theWrappedObject->ascent();
}
qreal PythonQtWrapper_QFontMetricsF::averageCharWidth(QFontMetricsF* theWrappedObject) const
{
return theWrappedObject->averageCharWidth();
}
QRectF PythonQtWrapper_QFontMetricsF::boundingRect(QFontMetricsF* theWrappedObject, QChar arg__1) const
{
return theWrappedObject->boundingRect(arg__1);
}
QRectF PythonQtWrapper_QFontMetricsF::boundingRect(QFontMetricsF* theWrappedObject, const QRectF& r, int flags, const QString& string, int tabstops, int* tabarray) const
{
return theWrappedObject->boundingRect(r, flags, string, tabstops, tabarray);
}
QRectF PythonQtWrapper_QFontMetricsF::boundingRect(QFontMetricsF* theWrappedObject, const QString& string) const
{
return theWrappedObject->boundingRect(string);
}
qreal PythonQtWrapper_QFontMetricsF::descent(QFontMetricsF* theWrappedObject) const
{
return theWrappedObject->descent();
}
QString PythonQtWrapper_QFontMetricsF::elidedText(QFontMetricsF* theWrappedObject, const QString& text, Qt::TextElideMode mode, qreal width, int flags) const
{
return theWrappedObject->elidedText(text, mode, width, flags);
}
qreal PythonQtWrapper_QFontMetricsF::height(QFontMetricsF* theWrappedObject) const
{
return theWrappedObject->height();
}
bool PythonQtWrapper_QFontMetricsF::inFont(QFontMetricsF* theWrappedObject, QChar arg__1) const
{
return theWrappedObject->inFont(arg__1);
}
qreal PythonQtWrapper_QFontMetricsF::leading(QFontMetricsF* theWrappedObject) const
{
return theWrappedObject->leading();
}
qreal PythonQtWrapper_QFontMetricsF::leftBearing(QFontMetricsF* theWrappedObject, QChar arg__1) const
{
return theWrappedObject->leftBearing(arg__1);
}
qreal PythonQtWrapper_QFontMetricsF::lineSpacing(QFontMetricsF* theWrappedObject) const
{
return theWrappedObject->lineSpacing();
}
qreal PythonQtWrapper_QFontMetricsF::lineWidth(QFontMetricsF* theWrappedObject) const
{
return theWrappedObject->lineWidth();
}
qreal PythonQtWrapper_QFontMetricsF::maxWidth(QFontMetricsF* theWrappedObject) const
{
return theWrappedObject->maxWidth();
}
qreal PythonQtWrapper_QFontMetricsF::minLeftBearing(QFontMetricsF* theWrappedObject) const
{
return theWrappedObject->minLeftBearing();
}
qreal PythonQtWrapper_QFontMetricsF::minRightBearing(QFontMetricsF* theWrappedObject) const
{
return theWrappedObject->minRightBearing();
}
qreal PythonQtWrapper_QFontMetricsF::overlinePos(QFontMetricsF* theWrappedObject) const
{
return theWrappedObject->overlinePos();
}
qreal PythonQtWrapper_QFontMetricsF::rightBearing(QFontMetricsF* theWrappedObject, QChar arg__1) const
{
return theWrappedObject->rightBearing(arg__1);
}
QSizeF PythonQtWrapper_QFontMetricsF::size(QFontMetricsF* theWrappedObject, int flags, const QString& str, int tabstops, int* tabarray) const
{
return theWrappedObject->size(flags, str, tabstops, tabarray);
}
qreal PythonQtWrapper_QFontMetricsF::strikeOutPos(QFontMetricsF* theWrappedObject) const
{
return theWrappedObject->strikeOutPos();
}
QRectF PythonQtWrapper_QFontMetricsF::tightBoundingRect(QFontMetricsF* theWrappedObject, const QString& text) const
{
return theWrappedObject->tightBoundingRect(text);
}
qreal PythonQtWrapper_QFontMetricsF::underlinePos(QFontMetricsF* theWrappedObject) const
{
return theWrappedObject->underlinePos();
}
qreal PythonQtWrapper_QFontMetricsF::width(QFontMetricsF* theWrappedObject, QChar arg__1) const
{
return theWrappedObject->width(arg__1);
}
qreal PythonQtWrapper_QFontMetricsF::width(QFontMetricsF* theWrappedObject, const QString& string) const
{
return theWrappedObject->width(string);
}
qreal PythonQtWrapper_QFontMetricsF::xHeight(QFontMetricsF* theWrappedObject) const
{
return theWrappedObject->xHeight();
}