From b8dce620ba5cc8861b355169b34b6f31d9d258cb 2009-04-22 14:53:43 From: florianlink Date: 2009-04-22 14:53:43 Subject: [PATCH] added methods to qt namespace git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@71 ea8d5007-eb21-0410-b261-ccb3ea6e24a9 --- diff --git a/generated_cpp/com_trolltech_qt_core/PythonQtWrapper_Qt.cpp b/generated_cpp/com_trolltech_qt_core/PythonQtWrapper_Qt.cpp index 0825f01..f169756 100644 --- a/generated_cpp/com_trolltech_qt_core/PythonQtWrapper_Qt.cpp +++ b/generated_cpp/com_trolltech_qt_core/PythonQtWrapper_Qt.cpp @@ -5,4 +5,26 @@ #include #include #include +#include +#include + +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); +} diff --git a/generated_cpp/com_trolltech_qt_core/PythonQtWrapper_Qt.h b/generated_cpp/com_trolltech_qt_core/PythonQtWrapper_Qt.h index 65752e4..b26414e 100644 --- a/generated_cpp/com_trolltech_qt_core/PythonQtWrapper_Qt.h +++ b/generated_cpp/com_trolltech_qt_core/PythonQtWrapper_Qt.h @@ -8,6 +8,8 @@ #include #include +#include +#include class PythonQtWrapper_Qt : public QObject { Q_OBJECT @@ -140,6 +142,10 @@ enum ItemFlag{ enum HitTestAccuracy{ ExactHit = Qt::ExactHit, FuzzyHit = Qt::FuzzyHit}; public slots: + bool static_Qt_mightBeRichText(const QString& arg__1); + QString static_Qt_convertFromPlainText(const QString& plain, Qt::WhiteSpaceMode mode = Qt::WhiteSpacePre); + QTextCodec* static_Qt_codecForHtml(const QByteArray& ba); + QString static_Qt_escape(const QString& plain); }; #endif // PYTHONQTWRAPPER_QT_H