##// END OF EJS Templates
started to update/improve docs...
started to update/improve docs git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@68 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r32:ae159b178ea0
Show More
com_trolltech_qt_webkit_init.cpp
20 lines | 1.5 KiB | text/x-c | CppLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include <PythonQt.h>
#include "PythonQtWrapper_QWebHitTestResult.h"
#include "PythonQtWrapper_QWebSettings.h"
#include "PythonQtWrapper_QWebHistoryInterface.h"
florianlink
upgraded wrappers to current generator version...
r28 #include "PythonQtWrapper_QWebFrame.h"
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include "PythonQtWrapper_QWebPage.h"
florianlink
upgraded wrappers to current generator version...
r28 #include "PythonQtWrapper_QWebPluginFactory.h"
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include "PythonQtWrapper_QWebView.h"
florianlink
upgraded wrappers to current generator version...
r28
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void PythonQt_init_QtWebKit() {
PythonQt::self()->registerCPPClass("QWebHitTestResult", "", "QtWebKit", PythonQtCreateObject<PythonQtWrapper_QWebHitTestResult>);
PythonQt::self()->registerCPPClass("QWebSettings", "", "QtWebKit", PythonQtCreateObject<PythonQtWrapper_QWebSettings>);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 PythonQt::self()->registerClass(&QWebHistoryInterface::staticMetaObject, "QtWebKit", PythonQtCreateObject<PythonQtWrapper_QWebHistoryInterface>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QWebHistoryInterface>);
florianlink
upgraded wrappers to current generator version...
r28 PythonQt::self()->registerClass(&QWebFrame::staticMetaObject, "QtWebKit", PythonQtCreateObject<PythonQtWrapper_QWebFrame>);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 PythonQt::self()->registerClass(&QWebPage::staticMetaObject, "QtWebKit", PythonQtCreateObject<PythonQtWrapper_QWebPage>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QWebPage>);
florianlink
upgraded wrappers to current generator version...
r28 PythonQt::self()->registerClass(&QWebPluginFactory::staticMetaObject, "QtWebKit", PythonQtCreateObject<PythonQtWrapper_QWebPluginFactory>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QWebPluginFactory>);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 PythonQt::self()->registerClass(&QWebView::staticMetaObject, "QtWebKit", PythonQtCreateObject<PythonQtWrapper_QWebView>, PythonQtSetInstanceWrapperOnShell<PythonQtShell_QWebView>);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13
}