##// END OF EJS Templates
added methods to qt namespace...
added methods to qt namespace git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@71 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r35:b8dce620ba5c
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); }
qreal PythonQtWrapper_QFontInfo::pointSizeF(QFontInfo* theWrappedObject) const
{
return theWrappedObject->pointSizeF();
}
int PythonQtWrapper_QFontInfo::weight(QFontInfo* theWrappedObject) const
{
return theWrappedObject->weight();
}
QString PythonQtWrapper_QFontInfo::family(QFontInfo* theWrappedObject) const
{
return theWrappedObject->family();
}
bool PythonQtWrapper_QFontInfo::strikeOut(QFontInfo* theWrappedObject) const
{
return theWrappedObject->strikeOut();
}
QFont::Style PythonQtWrapper_QFontInfo::style(QFontInfo* theWrappedObject) const
{
return theWrappedObject->style();
}
bool PythonQtWrapper_QFontInfo::fixedPitch(QFontInfo* theWrappedObject) const
{
return theWrappedObject->fixedPitch();
}
bool PythonQtWrapper_QFontInfo::overline(QFontInfo* theWrappedObject) const
{
return theWrappedObject->overline();
}
bool PythonQtWrapper_QFontInfo::bold(QFontInfo* theWrappedObject) const
{
return theWrappedObject->bold();
}
bool PythonQtWrapper_QFontInfo::italic(QFontInfo* theWrappedObject) const
{
return theWrappedObject->italic();
}
QFont::StyleHint PythonQtWrapper_QFontInfo::styleHint(QFontInfo* theWrappedObject) const
{
return theWrappedObject->styleHint();
}
bool PythonQtWrapper_QFontInfo::underline(QFontInfo* theWrappedObject) const
{
return theWrappedObject->underline();
}
bool PythonQtWrapper_QFontInfo::rawMode(QFontInfo* theWrappedObject) const
{
return theWrappedObject->rawMode();
}
int PythonQtWrapper_QFontInfo::pointSize(QFontInfo* theWrappedObject) const
{
return theWrappedObject->pointSize();
}
bool PythonQtWrapper_QFontInfo::exactMatch(QFontInfo* theWrappedObject) const
{
return theWrappedObject->exactMatch();
}
int PythonQtWrapper_QFontInfo::pixelSize(QFontInfo* theWrappedObject) const
{
return theWrappedObject->pixelSize();
}