##// 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_QFontInfo.cpp
89 lines | 2.1 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QFontInfo.h"
#include <QVariant>
#include <qfont.h>
#include <qfontinfo.h>
QFontInfo* PythonQtWrapper_QFontInfo::new_QFontInfo(const QFont& arg__1)
{
return new QFontInfo(arg__1); }
QFontInfo* PythonQtWrapper_QFontInfo::new_QFontInfo(const QFontInfo& arg__1)
{
return new QFontInfo(arg__1); }
bool PythonQtWrapper_QFontInfo::bold(QFontInfo* theWrappedObject) const
{
return theWrappedObject->bold();
}
bool PythonQtWrapper_QFontInfo::exactMatch(QFontInfo* theWrappedObject) const
{
return theWrappedObject->exactMatch();
}
QString PythonQtWrapper_QFontInfo::family(QFontInfo* theWrappedObject) const
{
return theWrappedObject->family();
}
bool PythonQtWrapper_QFontInfo::fixedPitch(QFontInfo* theWrappedObject) const
{
return theWrappedObject->fixedPitch();
}
bool PythonQtWrapper_QFontInfo::italic(QFontInfo* theWrappedObject) const
{
return theWrappedObject->italic();
}
bool PythonQtWrapper_QFontInfo::overline(QFontInfo* theWrappedObject) const
{
return theWrappedObject->overline();
}
int PythonQtWrapper_QFontInfo::pixelSize(QFontInfo* theWrappedObject) const
{
return theWrappedObject->pixelSize();
}
int PythonQtWrapper_QFontInfo::pointSize(QFontInfo* theWrappedObject) const
{
return theWrappedObject->pointSize();
}
qreal PythonQtWrapper_QFontInfo::pointSizeF(QFontInfo* theWrappedObject) const
{
return theWrappedObject->pointSizeF();
}
bool PythonQtWrapper_QFontInfo::rawMode(QFontInfo* theWrappedObject) const
{
return theWrappedObject->rawMode();
}
bool PythonQtWrapper_QFontInfo::strikeOut(QFontInfo* theWrappedObject) const
{
return theWrappedObject->strikeOut();
}
QFont::Style PythonQtWrapper_QFontInfo::style(QFontInfo* theWrappedObject) const
{
return theWrappedObject->style();
}
QFont::StyleHint PythonQtWrapper_QFontInfo::styleHint(QFontInfo* theWrappedObject) const
{
return theWrappedObject->styleHint();
}
bool PythonQtWrapper_QFontInfo::underline(QFontInfo* theWrappedObject) const
{
return theWrappedObject->underline();
}
int PythonQtWrapper_QFontInfo::weight(QFontInfo* theWrappedObject) const
{
return theWrappedObject->weight();
}