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