##// END OF EJS Templates
added PyLauncher example...
added PyLauncher example added hadError() to scripting console added addSysPath() git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@50 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r14:59f352c6d9fb
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();
}