##// 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:

r35:b8dce620ba5c
r35:b8dce620ba5c
Show More
PythonQtWrapper_Qt.cpp
30 lines | 725 B | text/x-c | CppLexer
#include "PythonQtWrapper_Qt.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QTextDocument>
#include <QVariant>
#include <qbytearray.h>
#include <qtextcodec.h>
bool PythonQtWrapper_Qt::static_Qt_mightBeRichText(const QString& arg__1)
{
return Qt::mightBeRichText(arg__1);
}
QString PythonQtWrapper_Qt::static_Qt_convertFromPlainText(const QString& plain, Qt::WhiteSpaceMode mode)
{
return Qt::convertFromPlainText(plain, mode);
}
QTextCodec* PythonQtWrapper_Qt::static_Qt_codecForHtml(const QByteArray& ba)
{
return Qt::codecForHtml(ba);
}
QString PythonQtWrapper_Qt::static_Qt_escape(const QString& plain)
{
return Qt::escape(plain);
}