// +build !minimal #define protected public #define private public #include "webengine.h" #include "_cgo_export.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include class MyQQuickWebEngineProfile: public QQuickWebEngineProfile { public: MyQQuickWebEngineProfile(QObject *parent) : QQuickWebEngineProfile(parent) {}; void Signal_CachePathChanged() { callbackQQuickWebEngineProfile_CachePathChanged(this, this->objectName().toUtf8().data()); }; void Signal_HttpAcceptLanguageChanged() { callbackQQuickWebEngineProfile_HttpAcceptLanguageChanged(this, this->objectName().toUtf8().data()); }; void Signal_HttpCacheMaximumSizeChanged() { callbackQQuickWebEngineProfile_HttpCacheMaximumSizeChanged(this, this->objectName().toUtf8().data()); }; void Signal_HttpCacheTypeChanged() { callbackQQuickWebEngineProfile_HttpCacheTypeChanged(this, this->objectName().toUtf8().data()); }; void Signal_HttpUserAgentChanged() { callbackQQuickWebEngineProfile_HttpUserAgentChanged(this, this->objectName().toUtf8().data()); }; void Signal_OffTheRecordChanged() { callbackQQuickWebEngineProfile_OffTheRecordChanged(this, this->objectName().toUtf8().data()); }; void Signal_PersistentCookiesPolicyChanged() { callbackQQuickWebEngineProfile_PersistentCookiesPolicyChanged(this, this->objectName().toUtf8().data()); }; void Signal_PersistentStoragePathChanged() { callbackQQuickWebEngineProfile_PersistentStoragePathChanged(this, this->objectName().toUtf8().data()); }; void Signal_StorageNameChanged() { callbackQQuickWebEngineProfile_StorageNameChanged(this, this->objectName().toUtf8().data()); }; void timerEvent(QTimerEvent * event) { callbackQQuickWebEngineProfile_TimerEvent(this, this->objectName().toUtf8().data(), event); }; void childEvent(QChildEvent * event) { callbackQQuickWebEngineProfile_ChildEvent(this, this->objectName().toUtf8().data(), event); }; void connectNotify(const QMetaMethod & sign) { callbackQQuickWebEngineProfile_ConnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; void customEvent(QEvent * event) { callbackQQuickWebEngineProfile_CustomEvent(this, this->objectName().toUtf8().data(), event); }; void deleteLater() { callbackQQuickWebEngineProfile_DeleteLater(this, this->objectName().toUtf8().data()); }; void disconnectNotify(const QMetaMethod & sign) { callbackQQuickWebEngineProfile_DisconnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; bool event(QEvent * e) { return callbackQQuickWebEngineProfile_Event(this, this->objectName().toUtf8().data(), e) != 0; }; bool eventFilter(QObject * watched, QEvent * event) { return callbackQQuickWebEngineProfile_EventFilter(this, this->objectName().toUtf8().data(), watched, event) != 0; }; const QMetaObject * metaObject() const { return static_cast(callbackQQuickWebEngineProfile_MetaObject(const_cast(this), this->objectName().toUtf8().data())); }; }; char* QQuickWebEngineProfile_CachePath(void* ptr) { return static_cast(ptr)->cachePath().toUtf8().data(); } char* QQuickWebEngineProfile_HttpAcceptLanguage(void* ptr) { return static_cast(ptr)->httpAcceptLanguage().toUtf8().data(); } int QQuickWebEngineProfile_HttpCacheMaximumSize(void* ptr) { return static_cast(ptr)->httpCacheMaximumSize(); } int QQuickWebEngineProfile_HttpCacheType(void* ptr) { return static_cast(ptr)->httpCacheType(); } char* QQuickWebEngineProfile_HttpUserAgent(void* ptr) { return static_cast(ptr)->httpUserAgent().toUtf8().data(); } int QQuickWebEngineProfile_IsOffTheRecord(void* ptr) { return static_cast(ptr)->isOffTheRecord(); } int QQuickWebEngineProfile_PersistentCookiesPolicy(void* ptr) { return static_cast(ptr)->persistentCookiesPolicy(); } char* QQuickWebEngineProfile_PersistentStoragePath(void* ptr) { return static_cast(ptr)->persistentStoragePath().toUtf8().data(); } void QQuickWebEngineProfile_SetCachePath(void* ptr, char* path) { static_cast(ptr)->setCachePath(QString(path)); } void QQuickWebEngineProfile_SetHttpAcceptLanguage(void* ptr, char* httpAcceptLanguage) { static_cast(ptr)->setHttpAcceptLanguage(QString(httpAcceptLanguage)); } void QQuickWebEngineProfile_SetHttpCacheMaximumSize(void* ptr, int maxSize) { static_cast(ptr)->setHttpCacheMaximumSize(maxSize); } void QQuickWebEngineProfile_SetHttpCacheType(void* ptr, int vqq) { static_cast(ptr)->setHttpCacheType(static_cast(vqq)); } void QQuickWebEngineProfile_SetHttpUserAgent(void* ptr, char* userAgent) { static_cast(ptr)->setHttpUserAgent(QString(userAgent)); } void QQuickWebEngineProfile_SetOffTheRecord(void* ptr, int offTheRecord) { static_cast(ptr)->setOffTheRecord(offTheRecord != 0); } void QQuickWebEngineProfile_SetPersistentCookiesPolicy(void* ptr, int vqq) { static_cast(ptr)->setPersistentCookiesPolicy(static_cast(vqq)); } void QQuickWebEngineProfile_SetPersistentStoragePath(void* ptr, char* path) { static_cast(ptr)->setPersistentStoragePath(QString(path)); } void QQuickWebEngineProfile_SetStorageName(void* ptr, char* name) { static_cast(ptr)->setStorageName(QString(name)); } char* QQuickWebEngineProfile_StorageName(void* ptr) { return static_cast(ptr)->storageName().toUtf8().data(); } void* QQuickWebEngineProfile_NewQQuickWebEngineProfile(void* parent) { return new MyQQuickWebEngineProfile(static_cast(parent)); } void QQuickWebEngineProfile_ConnectCachePathChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::cachePathChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_CachePathChanged)); } void QQuickWebEngineProfile_DisconnectCachePathChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::cachePathChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_CachePathChanged)); } void QQuickWebEngineProfile_CachePathChanged(void* ptr) { static_cast(ptr)->cachePathChanged(); } void QQuickWebEngineProfile_ClearHttpCache(void* ptr) { static_cast(ptr)->clearHttpCache(); } void* QQuickWebEngineProfile_CookieStore(void* ptr) { return static_cast(ptr)->cookieStore(); } void* QQuickWebEngineProfile_QQuickWebEngineProfile_DefaultProfile() { return QQuickWebEngineProfile::defaultProfile(); } void QQuickWebEngineProfile_ConnectHttpAcceptLanguageChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::httpAcceptLanguageChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_HttpAcceptLanguageChanged)); } void QQuickWebEngineProfile_DisconnectHttpAcceptLanguageChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::httpAcceptLanguageChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_HttpAcceptLanguageChanged)); } void QQuickWebEngineProfile_HttpAcceptLanguageChanged(void* ptr) { static_cast(ptr)->httpAcceptLanguageChanged(); } void QQuickWebEngineProfile_ConnectHttpCacheMaximumSizeChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::httpCacheMaximumSizeChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_HttpCacheMaximumSizeChanged)); } void QQuickWebEngineProfile_DisconnectHttpCacheMaximumSizeChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::httpCacheMaximumSizeChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_HttpCacheMaximumSizeChanged)); } void QQuickWebEngineProfile_HttpCacheMaximumSizeChanged(void* ptr) { static_cast(ptr)->httpCacheMaximumSizeChanged(); } void QQuickWebEngineProfile_ConnectHttpCacheTypeChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::httpCacheTypeChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_HttpCacheTypeChanged)); } void QQuickWebEngineProfile_DisconnectHttpCacheTypeChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::httpCacheTypeChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_HttpCacheTypeChanged)); } void QQuickWebEngineProfile_HttpCacheTypeChanged(void* ptr) { static_cast(ptr)->httpCacheTypeChanged(); } void QQuickWebEngineProfile_ConnectHttpUserAgentChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::httpUserAgentChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_HttpUserAgentChanged)); } void QQuickWebEngineProfile_DisconnectHttpUserAgentChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::httpUserAgentChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_HttpUserAgentChanged)); } void QQuickWebEngineProfile_HttpUserAgentChanged(void* ptr) { static_cast(ptr)->httpUserAgentChanged(); } void QQuickWebEngineProfile_InstallUrlSchemeHandler(void* ptr, char* scheme, void* handler) { static_cast(ptr)->installUrlSchemeHandler(QByteArray(scheme), static_cast(handler)); } void QQuickWebEngineProfile_ConnectOffTheRecordChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::offTheRecordChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_OffTheRecordChanged)); } void QQuickWebEngineProfile_DisconnectOffTheRecordChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::offTheRecordChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_OffTheRecordChanged)); } void QQuickWebEngineProfile_OffTheRecordChanged(void* ptr) { static_cast(ptr)->offTheRecordChanged(); } void QQuickWebEngineProfile_ConnectPersistentCookiesPolicyChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::persistentCookiesPolicyChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_PersistentCookiesPolicyChanged)); } void QQuickWebEngineProfile_DisconnectPersistentCookiesPolicyChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::persistentCookiesPolicyChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_PersistentCookiesPolicyChanged)); } void QQuickWebEngineProfile_PersistentCookiesPolicyChanged(void* ptr) { static_cast(ptr)->persistentCookiesPolicyChanged(); } void QQuickWebEngineProfile_ConnectPersistentStoragePathChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::persistentStoragePathChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_PersistentStoragePathChanged)); } void QQuickWebEngineProfile_DisconnectPersistentStoragePathChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::persistentStoragePathChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_PersistentStoragePathChanged)); } void QQuickWebEngineProfile_PersistentStoragePathChanged(void* ptr) { static_cast(ptr)->persistentStoragePathChanged(); } void QQuickWebEngineProfile_RemoveAllUrlSchemeHandlers(void* ptr) { static_cast(ptr)->removeAllUrlSchemeHandlers(); } void QQuickWebEngineProfile_RemoveUrlScheme(void* ptr, char* scheme) { static_cast(ptr)->removeUrlScheme(QByteArray(scheme)); } void QQuickWebEngineProfile_RemoveUrlSchemeHandler(void* ptr, void* handler) { static_cast(ptr)->removeUrlSchemeHandler(static_cast(handler)); } void QQuickWebEngineProfile_SetRequestInterceptor(void* ptr, void* interceptor) { static_cast(ptr)->setRequestInterceptor(static_cast(interceptor)); } void QQuickWebEngineProfile_ConnectStorageNameChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::storageNameChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_StorageNameChanged)); } void QQuickWebEngineProfile_DisconnectStorageNameChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QQuickWebEngineProfile::storageNameChanged), static_cast(ptr), static_cast(&MyQQuickWebEngineProfile::Signal_StorageNameChanged)); } void QQuickWebEngineProfile_StorageNameChanged(void* ptr) { static_cast(ptr)->storageNameChanged(); } void* QQuickWebEngineProfile_UrlSchemeHandler(void* ptr, char* scheme) { return const_cast(static_cast(ptr)->urlSchemeHandler(QByteArray(scheme))); } void QQuickWebEngineProfile_TimerEvent(void* ptr, void* event) { static_cast(ptr)->timerEvent(static_cast(event)); } void QQuickWebEngineProfile_TimerEventDefault(void* ptr, void* event) { static_cast(ptr)->QQuickWebEngineProfile::timerEvent(static_cast(event)); } void QQuickWebEngineProfile_ChildEvent(void* ptr, void* event) { static_cast(ptr)->childEvent(static_cast(event)); } void QQuickWebEngineProfile_ChildEventDefault(void* ptr, void* event) { static_cast(ptr)->QQuickWebEngineProfile::childEvent(static_cast(event)); } void QQuickWebEngineProfile_ConnectNotify(void* ptr, void* sign) { static_cast(ptr)->connectNotify(*static_cast(sign)); } void QQuickWebEngineProfile_ConnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QQuickWebEngineProfile::connectNotify(*static_cast(sign)); } void QQuickWebEngineProfile_CustomEvent(void* ptr, void* event) { static_cast(ptr)->customEvent(static_cast(event)); } void QQuickWebEngineProfile_CustomEventDefault(void* ptr, void* event) { static_cast(ptr)->QQuickWebEngineProfile::customEvent(static_cast(event)); } void QQuickWebEngineProfile_DeleteLater(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "deleteLater"); } void QQuickWebEngineProfile_DeleteLaterDefault(void* ptr) { static_cast(ptr)->QQuickWebEngineProfile::deleteLater(); } void QQuickWebEngineProfile_DisconnectNotify(void* ptr, void* sign) { static_cast(ptr)->disconnectNotify(*static_cast(sign)); } void QQuickWebEngineProfile_DisconnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QQuickWebEngineProfile::disconnectNotify(*static_cast(sign)); } int QQuickWebEngineProfile_Event(void* ptr, void* e) { return static_cast(ptr)->event(static_cast(e)); } int QQuickWebEngineProfile_EventDefault(void* ptr, void* e) { return static_cast(ptr)->QQuickWebEngineProfile::event(static_cast(e)); } int QQuickWebEngineProfile_EventFilter(void* ptr, void* watched, void* event) { return static_cast(ptr)->eventFilter(static_cast(watched), static_cast(event)); } int QQuickWebEngineProfile_EventFilterDefault(void* ptr, void* watched, void* event) { return static_cast(ptr)->QQuickWebEngineProfile::eventFilter(static_cast(watched), static_cast(event)); } void* QQuickWebEngineProfile_MetaObject(void* ptr) { return const_cast(static_cast(ptr)->metaObject()); } void* QQuickWebEngineProfile_MetaObjectDefault(void* ptr) { return const_cast(static_cast(ptr)->QQuickWebEngineProfile::metaObject()); } int QWebEngineCertificateError_Error(void* ptr) { return static_cast(ptr)->error(); } char* QWebEngineCertificateError_ErrorDescription(void* ptr) { return static_cast(ptr)->errorDescription().toUtf8().data(); } int QWebEngineCertificateError_IsOverridable(void* ptr) { return static_cast(ptr)->isOverridable(); } void* QWebEngineCertificateError_Url(void* ptr) { return new QUrl(static_cast(ptr)->url()); } void* QWebEngineContextMenuData_NewQWebEngineContextMenuData() { return new QWebEngineContextMenuData(); } void* QWebEngineContextMenuData_NewQWebEngineContextMenuData2(void* other) { return new QWebEngineContextMenuData(*static_cast(other)); } int QWebEngineContextMenuData_IsContentEditable(void* ptr) { return static_cast(ptr)->isContentEditable(); } int QWebEngineContextMenuData_IsValid(void* ptr) { return static_cast(ptr)->isValid(); } char* QWebEngineContextMenuData_LinkText(void* ptr) { return static_cast(ptr)->linkText().toUtf8().data(); } void* QWebEngineContextMenuData_LinkUrl(void* ptr) { return new QUrl(static_cast(ptr)->linkUrl()); } int QWebEngineContextMenuData_MediaType(void* ptr) { return static_cast(ptr)->mediaType(); } void* QWebEngineContextMenuData_MediaUrl(void* ptr) { return new QUrl(static_cast(ptr)->mediaUrl()); } void* QWebEngineContextMenuData_Position(void* ptr) { return new QPoint(static_cast(static_cast(ptr)->position()).x(), static_cast(static_cast(ptr)->position()).y()); } char* QWebEngineContextMenuData_SelectedText(void* ptr) { return static_cast(ptr)->selectedText().toUtf8().data(); } void QWebEngineContextMenuData_DestroyQWebEngineContextMenuData(void* ptr) { static_cast(ptr)->~QWebEngineContextMenuData(); } class MyQWebEngineCookieStore: public QWebEngineCookieStore { public: void Signal_CookieAdded(const QNetworkCookie & cookie) { callbackQWebEngineCookieStore_CookieAdded(this, this->objectName().toUtf8().data(), new QNetworkCookie(cookie)); }; void Signal_CookieRemoved(const QNetworkCookie & cookie) { callbackQWebEngineCookieStore_CookieRemoved(this, this->objectName().toUtf8().data(), new QNetworkCookie(cookie)); }; void timerEvent(QTimerEvent * event) { callbackQWebEngineCookieStore_TimerEvent(this, this->objectName().toUtf8().data(), event); }; void childEvent(QChildEvent * event) { callbackQWebEngineCookieStore_ChildEvent(this, this->objectName().toUtf8().data(), event); }; void connectNotify(const QMetaMethod & sign) { callbackQWebEngineCookieStore_ConnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; void customEvent(QEvent * event) { callbackQWebEngineCookieStore_CustomEvent(this, this->objectName().toUtf8().data(), event); }; void deleteLater() { callbackQWebEngineCookieStore_DeleteLater(this, this->objectName().toUtf8().data()); }; void disconnectNotify(const QMetaMethod & sign) { callbackQWebEngineCookieStore_DisconnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; bool event(QEvent * e) { return callbackQWebEngineCookieStore_Event(this, this->objectName().toUtf8().data(), e) != 0; }; bool eventFilter(QObject * watched, QEvent * event) { return callbackQWebEngineCookieStore_EventFilter(this, this->objectName().toUtf8().data(), watched, event) != 0; }; const QMetaObject * metaObject() const { return static_cast(callbackQWebEngineCookieStore_MetaObject(const_cast(this), this->objectName().toUtf8().data())); }; }; void QWebEngineCookieStore_ConnectCookieAdded(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEngineCookieStore::cookieAdded), static_cast(ptr), static_cast(&MyQWebEngineCookieStore::Signal_CookieAdded)); } void QWebEngineCookieStore_DisconnectCookieAdded(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEngineCookieStore::cookieAdded), static_cast(ptr), static_cast(&MyQWebEngineCookieStore::Signal_CookieAdded)); } void QWebEngineCookieStore_CookieAdded(void* ptr, void* cookie) { static_cast(ptr)->cookieAdded(*static_cast(cookie)); } void QWebEngineCookieStore_ConnectCookieRemoved(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEngineCookieStore::cookieRemoved), static_cast(ptr), static_cast(&MyQWebEngineCookieStore::Signal_CookieRemoved)); } void QWebEngineCookieStore_DisconnectCookieRemoved(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEngineCookieStore::cookieRemoved), static_cast(ptr), static_cast(&MyQWebEngineCookieStore::Signal_CookieRemoved)); } void QWebEngineCookieStore_CookieRemoved(void* ptr, void* cookie) { static_cast(ptr)->cookieRemoved(*static_cast(cookie)); } void QWebEngineCookieStore_DeleteAllCookies(void* ptr) { static_cast(ptr)->deleteAllCookies(); } void QWebEngineCookieStore_DeleteCookie(void* ptr, void* cookie, void* origin) { static_cast(ptr)->deleteCookie(*static_cast(cookie), *static_cast(origin)); } void QWebEngineCookieStore_DeleteSessionCookies(void* ptr) { static_cast(ptr)->deleteSessionCookies(); } void QWebEngineCookieStore_LoadAllCookies(void* ptr) { static_cast(ptr)->loadAllCookies(); } void QWebEngineCookieStore_SetCookie(void* ptr, void* cookie, void* origin) { static_cast(ptr)->setCookie(*static_cast(cookie), *static_cast(origin)); } void QWebEngineCookieStore_DestroyQWebEngineCookieStore(void* ptr) { static_cast(ptr)->~QWebEngineCookieStore(); } void QWebEngineCookieStore_TimerEvent(void* ptr, void* event) { static_cast(ptr)->timerEvent(static_cast(event)); } void QWebEngineCookieStore_TimerEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineCookieStore::timerEvent(static_cast(event)); } void QWebEngineCookieStore_ChildEvent(void* ptr, void* event) { static_cast(ptr)->childEvent(static_cast(event)); } void QWebEngineCookieStore_ChildEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineCookieStore::childEvent(static_cast(event)); } void QWebEngineCookieStore_ConnectNotify(void* ptr, void* sign) { static_cast(ptr)->connectNotify(*static_cast(sign)); } void QWebEngineCookieStore_ConnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEngineCookieStore::connectNotify(*static_cast(sign)); } void QWebEngineCookieStore_CustomEvent(void* ptr, void* event) { static_cast(ptr)->customEvent(static_cast(event)); } void QWebEngineCookieStore_CustomEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineCookieStore::customEvent(static_cast(event)); } void QWebEngineCookieStore_DeleteLater(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "deleteLater"); } void QWebEngineCookieStore_DeleteLaterDefault(void* ptr) { static_cast(ptr)->QWebEngineCookieStore::deleteLater(); } void QWebEngineCookieStore_DisconnectNotify(void* ptr, void* sign) { static_cast(ptr)->disconnectNotify(*static_cast(sign)); } void QWebEngineCookieStore_DisconnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEngineCookieStore::disconnectNotify(*static_cast(sign)); } int QWebEngineCookieStore_Event(void* ptr, void* e) { return static_cast(ptr)->event(static_cast(e)); } int QWebEngineCookieStore_EventDefault(void* ptr, void* e) { return static_cast(ptr)->QWebEngineCookieStore::event(static_cast(e)); } int QWebEngineCookieStore_EventFilter(void* ptr, void* watched, void* event) { return static_cast(ptr)->eventFilter(static_cast(watched), static_cast(event)); } int QWebEngineCookieStore_EventFilterDefault(void* ptr, void* watched, void* event) { return static_cast(ptr)->QWebEngineCookieStore::eventFilter(static_cast(watched), static_cast(event)); } void* QWebEngineCookieStore_MetaObject(void* ptr) { return const_cast(static_cast(ptr)->metaObject()); } void* QWebEngineCookieStore_MetaObjectDefault(void* ptr) { return const_cast(static_cast(ptr)->QWebEngineCookieStore::metaObject()); } class MyQWebEngineDownloadItem: public QWebEngineDownloadItem { public: void accept() { callbackQWebEngineDownloadItem_Accept(this, this->objectName().toUtf8().data()); }; void cancel() { callbackQWebEngineDownloadItem_Cancel(this, this->objectName().toUtf8().data()); }; void Signal_DownloadProgress(qint64 bytesReceived, qint64 bytesTotal) { callbackQWebEngineDownloadItem_DownloadProgress(this, this->objectName().toUtf8().data(), static_cast(bytesReceived), static_cast(bytesTotal)); }; void Signal_Finished() { callbackQWebEngineDownloadItem_Finished(this, this->objectName().toUtf8().data()); }; void Signal_StateChanged(QWebEngineDownloadItem::DownloadState state) { callbackQWebEngineDownloadItem_StateChanged(this, this->objectName().toUtf8().data(), state); }; void timerEvent(QTimerEvent * event) { callbackQWebEngineDownloadItem_TimerEvent(this, this->objectName().toUtf8().data(), event); }; void childEvent(QChildEvent * event) { callbackQWebEngineDownloadItem_ChildEvent(this, this->objectName().toUtf8().data(), event); }; void connectNotify(const QMetaMethod & sign) { callbackQWebEngineDownloadItem_ConnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; void customEvent(QEvent * event) { callbackQWebEngineDownloadItem_CustomEvent(this, this->objectName().toUtf8().data(), event); }; void deleteLater() { callbackQWebEngineDownloadItem_DeleteLater(this, this->objectName().toUtf8().data()); }; void disconnectNotify(const QMetaMethod & sign) { callbackQWebEngineDownloadItem_DisconnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; bool event(QEvent * e) { return callbackQWebEngineDownloadItem_Event(this, this->objectName().toUtf8().data(), e) != 0; }; bool eventFilter(QObject * watched, QEvent * event) { return callbackQWebEngineDownloadItem_EventFilter(this, this->objectName().toUtf8().data(), watched, event) != 0; }; const QMetaObject * metaObject() const { return static_cast(callbackQWebEngineDownloadItem_MetaObject(const_cast(this), this->objectName().toUtf8().data())); }; }; void QWebEngineDownloadItem_Accept(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "accept"); } void QWebEngineDownloadItem_Cancel(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "cancel"); } void QWebEngineDownloadItem_ConnectDownloadProgress(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEngineDownloadItem::downloadProgress), static_cast(ptr), static_cast(&MyQWebEngineDownloadItem::Signal_DownloadProgress)); } void QWebEngineDownloadItem_DisconnectDownloadProgress(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEngineDownloadItem::downloadProgress), static_cast(ptr), static_cast(&MyQWebEngineDownloadItem::Signal_DownloadProgress)); } void QWebEngineDownloadItem_DownloadProgress(void* ptr, long long bytesReceived, long long bytesTotal) { static_cast(ptr)->downloadProgress(static_cast(bytesReceived), static_cast(bytesTotal)); } void QWebEngineDownloadItem_ConnectFinished(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEngineDownloadItem::finished), static_cast(ptr), static_cast(&MyQWebEngineDownloadItem::Signal_Finished)); } void QWebEngineDownloadItem_DisconnectFinished(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEngineDownloadItem::finished), static_cast(ptr), static_cast(&MyQWebEngineDownloadItem::Signal_Finished)); } void QWebEngineDownloadItem_Finished(void* ptr) { static_cast(ptr)->finished(); } int QWebEngineDownloadItem_IsFinished(void* ptr) { return static_cast(ptr)->isFinished(); } char* QWebEngineDownloadItem_MimeType(void* ptr) { return static_cast(ptr)->mimeType().toUtf8().data(); } char* QWebEngineDownloadItem_Path(void* ptr) { return static_cast(ptr)->path().toUtf8().data(); } long long QWebEngineDownloadItem_ReceivedBytes(void* ptr) { return static_cast(static_cast(ptr)->receivedBytes()); } int QWebEngineDownloadItem_SavePageFormat(void* ptr) { return static_cast(ptr)->savePageFormat(); } void QWebEngineDownloadItem_SetPath(void* ptr, char* path) { static_cast(ptr)->setPath(QString(path)); } void QWebEngineDownloadItem_SetSavePageFormat(void* ptr, int format) { static_cast(ptr)->setSavePageFormat(static_cast(format)); } int QWebEngineDownloadItem_State(void* ptr) { return static_cast(ptr)->state(); } void QWebEngineDownloadItem_ConnectStateChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEngineDownloadItem::stateChanged), static_cast(ptr), static_cast(&MyQWebEngineDownloadItem::Signal_StateChanged)); } void QWebEngineDownloadItem_DisconnectStateChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEngineDownloadItem::stateChanged), static_cast(ptr), static_cast(&MyQWebEngineDownloadItem::Signal_StateChanged)); } void QWebEngineDownloadItem_StateChanged(void* ptr, int state) { static_cast(ptr)->stateChanged(static_cast(state)); } long long QWebEngineDownloadItem_TotalBytes(void* ptr) { return static_cast(static_cast(ptr)->totalBytes()); } void* QWebEngineDownloadItem_Url(void* ptr) { return new QUrl(static_cast(ptr)->url()); } void QWebEngineDownloadItem_TimerEvent(void* ptr, void* event) { static_cast(ptr)->timerEvent(static_cast(event)); } void QWebEngineDownloadItem_TimerEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineDownloadItem::timerEvent(static_cast(event)); } void QWebEngineDownloadItem_ChildEvent(void* ptr, void* event) { static_cast(ptr)->childEvent(static_cast(event)); } void QWebEngineDownloadItem_ChildEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineDownloadItem::childEvent(static_cast(event)); } void QWebEngineDownloadItem_ConnectNotify(void* ptr, void* sign) { static_cast(ptr)->connectNotify(*static_cast(sign)); } void QWebEngineDownloadItem_ConnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEngineDownloadItem::connectNotify(*static_cast(sign)); } void QWebEngineDownloadItem_CustomEvent(void* ptr, void* event) { static_cast(ptr)->customEvent(static_cast(event)); } void QWebEngineDownloadItem_CustomEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineDownloadItem::customEvent(static_cast(event)); } void QWebEngineDownloadItem_DeleteLater(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "deleteLater"); } void QWebEngineDownloadItem_DeleteLaterDefault(void* ptr) { static_cast(ptr)->QWebEngineDownloadItem::deleteLater(); } void QWebEngineDownloadItem_DisconnectNotify(void* ptr, void* sign) { static_cast(ptr)->disconnectNotify(*static_cast(sign)); } void QWebEngineDownloadItem_DisconnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEngineDownloadItem::disconnectNotify(*static_cast(sign)); } int QWebEngineDownloadItem_Event(void* ptr, void* e) { return static_cast(ptr)->event(static_cast(e)); } int QWebEngineDownloadItem_EventDefault(void* ptr, void* e) { return static_cast(ptr)->QWebEngineDownloadItem::event(static_cast(e)); } int QWebEngineDownloadItem_EventFilter(void* ptr, void* watched, void* event) { return static_cast(ptr)->eventFilter(static_cast(watched), static_cast(event)); } int QWebEngineDownloadItem_EventFilterDefault(void* ptr, void* watched, void* event) { return static_cast(ptr)->QWebEngineDownloadItem::eventFilter(static_cast(watched), static_cast(event)); } void* QWebEngineDownloadItem_MetaObject(void* ptr) { return const_cast(static_cast(ptr)->metaObject()); } void* QWebEngineDownloadItem_MetaObjectDefault(void* ptr) { return const_cast(static_cast(ptr)->QWebEngineDownloadItem::metaObject()); } void QWebEngineFullScreenRequest_Accept(void* ptr) { static_cast(ptr)->accept(); } void* QWebEngineFullScreenRequest_Origin(void* ptr) { return new QUrl(static_cast(ptr)->origin()); } void QWebEngineFullScreenRequest_Reject(void* ptr) { static_cast(ptr)->reject(); } int QWebEngineFullScreenRequest_ToggleOn(void* ptr) { return static_cast(ptr)->toggleOn(); } void QWebEngineHistory_Back(void* ptr) { static_cast(ptr)->back(); } void* QWebEngineHistory_BackItem(void* ptr) { return new QWebEngineHistoryItem(static_cast(ptr)->backItem()); } int QWebEngineHistory_CanGoBack(void* ptr) { return static_cast(ptr)->canGoBack(); } int QWebEngineHistory_CanGoForward(void* ptr) { return static_cast(ptr)->canGoForward(); } void QWebEngineHistory_Clear(void* ptr) { static_cast(ptr)->clear(); } int QWebEngineHistory_Count(void* ptr) { return static_cast(ptr)->count(); } void* QWebEngineHistory_CurrentItem(void* ptr) { return new QWebEngineHistoryItem(static_cast(ptr)->currentItem()); } int QWebEngineHistory_CurrentItemIndex(void* ptr) { return static_cast(ptr)->currentItemIndex(); } void QWebEngineHistory_Forward(void* ptr) { static_cast(ptr)->forward(); } void* QWebEngineHistory_ForwardItem(void* ptr) { return new QWebEngineHistoryItem(static_cast(ptr)->forwardItem()); } void QWebEngineHistory_GoToItem(void* ptr, void* item) { static_cast(ptr)->goToItem(*static_cast(item)); } void* QWebEngineHistory_ItemAt(void* ptr, int i) { return new QWebEngineHistoryItem(static_cast(ptr)->itemAt(i)); } void* QWebEngineHistoryItem_NewQWebEngineHistoryItem(void* other) { return new QWebEngineHistoryItem(*static_cast(other)); } int QWebEngineHistoryItem_IsValid(void* ptr) { return static_cast(ptr)->isValid(); } void* QWebEngineHistoryItem_LastVisited(void* ptr) { return new QDateTime(static_cast(ptr)->lastVisited()); } void* QWebEngineHistoryItem_OriginalUrl(void* ptr) { return new QUrl(static_cast(ptr)->originalUrl()); } char* QWebEngineHistoryItem_Title(void* ptr) { return static_cast(ptr)->title().toUtf8().data(); } void* QWebEngineHistoryItem_Url(void* ptr) { return new QUrl(static_cast(ptr)->url()); } void QWebEngineHistoryItem_DestroyQWebEngineHistoryItem(void* ptr) { static_cast(ptr)->~QWebEngineHistoryItem(); } void* QWebEngineHistoryItem_IconUrl(void* ptr) { return new QUrl(static_cast(ptr)->iconUrl()); } void QWebEngineHistoryItem_Swap(void* ptr, void* other) { static_cast(ptr)->swap(*static_cast(other)); } class MyQWebEnginePage: public QWebEnginePage { public: MyQWebEnginePage(QObject *parent) : QWebEnginePage(parent) {}; MyQWebEnginePage(QWebEngineProfile *profile, QObject *parent) : QWebEnginePage(profile, parent) {}; bool acceptNavigationRequest(const QUrl & url, QWebEnginePage::NavigationType ty, bool isMainFrame) { return callbackQWebEnginePage_AcceptNavigationRequest(this, this->objectName().toUtf8().data(), new QUrl(url), ty, isMainFrame) != 0; }; QStringList chooseFiles(QWebEnginePage::FileSelectionMode mode, const QStringList & oldFiles, const QStringList & acceptedMimeTypes) { return QString(callbackQWebEnginePage_ChooseFiles(this, this->objectName().toUtf8().data(), mode, oldFiles.join("|").toUtf8().data(), acceptedMimeTypes.join("|").toUtf8().data())).split("|", QString::SkipEmptyParts); }; QWebEnginePage * createWindow(QWebEnginePage::WebWindowType ty) { return static_cast(callbackQWebEnginePage_CreateWindow(this, this->objectName().toUtf8().data(), ty)); }; void javaScriptAlert(const QUrl & securityOrigin, const QString & msg) { callbackQWebEnginePage_JavaScriptAlert(this, this->objectName().toUtf8().data(), new QUrl(securityOrigin), msg.toUtf8().data()); }; bool javaScriptConfirm(const QUrl & securityOrigin, const QString & msg) { return callbackQWebEnginePage_JavaScriptConfirm(this, this->objectName().toUtf8().data(), new QUrl(securityOrigin), msg.toUtf8().data()) != 0; }; void javaScriptConsoleMessage(QWebEnginePage::JavaScriptConsoleMessageLevel level, const QString & message, int lineNumber, const QString & sourceID) { callbackQWebEnginePage_JavaScriptConsoleMessage(this, this->objectName().toUtf8().data(), level, message.toUtf8().data(), lineNumber, sourceID.toUtf8().data()); }; bool javaScriptPrompt(const QUrl & securityOrigin, const QString & msg, const QString & defaultValue, QString * result) { return callbackQWebEnginePage_JavaScriptPrompt(this, this->objectName().toUtf8().data(), new QUrl(securityOrigin), msg.toUtf8().data(), defaultValue.toUtf8().data(), result->toUtf8().data()) != 0; }; void triggerAction(QWebEnginePage::WebAction action, bool checked) { callbackQWebEnginePage_TriggerAction(this, this->objectName().toUtf8().data(), action, checked); }; void Signal_AudioMutedChanged(bool muted) { callbackQWebEnginePage_AudioMutedChanged(this, this->objectName().toUtf8().data(), muted); }; void Signal_AuthenticationRequired(const QUrl & requestUrl, QAuthenticator * authenticator) { callbackQWebEnginePage_AuthenticationRequired(this, this->objectName().toUtf8().data(), new QUrl(requestUrl), authenticator); }; void Signal_ContentsSizeChanged(const QSizeF & size) { callbackQWebEnginePage_ContentsSizeChanged(this, this->objectName().toUtf8().data(), new QSizeF(static_cast(size).width(), static_cast(size).height())); }; bool event(QEvent * e) { return callbackQWebEnginePage_Event(this, this->objectName().toUtf8().data(), e) != 0; }; void Signal_FeaturePermissionRequestCanceled(const QUrl & securityOrigin, QWebEnginePage::Feature feature) { callbackQWebEnginePage_FeaturePermissionRequestCanceled(this, this->objectName().toUtf8().data(), new QUrl(securityOrigin), feature); }; void Signal_FeaturePermissionRequested(const QUrl & securityOrigin, QWebEnginePage::Feature feature) { callbackQWebEnginePage_FeaturePermissionRequested(this, this->objectName().toUtf8().data(), new QUrl(securityOrigin), feature); }; void Signal_GeometryChangeRequested(const QRect & geom) { callbackQWebEnginePage_GeometryChangeRequested(this, this->objectName().toUtf8().data(), new QRect(static_cast(geom).x(), static_cast(geom).y(), static_cast(geom).width(), static_cast(geom).height())); }; void Signal_IconChanged(const QIcon & icon) { callbackQWebEnginePage_IconChanged(this, this->objectName().toUtf8().data(), new QIcon(icon)); }; void Signal_IconUrlChanged(const QUrl & url) { callbackQWebEnginePage_IconUrlChanged(this, this->objectName().toUtf8().data(), new QUrl(url)); }; void Signal_LinkHovered(const QString & url) { callbackQWebEnginePage_LinkHovered(this, this->objectName().toUtf8().data(), url.toUtf8().data()); }; void Signal_LoadFinished(bool ok) { callbackQWebEnginePage_LoadFinished(this, this->objectName().toUtf8().data(), ok); }; void Signal_LoadProgress(int progress) { callbackQWebEnginePage_LoadProgress(this, this->objectName().toUtf8().data(), progress); }; void Signal_LoadStarted() { callbackQWebEnginePage_LoadStarted(this, this->objectName().toUtf8().data()); }; void Signal_ProxyAuthenticationRequired(const QUrl & requestUrl, QAuthenticator * authenticator, const QString & proxyHost) { callbackQWebEnginePage_ProxyAuthenticationRequired(this, this->objectName().toUtf8().data(), new QUrl(requestUrl), authenticator, proxyHost.toUtf8().data()); }; void Signal_RecentlyAudibleChanged(bool recentlyAudible) { callbackQWebEnginePage_RecentlyAudibleChanged(this, this->objectName().toUtf8().data(), recentlyAudible); }; void Signal_RenderProcessTerminated(QWebEnginePage::RenderProcessTerminationStatus terminationStatus, int exitCode) { callbackQWebEnginePage_RenderProcessTerminated(this, this->objectName().toUtf8().data(), terminationStatus, exitCode); }; void Signal_ScrollPositionChanged(const QPointF & position) { callbackQWebEnginePage_ScrollPositionChanged(this, this->objectName().toUtf8().data(), new QPointF(static_cast(position).x(), static_cast(position).y())); }; void Signal_SelectionChanged() { callbackQWebEnginePage_SelectionChanged(this, this->objectName().toUtf8().data()); }; void Signal_TitleChanged(const QString & title) { callbackQWebEnginePage_TitleChanged(this, this->objectName().toUtf8().data(), title.toUtf8().data()); }; void Signal_UrlChanged(const QUrl & url) { callbackQWebEnginePage_UrlChanged(this, this->objectName().toUtf8().data(), new QUrl(url)); }; void Signal_WindowCloseRequested() { callbackQWebEnginePage_WindowCloseRequested(this, this->objectName().toUtf8().data()); }; void timerEvent(QTimerEvent * event) { callbackQWebEnginePage_TimerEvent(this, this->objectName().toUtf8().data(), event); }; void childEvent(QChildEvent * event) { callbackQWebEnginePage_ChildEvent(this, this->objectName().toUtf8().data(), event); }; void connectNotify(const QMetaMethod & sign) { callbackQWebEnginePage_ConnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; void customEvent(QEvent * event) { callbackQWebEnginePage_CustomEvent(this, this->objectName().toUtf8().data(), event); }; void deleteLater() { callbackQWebEnginePage_DeleteLater(this, this->objectName().toUtf8().data()); }; void disconnectNotify(const QMetaMethod & sign) { callbackQWebEnginePage_DisconnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; bool eventFilter(QObject * watched, QEvent * event) { return callbackQWebEnginePage_EventFilter(this, this->objectName().toUtf8().data(), watched, event) != 0; }; const QMetaObject * metaObject() const { return static_cast(callbackQWebEnginePage_MetaObject(const_cast(this), this->objectName().toUtf8().data())); }; }; void* QWebEnginePage_NewQWebEnginePage(void* parent) { return new MyQWebEnginePage(static_cast(parent)); } int QWebEnginePage_AcceptNavigationRequest(void* ptr, void* url, int ty, int isMainFrame) { return static_cast(ptr)->acceptNavigationRequest(*static_cast(url), static_cast(ty), isMainFrame != 0); } int QWebEnginePage_AcceptNavigationRequestDefault(void* ptr, void* url, int ty, int isMainFrame) { return static_cast(ptr)->QWebEnginePage::acceptNavigationRequest(*static_cast(url), static_cast(ty), isMainFrame != 0); } void* QWebEnginePage_Action(void* ptr, int action) { return static_cast(ptr)->action(static_cast(action)); } void* QWebEnginePage_BackgroundColor(void* ptr) { return new QColor(static_cast(ptr)->backgroundColor()); } char* QWebEnginePage_ChooseFiles(void* ptr, int mode, char* oldFiles, char* acceptedMimeTypes) { return static_cast(ptr)->chooseFiles(static_cast(mode), QString(oldFiles).split("|", QString::SkipEmptyParts), QString(acceptedMimeTypes).split("|", QString::SkipEmptyParts)).join("|").toUtf8().data(); } char* QWebEnginePage_ChooseFilesDefault(void* ptr, int mode, char* oldFiles, char* acceptedMimeTypes) { return static_cast(ptr)->QWebEnginePage::chooseFiles(static_cast(mode), QString(oldFiles).split("|", QString::SkipEmptyParts), QString(acceptedMimeTypes).split("|", QString::SkipEmptyParts)).join("|").toUtf8().data(); } void* QWebEnginePage_ContentsSize(void* ptr) { return new QSizeF(static_cast(static_cast(ptr)->contentsSize()).width(), static_cast(static_cast(ptr)->contentsSize()).height()); } void* QWebEnginePage_CreateStandardContextMenu(void* ptr) { return static_cast(ptr)->createStandardContextMenu(); } void* QWebEnginePage_CreateWindow(void* ptr, int ty) { return static_cast(ptr)->createWindow(static_cast(ty)); } void* QWebEnginePage_CreateWindowDefault(void* ptr, int ty) { return static_cast(ptr)->QWebEnginePage::createWindow(static_cast(ty)); } int QWebEnginePage_HasSelection(void* ptr) { return static_cast(ptr)->hasSelection(); } void* QWebEnginePage_History(void* ptr) { return static_cast(ptr)->history(); } void* QWebEnginePage_Icon(void* ptr) { return new QIcon(static_cast(ptr)->icon()); } void* QWebEnginePage_IconUrl(void* ptr) { return new QUrl(static_cast(ptr)->iconUrl()); } int QWebEnginePage_IsAudioMuted(void* ptr) { return static_cast(ptr)->isAudioMuted(); } void QWebEnginePage_JavaScriptAlert(void* ptr, void* securityOrigin, char* msg) { static_cast(ptr)->javaScriptAlert(*static_cast(securityOrigin), QString(msg)); } void QWebEnginePage_JavaScriptAlertDefault(void* ptr, void* securityOrigin, char* msg) { static_cast(ptr)->QWebEnginePage::javaScriptAlert(*static_cast(securityOrigin), QString(msg)); } int QWebEnginePage_JavaScriptConfirm(void* ptr, void* securityOrigin, char* msg) { return static_cast(ptr)->javaScriptConfirm(*static_cast(securityOrigin), QString(msg)); } int QWebEnginePage_JavaScriptConfirmDefault(void* ptr, void* securityOrigin, char* msg) { return static_cast(ptr)->QWebEnginePage::javaScriptConfirm(*static_cast(securityOrigin), QString(msg)); } void QWebEnginePage_JavaScriptConsoleMessage(void* ptr, int level, char* message, int lineNumber, char* sourceID) { static_cast(ptr)->javaScriptConsoleMessage(static_cast(level), QString(message), lineNumber, QString(sourceID)); } void QWebEnginePage_JavaScriptConsoleMessageDefault(void* ptr, int level, char* message, int lineNumber, char* sourceID) { static_cast(ptr)->QWebEnginePage::javaScriptConsoleMessage(static_cast(level), QString(message), lineNumber, QString(sourceID)); } int QWebEnginePage_JavaScriptPrompt(void* ptr, void* securityOrigin, char* msg, char* defaultValue, char* result) { return static_cast(ptr)->javaScriptPrompt(*static_cast(securityOrigin), QString(msg), QString(defaultValue), new QString(result)); } int QWebEnginePage_JavaScriptPromptDefault(void* ptr, void* securityOrigin, char* msg, char* defaultValue, char* result) { return static_cast(ptr)->QWebEnginePage::javaScriptPrompt(*static_cast(securityOrigin), QString(msg), QString(defaultValue), new QString(result)); } void QWebEnginePage_Load(void* ptr, void* url) { static_cast(ptr)->load(*static_cast(url)); } int QWebEnginePage_RecentlyAudible(void* ptr) { return static_cast(ptr)->recentlyAudible(); } void* QWebEnginePage_RequestedUrl(void* ptr) { return new QUrl(static_cast(ptr)->requestedUrl()); } void QWebEnginePage_RunJavaScript4(void* ptr, char* scriptSource) { static_cast(ptr)->runJavaScript(QString(scriptSource)); } void* QWebEnginePage_ScrollPosition(void* ptr) { return new QPointF(static_cast(static_cast(ptr)->scrollPosition()).x(), static_cast(static_cast(ptr)->scrollPosition()).y()); } char* QWebEnginePage_SelectedText(void* ptr) { return static_cast(ptr)->selectedText().toUtf8().data(); } void QWebEnginePage_SetAudioMuted(void* ptr, int muted) { static_cast(ptr)->setAudioMuted(muted != 0); } void QWebEnginePage_SetBackgroundColor(void* ptr, void* color) { static_cast(ptr)->setBackgroundColor(*static_cast(color)); } void QWebEnginePage_SetContent(void* ptr, char* data, char* mimeType, void* baseUrl) { static_cast(ptr)->setContent(QByteArray(data), QString(mimeType), *static_cast(baseUrl)); } void QWebEnginePage_SetFeaturePermission(void* ptr, void* securityOrigin, int feature, int policy) { static_cast(ptr)->setFeaturePermission(*static_cast(securityOrigin), static_cast(feature), static_cast(policy)); } void QWebEnginePage_SetHtml(void* ptr, char* html, void* baseUrl) { static_cast(ptr)->setHtml(QString(html), *static_cast(baseUrl)); } void QWebEnginePage_SetUrl(void* ptr, void* url) { static_cast(ptr)->setUrl(*static_cast(url)); } void QWebEnginePage_SetView(void* ptr, void* view) { static_cast(ptr)->setView(static_cast(view)); } void QWebEnginePage_SetZoomFactor(void* ptr, double factor) { static_cast(ptr)->setZoomFactor(static_cast(factor)); } void* QWebEnginePage_Settings(void* ptr) { return static_cast(ptr)->settings(); } char* QWebEnginePage_Title(void* ptr) { return static_cast(ptr)->title().toUtf8().data(); } void QWebEnginePage_TriggerAction(void* ptr, int action, int checked) { static_cast(ptr)->triggerAction(static_cast(action), checked != 0); } void QWebEnginePage_TriggerActionDefault(void* ptr, int action, int checked) { static_cast(ptr)->QWebEnginePage::triggerAction(static_cast(action), checked != 0); } void* QWebEnginePage_Url(void* ptr) { return new QUrl(static_cast(ptr)->url()); } void* QWebEnginePage_View(void* ptr) { return static_cast(ptr)->view(); } double QWebEnginePage_ZoomFactor(void* ptr) { return static_cast(static_cast(ptr)->zoomFactor()); } void QWebEnginePage_DestroyQWebEnginePage(void* ptr) { static_cast(ptr)->~QWebEnginePage(); } void* QWebEnginePage_NewQWebEnginePage2(void* profile, void* parent) { return new MyQWebEnginePage(static_cast(profile), static_cast(parent)); } void QWebEnginePage_ConnectAudioMutedChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::audioMutedChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_AudioMutedChanged)); } void QWebEnginePage_DisconnectAudioMutedChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::audioMutedChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_AudioMutedChanged)); } void QWebEnginePage_AudioMutedChanged(void* ptr, int muted) { static_cast(ptr)->audioMutedChanged(muted != 0); } void QWebEnginePage_ConnectAuthenticationRequired(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::authenticationRequired), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_AuthenticationRequired)); } void QWebEnginePage_DisconnectAuthenticationRequired(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::authenticationRequired), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_AuthenticationRequired)); } void QWebEnginePage_AuthenticationRequired(void* ptr, void* requestUrl, void* authenticator) { static_cast(ptr)->authenticationRequired(*static_cast(requestUrl), static_cast(authenticator)); } void QWebEnginePage_ConnectContentsSizeChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::contentsSizeChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_ContentsSizeChanged)); } void QWebEnginePage_DisconnectContentsSizeChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::contentsSizeChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_ContentsSizeChanged)); } void QWebEnginePage_ContentsSizeChanged(void* ptr, void* size) { static_cast(ptr)->contentsSizeChanged(*static_cast(size)); } void* QWebEnginePage_ContextMenuData(void* ptr) { return new QWebEngineContextMenuData(static_cast(ptr)->contextMenuData()); } int QWebEnginePage_Event(void* ptr, void* e) { return static_cast(ptr)->event(static_cast(e)); } int QWebEnginePage_EventDefault(void* ptr, void* e) { return static_cast(ptr)->QWebEnginePage::event(static_cast(e)); } void QWebEnginePage_ConnectFeaturePermissionRequestCanceled(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::featurePermissionRequestCanceled), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_FeaturePermissionRequestCanceled)); } void QWebEnginePage_DisconnectFeaturePermissionRequestCanceled(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::featurePermissionRequestCanceled), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_FeaturePermissionRequestCanceled)); } void QWebEnginePage_FeaturePermissionRequestCanceled(void* ptr, void* securityOrigin, int feature) { static_cast(ptr)->featurePermissionRequestCanceled(*static_cast(securityOrigin), static_cast(feature)); } void QWebEnginePage_ConnectFeaturePermissionRequested(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::featurePermissionRequested), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_FeaturePermissionRequested)); } void QWebEnginePage_DisconnectFeaturePermissionRequested(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::featurePermissionRequested), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_FeaturePermissionRequested)); } void QWebEnginePage_FeaturePermissionRequested(void* ptr, void* securityOrigin, int feature) { static_cast(ptr)->featurePermissionRequested(*static_cast(securityOrigin), static_cast(feature)); } void QWebEnginePage_FindText(void* ptr, char* subString, int options) { static_cast(ptr)->findText(QString(subString), static_cast(options)); } void QWebEnginePage_ConnectGeometryChangeRequested(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::geometryChangeRequested), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_GeometryChangeRequested)); } void QWebEnginePage_DisconnectGeometryChangeRequested(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::geometryChangeRequested), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_GeometryChangeRequested)); } void QWebEnginePage_GeometryChangeRequested(void* ptr, void* geom) { static_cast(ptr)->geometryChangeRequested(*static_cast(geom)); } void QWebEnginePage_ConnectIconChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::iconChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_IconChanged)); } void QWebEnginePage_DisconnectIconChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::iconChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_IconChanged)); } void QWebEnginePage_IconChanged(void* ptr, void* icon) { static_cast(ptr)->iconChanged(*static_cast(icon)); } void QWebEnginePage_ConnectIconUrlChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::iconUrlChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_IconUrlChanged)); } void QWebEnginePage_DisconnectIconUrlChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::iconUrlChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_IconUrlChanged)); } void QWebEnginePage_IconUrlChanged(void* ptr, void* url) { static_cast(ptr)->iconUrlChanged(*static_cast(url)); } void QWebEnginePage_ConnectLinkHovered(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::linkHovered), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_LinkHovered)); } void QWebEnginePage_DisconnectLinkHovered(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::linkHovered), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_LinkHovered)); } void QWebEnginePage_LinkHovered(void* ptr, char* url) { static_cast(ptr)->linkHovered(QString(url)); } void QWebEnginePage_ConnectLoadFinished(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::loadFinished), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_LoadFinished)); } void QWebEnginePage_DisconnectLoadFinished(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::loadFinished), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_LoadFinished)); } void QWebEnginePage_LoadFinished(void* ptr, int ok) { static_cast(ptr)->loadFinished(ok != 0); } void QWebEnginePage_ConnectLoadProgress(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::loadProgress), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_LoadProgress)); } void QWebEnginePage_DisconnectLoadProgress(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::loadProgress), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_LoadProgress)); } void QWebEnginePage_LoadProgress(void* ptr, int progress) { static_cast(ptr)->loadProgress(progress); } void QWebEnginePage_ConnectLoadStarted(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::loadStarted), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_LoadStarted)); } void QWebEnginePage_DisconnectLoadStarted(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::loadStarted), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_LoadStarted)); } void QWebEnginePage_LoadStarted(void* ptr) { static_cast(ptr)->loadStarted(); } void QWebEnginePage_PrintToPdf(void* ptr, char* filePath, void* pageLayout) { static_cast(ptr)->printToPdf(QString(filePath), *static_cast(pageLayout)); } void* QWebEnginePage_Profile(void* ptr) { return static_cast(ptr)->profile(); } void QWebEnginePage_ConnectProxyAuthenticationRequired(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::proxyAuthenticationRequired), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_ProxyAuthenticationRequired)); } void QWebEnginePage_DisconnectProxyAuthenticationRequired(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::proxyAuthenticationRequired), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_ProxyAuthenticationRequired)); } void QWebEnginePage_ProxyAuthenticationRequired(void* ptr, void* requestUrl, void* authenticator, char* proxyHost) { static_cast(ptr)->proxyAuthenticationRequired(*static_cast(requestUrl), static_cast(authenticator), QString(proxyHost)); } void QWebEnginePage_ConnectRecentlyAudibleChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::recentlyAudibleChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_RecentlyAudibleChanged)); } void QWebEnginePage_DisconnectRecentlyAudibleChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::recentlyAudibleChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_RecentlyAudibleChanged)); } void QWebEnginePage_RecentlyAudibleChanged(void* ptr, int recentlyAudible) { static_cast(ptr)->recentlyAudibleChanged(recentlyAudible != 0); } void QWebEnginePage_ConnectRenderProcessTerminated(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::renderProcessTerminated), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_RenderProcessTerminated)); } void QWebEnginePage_DisconnectRenderProcessTerminated(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::renderProcessTerminated), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_RenderProcessTerminated)); } void QWebEnginePage_RenderProcessTerminated(void* ptr, int terminationStatus, int exitCode) { static_cast(ptr)->renderProcessTerminated(static_cast(terminationStatus), exitCode); } void QWebEnginePage_ConnectScrollPositionChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::scrollPositionChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_ScrollPositionChanged)); } void QWebEnginePage_DisconnectScrollPositionChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::scrollPositionChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_ScrollPositionChanged)); } void QWebEnginePage_ScrollPositionChanged(void* ptr, void* position) { static_cast(ptr)->scrollPositionChanged(*static_cast(position)); } void QWebEnginePage_ConnectSelectionChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::selectionChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_SelectionChanged)); } void QWebEnginePage_DisconnectSelectionChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::selectionChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_SelectionChanged)); } void QWebEnginePage_SelectionChanged(void* ptr) { static_cast(ptr)->selectionChanged(); } void QWebEnginePage_SetWebChannel2(void* ptr, void* channel) { static_cast(ptr)->setWebChannel(static_cast(channel)); } void QWebEnginePage_ConnectTitleChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::titleChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_TitleChanged)); } void QWebEnginePage_DisconnectTitleChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::titleChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_TitleChanged)); } void QWebEnginePage_TitleChanged(void* ptr, char* title) { static_cast(ptr)->titleChanged(QString(title)); } void QWebEnginePage_ConnectUrlChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::urlChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_UrlChanged)); } void QWebEnginePage_DisconnectUrlChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::urlChanged), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_UrlChanged)); } void QWebEnginePage_UrlChanged(void* ptr, void* url) { static_cast(ptr)->urlChanged(*static_cast(url)); } void* QWebEnginePage_WebChannel(void* ptr) { return static_cast(ptr)->webChannel(); } void QWebEnginePage_ConnectWindowCloseRequested(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEnginePage::windowCloseRequested), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_WindowCloseRequested)); } void QWebEnginePage_DisconnectWindowCloseRequested(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEnginePage::windowCloseRequested), static_cast(ptr), static_cast(&MyQWebEnginePage::Signal_WindowCloseRequested)); } void QWebEnginePage_WindowCloseRequested(void* ptr) { static_cast(ptr)->windowCloseRequested(); } void QWebEnginePage_TimerEvent(void* ptr, void* event) { static_cast(ptr)->timerEvent(static_cast(event)); } void QWebEnginePage_TimerEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEnginePage::timerEvent(static_cast(event)); } void QWebEnginePage_ChildEvent(void* ptr, void* event) { static_cast(ptr)->childEvent(static_cast(event)); } void QWebEnginePage_ChildEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEnginePage::childEvent(static_cast(event)); } void QWebEnginePage_ConnectNotify(void* ptr, void* sign) { static_cast(ptr)->connectNotify(*static_cast(sign)); } void QWebEnginePage_ConnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEnginePage::connectNotify(*static_cast(sign)); } void QWebEnginePage_CustomEvent(void* ptr, void* event) { static_cast(ptr)->customEvent(static_cast(event)); } void QWebEnginePage_CustomEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEnginePage::customEvent(static_cast(event)); } void QWebEnginePage_DeleteLater(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "deleteLater"); } void QWebEnginePage_DeleteLaterDefault(void* ptr) { static_cast(ptr)->QWebEnginePage::deleteLater(); } void QWebEnginePage_DisconnectNotify(void* ptr, void* sign) { static_cast(ptr)->disconnectNotify(*static_cast(sign)); } void QWebEnginePage_DisconnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEnginePage::disconnectNotify(*static_cast(sign)); } int QWebEnginePage_EventFilter(void* ptr, void* watched, void* event) { return static_cast(ptr)->eventFilter(static_cast(watched), static_cast(event)); } int QWebEnginePage_EventFilterDefault(void* ptr, void* watched, void* event) { return static_cast(ptr)->QWebEnginePage::eventFilter(static_cast(watched), static_cast(event)); } void* QWebEnginePage_MetaObject(void* ptr) { return const_cast(static_cast(ptr)->metaObject()); } void* QWebEnginePage_MetaObjectDefault(void* ptr) { return const_cast(static_cast(ptr)->QWebEnginePage::metaObject()); } class MyQWebEngineProfile: public QWebEngineProfile { public: MyQWebEngineProfile(QObject *parent) : QWebEngineProfile(parent) {}; MyQWebEngineProfile(const QString &storageName, QObject *parent) : QWebEngineProfile(storageName, parent) {}; void Signal_DownloadRequested(QWebEngineDownloadItem * download) { callbackQWebEngineProfile_DownloadRequested(this, this->objectName().toUtf8().data(), download); }; void timerEvent(QTimerEvent * event) { callbackQWebEngineProfile_TimerEvent(this, this->objectName().toUtf8().data(), event); }; void childEvent(QChildEvent * event) { callbackQWebEngineProfile_ChildEvent(this, this->objectName().toUtf8().data(), event); }; void connectNotify(const QMetaMethod & sign) { callbackQWebEngineProfile_ConnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; void customEvent(QEvent * event) { callbackQWebEngineProfile_CustomEvent(this, this->objectName().toUtf8().data(), event); }; void deleteLater() { callbackQWebEngineProfile_DeleteLater(this, this->objectName().toUtf8().data()); }; void disconnectNotify(const QMetaMethod & sign) { callbackQWebEngineProfile_DisconnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; bool event(QEvent * e) { return callbackQWebEngineProfile_Event(this, this->objectName().toUtf8().data(), e) != 0; }; bool eventFilter(QObject * watched, QEvent * event) { return callbackQWebEngineProfile_EventFilter(this, this->objectName().toUtf8().data(), watched, event) != 0; }; const QMetaObject * metaObject() const { return static_cast(callbackQWebEngineProfile_MetaObject(const_cast(this), this->objectName().toUtf8().data())); }; }; void* QWebEngineProfile_NewQWebEngineProfile(void* parent) { return new MyQWebEngineProfile(static_cast(parent)); } void* QWebEngineProfile_NewQWebEngineProfile2(char* storageName, void* parent) { return new MyQWebEngineProfile(QString(storageName), static_cast(parent)); } char* QWebEngineProfile_CachePath(void* ptr) { return static_cast(ptr)->cachePath().toUtf8().data(); } void QWebEngineProfile_ClearAllVisitedLinks(void* ptr) { static_cast(ptr)->clearAllVisitedLinks(); } void QWebEngineProfile_ClearHttpCache(void* ptr) { static_cast(ptr)->clearHttpCache(); } void* QWebEngineProfile_CookieStore(void* ptr) { return static_cast(ptr)->cookieStore(); } void* QWebEngineProfile_QWebEngineProfile_DefaultProfile() { return QWebEngineProfile::defaultProfile(); } void QWebEngineProfile_ConnectDownloadRequested(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEngineProfile::downloadRequested), static_cast(ptr), static_cast(&MyQWebEngineProfile::Signal_DownloadRequested)); } void QWebEngineProfile_DisconnectDownloadRequested(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEngineProfile::downloadRequested), static_cast(ptr), static_cast(&MyQWebEngineProfile::Signal_DownloadRequested)); } void QWebEngineProfile_DownloadRequested(void* ptr, void* download) { static_cast(ptr)->downloadRequested(static_cast(download)); } char* QWebEngineProfile_HttpAcceptLanguage(void* ptr) { return static_cast(ptr)->httpAcceptLanguage().toUtf8().data(); } int QWebEngineProfile_HttpCacheMaximumSize(void* ptr) { return static_cast(ptr)->httpCacheMaximumSize(); } int QWebEngineProfile_HttpCacheType(void* ptr) { return static_cast(ptr)->httpCacheType(); } char* QWebEngineProfile_HttpUserAgent(void* ptr) { return static_cast(ptr)->httpUserAgent().toUtf8().data(); } void QWebEngineProfile_InstallUrlSchemeHandler(void* ptr, char* scheme, void* handler) { static_cast(ptr)->installUrlSchemeHandler(QByteArray(scheme), static_cast(handler)); } int QWebEngineProfile_IsOffTheRecord(void* ptr) { return static_cast(ptr)->isOffTheRecord(); } int QWebEngineProfile_PersistentCookiesPolicy(void* ptr) { return static_cast(ptr)->persistentCookiesPolicy(); } char* QWebEngineProfile_PersistentStoragePath(void* ptr) { return static_cast(ptr)->persistentStoragePath().toUtf8().data(); } void QWebEngineProfile_RemoveAllUrlSchemeHandlers(void* ptr) { static_cast(ptr)->removeAllUrlSchemeHandlers(); } void QWebEngineProfile_RemoveUrlScheme(void* ptr, char* scheme) { static_cast(ptr)->removeUrlScheme(QByteArray(scheme)); } void QWebEngineProfile_RemoveUrlSchemeHandler(void* ptr, void* handler) { static_cast(ptr)->removeUrlSchemeHandler(static_cast(handler)); } void* QWebEngineProfile_Scripts(void* ptr) { return static_cast(ptr)->scripts(); } void QWebEngineProfile_SetCachePath(void* ptr, char* path) { static_cast(ptr)->setCachePath(QString(path)); } void QWebEngineProfile_SetHttpAcceptLanguage(void* ptr, char* httpAcceptLanguage) { static_cast(ptr)->setHttpAcceptLanguage(QString(httpAcceptLanguage)); } void QWebEngineProfile_SetHttpCacheMaximumSize(void* ptr, int maxSize) { static_cast(ptr)->setHttpCacheMaximumSize(maxSize); } void QWebEngineProfile_SetHttpCacheType(void* ptr, int httpCacheType) { static_cast(ptr)->setHttpCacheType(static_cast(httpCacheType)); } void QWebEngineProfile_SetHttpUserAgent(void* ptr, char* userAgent) { static_cast(ptr)->setHttpUserAgent(QString(userAgent)); } void QWebEngineProfile_SetPersistentCookiesPolicy(void* ptr, int newPersistentCookiesPolicy) { static_cast(ptr)->setPersistentCookiesPolicy(static_cast(newPersistentCookiesPolicy)); } void QWebEngineProfile_SetPersistentStoragePath(void* ptr, char* path) { static_cast(ptr)->setPersistentStoragePath(QString(path)); } void QWebEngineProfile_SetRequestInterceptor(void* ptr, void* interceptor) { static_cast(ptr)->setRequestInterceptor(static_cast(interceptor)); } void* QWebEngineProfile_Settings(void* ptr) { return static_cast(ptr)->settings(); } char* QWebEngineProfile_StorageName(void* ptr) { return static_cast(ptr)->storageName().toUtf8().data(); } void* QWebEngineProfile_UrlSchemeHandler(void* ptr, char* scheme) { return const_cast(static_cast(ptr)->urlSchemeHandler(QByteArray(scheme))); } int QWebEngineProfile_VisitedLinksContainsUrl(void* ptr, void* url) { return static_cast(ptr)->visitedLinksContainsUrl(*static_cast(url)); } void QWebEngineProfile_TimerEvent(void* ptr, void* event) { static_cast(ptr)->timerEvent(static_cast(event)); } void QWebEngineProfile_TimerEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineProfile::timerEvent(static_cast(event)); } void QWebEngineProfile_ChildEvent(void* ptr, void* event) { static_cast(ptr)->childEvent(static_cast(event)); } void QWebEngineProfile_ChildEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineProfile::childEvent(static_cast(event)); } void QWebEngineProfile_ConnectNotify(void* ptr, void* sign) { static_cast(ptr)->connectNotify(*static_cast(sign)); } void QWebEngineProfile_ConnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEngineProfile::connectNotify(*static_cast(sign)); } void QWebEngineProfile_CustomEvent(void* ptr, void* event) { static_cast(ptr)->customEvent(static_cast(event)); } void QWebEngineProfile_CustomEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineProfile::customEvent(static_cast(event)); } void QWebEngineProfile_DeleteLater(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "deleteLater"); } void QWebEngineProfile_DeleteLaterDefault(void* ptr) { static_cast(ptr)->QWebEngineProfile::deleteLater(); } void QWebEngineProfile_DisconnectNotify(void* ptr, void* sign) { static_cast(ptr)->disconnectNotify(*static_cast(sign)); } void QWebEngineProfile_DisconnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEngineProfile::disconnectNotify(*static_cast(sign)); } int QWebEngineProfile_Event(void* ptr, void* e) { return static_cast(ptr)->event(static_cast(e)); } int QWebEngineProfile_EventDefault(void* ptr, void* e) { return static_cast(ptr)->QWebEngineProfile::event(static_cast(e)); } int QWebEngineProfile_EventFilter(void* ptr, void* watched, void* event) { return static_cast(ptr)->eventFilter(static_cast(watched), static_cast(event)); } int QWebEngineProfile_EventFilterDefault(void* ptr, void* watched, void* event) { return static_cast(ptr)->QWebEngineProfile::eventFilter(static_cast(watched), static_cast(event)); } void* QWebEngineProfile_MetaObject(void* ptr) { return const_cast(static_cast(ptr)->metaObject()); } void* QWebEngineProfile_MetaObjectDefault(void* ptr) { return const_cast(static_cast(ptr)->QWebEngineProfile::metaObject()); } void* QWebEngineScript_NewQWebEngineScript() { return new QWebEngineScript(); } void* QWebEngineScript_NewQWebEngineScript2(void* other) { return new QWebEngineScript(*static_cast(other)); } int QWebEngineScript_InjectionPoint(void* ptr) { return static_cast(ptr)->injectionPoint(); } int QWebEngineScript_IsNull(void* ptr) { return static_cast(ptr)->isNull(); } char* QWebEngineScript_Name(void* ptr) { return static_cast(ptr)->name().toUtf8().data(); } int QWebEngineScript_RunsOnSubFrames(void* ptr) { return static_cast(ptr)->runsOnSubFrames(); } void QWebEngineScript_SetInjectionPoint(void* ptr, int p) { static_cast(ptr)->setInjectionPoint(static_cast(p)); } void QWebEngineScript_SetName(void* ptr, char* scriptName) { static_cast(ptr)->setName(QString(scriptName)); } void QWebEngineScript_SetRunsOnSubFrames(void* ptr, int on) { static_cast(ptr)->setRunsOnSubFrames(on != 0); } void QWebEngineScript_SetSourceCode(void* ptr, char* scriptSource) { static_cast(ptr)->setSourceCode(QString(scriptSource)); } char* QWebEngineScript_SourceCode(void* ptr) { return static_cast(ptr)->sourceCode().toUtf8().data(); } void QWebEngineScript_Swap(void* ptr, void* other) { static_cast(ptr)->swap(*static_cast(other)); } void QWebEngineScript_DestroyQWebEngineScript(void* ptr) { static_cast(ptr)->~QWebEngineScript(); } void QWebEngineScriptCollection_Clear(void* ptr) { static_cast(ptr)->clear(); } int QWebEngineScriptCollection_Contains(void* ptr, void* value) { return static_cast(ptr)->contains(*static_cast(value)); } int QWebEngineScriptCollection_Count(void* ptr) { return static_cast(ptr)->count(); } void* QWebEngineScriptCollection_FindScript(void* ptr, char* name) { return new QWebEngineScript(static_cast(ptr)->findScript(QString(name))); } void QWebEngineScriptCollection_Insert(void* ptr, void* s) { static_cast(ptr)->insert(*static_cast(s)); } int QWebEngineScriptCollection_IsEmpty(void* ptr) { return static_cast(ptr)->isEmpty(); } int QWebEngineScriptCollection_Remove(void* ptr, void* script) { return static_cast(ptr)->remove(*static_cast(script)); } int QWebEngineScriptCollection_Size(void* ptr) { return static_cast(ptr)->size(); } void QWebEngineScriptCollection_DestroyQWebEngineScriptCollection(void* ptr) { static_cast(ptr)->~QWebEngineScriptCollection(); } char* QWebEngineSettings_DefaultTextEncoding(void* ptr) { return static_cast(ptr)->defaultTextEncoding().toUtf8().data(); } char* QWebEngineSettings_FontFamily(void* ptr, int which) { return static_cast(ptr)->fontFamily(static_cast(which)).toUtf8().data(); } int QWebEngineSettings_FontSize(void* ptr, int ty) { return static_cast(ptr)->fontSize(static_cast(ty)); } void* QWebEngineSettings_QWebEngineSettings_GlobalSettings() { return QWebEngineSettings::globalSettings(); } void QWebEngineSettings_ResetAttribute(void* ptr, int attribute) { static_cast(ptr)->resetAttribute(static_cast(attribute)); } void QWebEngineSettings_ResetFontFamily(void* ptr, int which) { static_cast(ptr)->resetFontFamily(static_cast(which)); } void QWebEngineSettings_ResetFontSize(void* ptr, int ty) { static_cast(ptr)->resetFontSize(static_cast(ty)); } void QWebEngineSettings_SetAttribute(void* ptr, int attribute, int on) { static_cast(ptr)->setAttribute(static_cast(attribute), on != 0); } void QWebEngineSettings_SetDefaultTextEncoding(void* ptr, char* encoding) { static_cast(ptr)->setDefaultTextEncoding(QString(encoding)); } void QWebEngineSettings_SetFontFamily(void* ptr, int which, char* family) { static_cast(ptr)->setFontFamily(static_cast(which), QString(family)); } void QWebEngineSettings_SetFontSize(void* ptr, int ty, int size) { static_cast(ptr)->setFontSize(static_cast(ty), size); } int QWebEngineSettings_TestAttribute(void* ptr, int attribute) { return static_cast(ptr)->testAttribute(static_cast(attribute)); } void* QWebEngineSettings_QWebEngineSettings_DefaultSettings() { return QWebEngineSettings::defaultSettings(); } void QWebEngineUrlRequestInfo_Block(void* ptr, int shouldBlock) { static_cast(ptr)->block(shouldBlock != 0); } void* QWebEngineUrlRequestInfo_FirstPartyUrl(void* ptr) { return new QUrl(static_cast(ptr)->firstPartyUrl()); } int QWebEngineUrlRequestInfo_NavigationType(void* ptr) { return static_cast(ptr)->navigationType(); } void QWebEngineUrlRequestInfo_Redirect(void* ptr, void* url) { static_cast(ptr)->redirect(*static_cast(url)); } char* QWebEngineUrlRequestInfo_RequestMethod(void* ptr) { return QString(static_cast(ptr)->requestMethod()).toUtf8().data(); } void* QWebEngineUrlRequestInfo_RequestUrl(void* ptr) { return new QUrl(static_cast(ptr)->requestUrl()); } int QWebEngineUrlRequestInfo_ResourceType(void* ptr) { return static_cast(ptr)->resourceType(); } void QWebEngineUrlRequestInfo_SetHttpHeader(void* ptr, char* name, char* value) { static_cast(ptr)->setHttpHeader(QByteArray(name), QByteArray(value)); } class MyQWebEngineUrlRequestInterceptor: public QWebEngineUrlRequestInterceptor { public: void timerEvent(QTimerEvent * event) { callbackQWebEngineUrlRequestInterceptor_TimerEvent(this, this->objectName().toUtf8().data(), event); }; void childEvent(QChildEvent * event) { callbackQWebEngineUrlRequestInterceptor_ChildEvent(this, this->objectName().toUtf8().data(), event); }; void connectNotify(const QMetaMethod & sign) { callbackQWebEngineUrlRequestInterceptor_ConnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; void customEvent(QEvent * event) { callbackQWebEngineUrlRequestInterceptor_CustomEvent(this, this->objectName().toUtf8().data(), event); }; void deleteLater() { callbackQWebEngineUrlRequestInterceptor_DeleteLater(this, this->objectName().toUtf8().data()); }; void disconnectNotify(const QMetaMethod & sign) { callbackQWebEngineUrlRequestInterceptor_DisconnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; bool event(QEvent * e) { return callbackQWebEngineUrlRequestInterceptor_Event(this, this->objectName().toUtf8().data(), e) != 0; }; bool eventFilter(QObject * watched, QEvent * event) { return callbackQWebEngineUrlRequestInterceptor_EventFilter(this, this->objectName().toUtf8().data(), watched, event) != 0; }; const QMetaObject * metaObject() const { return static_cast(callbackQWebEngineUrlRequestInterceptor_MetaObject(const_cast(this), this->objectName().toUtf8().data())); }; }; void QWebEngineUrlRequestInterceptor_TimerEvent(void* ptr, void* event) { static_cast(ptr)->timerEvent(static_cast(event)); } void QWebEngineUrlRequestInterceptor_TimerEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineUrlRequestInterceptor::timerEvent(static_cast(event)); } void QWebEngineUrlRequestInterceptor_ChildEvent(void* ptr, void* event) { static_cast(ptr)->childEvent(static_cast(event)); } void QWebEngineUrlRequestInterceptor_ChildEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineUrlRequestInterceptor::childEvent(static_cast(event)); } void QWebEngineUrlRequestInterceptor_ConnectNotify(void* ptr, void* sign) { static_cast(ptr)->connectNotify(*static_cast(sign)); } void QWebEngineUrlRequestInterceptor_ConnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEngineUrlRequestInterceptor::connectNotify(*static_cast(sign)); } void QWebEngineUrlRequestInterceptor_CustomEvent(void* ptr, void* event) { static_cast(ptr)->customEvent(static_cast(event)); } void QWebEngineUrlRequestInterceptor_CustomEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineUrlRequestInterceptor::customEvent(static_cast(event)); } void QWebEngineUrlRequestInterceptor_DeleteLater(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "deleteLater"); } void QWebEngineUrlRequestInterceptor_DeleteLaterDefault(void* ptr) { static_cast(ptr)->QWebEngineUrlRequestInterceptor::deleteLater(); } void QWebEngineUrlRequestInterceptor_DisconnectNotify(void* ptr, void* sign) { static_cast(ptr)->disconnectNotify(*static_cast(sign)); } void QWebEngineUrlRequestInterceptor_DisconnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEngineUrlRequestInterceptor::disconnectNotify(*static_cast(sign)); } int QWebEngineUrlRequestInterceptor_Event(void* ptr, void* e) { return static_cast(ptr)->event(static_cast(e)); } int QWebEngineUrlRequestInterceptor_EventDefault(void* ptr, void* e) { return static_cast(ptr)->QWebEngineUrlRequestInterceptor::event(static_cast(e)); } int QWebEngineUrlRequestInterceptor_EventFilter(void* ptr, void* watched, void* event) { return static_cast(ptr)->eventFilter(static_cast(watched), static_cast(event)); } int QWebEngineUrlRequestInterceptor_EventFilterDefault(void* ptr, void* watched, void* event) { return static_cast(ptr)->QWebEngineUrlRequestInterceptor::eventFilter(static_cast(watched), static_cast(event)); } void* QWebEngineUrlRequestInterceptor_MetaObject(void* ptr) { return const_cast(static_cast(ptr)->metaObject()); } void* QWebEngineUrlRequestInterceptor_MetaObjectDefault(void* ptr) { return const_cast(static_cast(ptr)->QWebEngineUrlRequestInterceptor::metaObject()); } void QWebEngineUrlRequestJob_Fail(void* ptr, int r) { static_cast(ptr)->fail(static_cast(r)); } void QWebEngineUrlRequestJob_Redirect(void* ptr, void* url) { static_cast(ptr)->redirect(*static_cast(url)); } void QWebEngineUrlRequestJob_Reply(void* ptr, char* contentType, void* device) { static_cast(ptr)->reply(QByteArray(contentType), static_cast(device)); } char* QWebEngineUrlRequestJob_RequestMethod(void* ptr) { return QString(static_cast(ptr)->requestMethod()).toUtf8().data(); } void* QWebEngineUrlRequestJob_RequestUrl(void* ptr) { return new QUrl(static_cast(ptr)->requestUrl()); } void QWebEngineUrlRequestJob_TimerEvent(void* ptr, void* event) { static_cast(ptr)->timerEvent(static_cast(event)); } void QWebEngineUrlRequestJob_TimerEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineUrlRequestJob::timerEvent(static_cast(event)); } void QWebEngineUrlRequestJob_ChildEvent(void* ptr, void* event) { static_cast(ptr)->childEvent(static_cast(event)); } void QWebEngineUrlRequestJob_ChildEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineUrlRequestJob::childEvent(static_cast(event)); } void QWebEngineUrlRequestJob_ConnectNotify(void* ptr, void* sign) { static_cast(ptr)->connectNotify(*static_cast(sign)); } void QWebEngineUrlRequestJob_ConnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEngineUrlRequestJob::connectNotify(*static_cast(sign)); } void QWebEngineUrlRequestJob_CustomEvent(void* ptr, void* event) { static_cast(ptr)->customEvent(static_cast(event)); } void QWebEngineUrlRequestJob_CustomEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineUrlRequestJob::customEvent(static_cast(event)); } void QWebEngineUrlRequestJob_DeleteLater(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "deleteLater"); } void QWebEngineUrlRequestJob_DeleteLaterDefault(void* ptr) { static_cast(ptr)->QWebEngineUrlRequestJob::deleteLater(); } void QWebEngineUrlRequestJob_DisconnectNotify(void* ptr, void* sign) { static_cast(ptr)->disconnectNotify(*static_cast(sign)); } void QWebEngineUrlRequestJob_DisconnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEngineUrlRequestJob::disconnectNotify(*static_cast(sign)); } int QWebEngineUrlRequestJob_Event(void* ptr, void* e) { return static_cast(ptr)->event(static_cast(e)); } int QWebEngineUrlRequestJob_EventDefault(void* ptr, void* e) { return static_cast(ptr)->QWebEngineUrlRequestJob::event(static_cast(e)); } int QWebEngineUrlRequestJob_EventFilter(void* ptr, void* watched, void* event) { return static_cast(ptr)->eventFilter(static_cast(watched), static_cast(event)); } int QWebEngineUrlRequestJob_EventFilterDefault(void* ptr, void* watched, void* event) { return static_cast(ptr)->QWebEngineUrlRequestJob::eventFilter(static_cast(watched), static_cast(event)); } void* QWebEngineUrlRequestJob_MetaObject(void* ptr) { return const_cast(static_cast(ptr)->metaObject()); } void* QWebEngineUrlRequestJob_MetaObjectDefault(void* ptr) { return const_cast(static_cast(ptr)->QWebEngineUrlRequestJob::metaObject()); } class MyQWebEngineUrlSchemeHandler: public QWebEngineUrlSchemeHandler { public: MyQWebEngineUrlSchemeHandler(QObject *parent) : QWebEngineUrlSchemeHandler(parent) {}; void requestStarted(QWebEngineUrlRequestJob * request) { callbackQWebEngineUrlSchemeHandler_RequestStarted(this, this->objectName().toUtf8().data(), request); }; void timerEvent(QTimerEvent * event) { callbackQWebEngineUrlSchemeHandler_TimerEvent(this, this->objectName().toUtf8().data(), event); }; void childEvent(QChildEvent * event) { callbackQWebEngineUrlSchemeHandler_ChildEvent(this, this->objectName().toUtf8().data(), event); }; void connectNotify(const QMetaMethod & sign) { callbackQWebEngineUrlSchemeHandler_ConnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; void customEvent(QEvent * event) { callbackQWebEngineUrlSchemeHandler_CustomEvent(this, this->objectName().toUtf8().data(), event); }; void deleteLater() { callbackQWebEngineUrlSchemeHandler_DeleteLater(this, this->objectName().toUtf8().data()); }; void disconnectNotify(const QMetaMethod & sign) { callbackQWebEngineUrlSchemeHandler_DisconnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; bool event(QEvent * e) { return callbackQWebEngineUrlSchemeHandler_Event(this, this->objectName().toUtf8().data(), e) != 0; }; bool eventFilter(QObject * watched, QEvent * event) { return callbackQWebEngineUrlSchemeHandler_EventFilter(this, this->objectName().toUtf8().data(), watched, event) != 0; }; const QMetaObject * metaObject() const { return static_cast(callbackQWebEngineUrlSchemeHandler_MetaObject(const_cast(this), this->objectName().toUtf8().data())); }; }; void* QWebEngineUrlSchemeHandler_NewQWebEngineUrlSchemeHandler(void* parent) { return new MyQWebEngineUrlSchemeHandler(static_cast(parent)); } void QWebEngineUrlSchemeHandler_RequestStarted(void* ptr, void* request) { static_cast(ptr)->requestStarted(static_cast(request)); } void QWebEngineUrlSchemeHandler_DestroyQWebEngineUrlSchemeHandler(void* ptr) { static_cast(ptr)->~QWebEngineUrlSchemeHandler(); } void QWebEngineUrlSchemeHandler_TimerEvent(void* ptr, void* event) { static_cast(ptr)->timerEvent(static_cast(event)); } void QWebEngineUrlSchemeHandler_TimerEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineUrlSchemeHandler::timerEvent(static_cast(event)); } void QWebEngineUrlSchemeHandler_ChildEvent(void* ptr, void* event) { static_cast(ptr)->childEvent(static_cast(event)); } void QWebEngineUrlSchemeHandler_ChildEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineUrlSchemeHandler::childEvent(static_cast(event)); } void QWebEngineUrlSchemeHandler_ConnectNotify(void* ptr, void* sign) { static_cast(ptr)->connectNotify(*static_cast(sign)); } void QWebEngineUrlSchemeHandler_ConnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEngineUrlSchemeHandler::connectNotify(*static_cast(sign)); } void QWebEngineUrlSchemeHandler_CustomEvent(void* ptr, void* event) { static_cast(ptr)->customEvent(static_cast(event)); } void QWebEngineUrlSchemeHandler_CustomEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineUrlSchemeHandler::customEvent(static_cast(event)); } void QWebEngineUrlSchemeHandler_DeleteLater(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "deleteLater"); } void QWebEngineUrlSchemeHandler_DeleteLaterDefault(void* ptr) { static_cast(ptr)->QWebEngineUrlSchemeHandler::deleteLater(); } void QWebEngineUrlSchemeHandler_DisconnectNotify(void* ptr, void* sign) { static_cast(ptr)->disconnectNotify(*static_cast(sign)); } void QWebEngineUrlSchemeHandler_DisconnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEngineUrlSchemeHandler::disconnectNotify(*static_cast(sign)); } int QWebEngineUrlSchemeHandler_Event(void* ptr, void* e) { return static_cast(ptr)->event(static_cast(e)); } int QWebEngineUrlSchemeHandler_EventDefault(void* ptr, void* e) { return static_cast(ptr)->QWebEngineUrlSchemeHandler::event(static_cast(e)); } int QWebEngineUrlSchemeHandler_EventFilter(void* ptr, void* watched, void* event) { return static_cast(ptr)->eventFilter(static_cast(watched), static_cast(event)); } int QWebEngineUrlSchemeHandler_EventFilterDefault(void* ptr, void* watched, void* event) { return static_cast(ptr)->QWebEngineUrlSchemeHandler::eventFilter(static_cast(watched), static_cast(event)); } void* QWebEngineUrlSchemeHandler_MetaObject(void* ptr) { return const_cast(static_cast(ptr)->metaObject()); } void* QWebEngineUrlSchemeHandler_MetaObjectDefault(void* ptr) { return const_cast(static_cast(ptr)->QWebEngineUrlSchemeHandler::metaObject()); } class MyQWebEngineView: public QWebEngineView { public: MyQWebEngineView(QWidget *parent) : QWebEngineView(parent) {}; void back() { callbackQWebEngineView_Back(this, this->objectName().toUtf8().data()); }; QWebEngineView * createWindow(QWebEnginePage::WebWindowType ty) { return static_cast(callbackQWebEngineView_CreateWindow(this, this->objectName().toUtf8().data(), ty)); }; void forward() { callbackQWebEngineView_Forward(this, this->objectName().toUtf8().data()); }; void reload() { callbackQWebEngineView_Reload(this, this->objectName().toUtf8().data()); }; void stop() { callbackQWebEngineView_Stop(this, this->objectName().toUtf8().data()); }; void contextMenuEvent(QContextMenuEvent * event) { callbackQWebEngineView_ContextMenuEvent(this, this->objectName().toUtf8().data(), event); }; bool event(QEvent * ev) { return callbackQWebEngineView_Event(this, this->objectName().toUtf8().data(), ev) != 0; }; void hideEvent(QHideEvent * event) { callbackQWebEngineView_HideEvent(this, this->objectName().toUtf8().data(), event); }; void Signal_IconChanged(const QIcon & icon) { callbackQWebEngineView_IconChanged(this, this->objectName().toUtf8().data(), new QIcon(icon)); }; void Signal_IconUrlChanged(const QUrl & url) { callbackQWebEngineView_IconUrlChanged(this, this->objectName().toUtf8().data(), new QUrl(url)); }; void Signal_LoadFinished(bool ok) { callbackQWebEngineView_LoadFinished(this, this->objectName().toUtf8().data(), ok); }; void Signal_LoadProgress(int progress) { callbackQWebEngineView_LoadProgress(this, this->objectName().toUtf8().data(), progress); }; void Signal_LoadStarted() { callbackQWebEngineView_LoadStarted(this, this->objectName().toUtf8().data()); }; void Signal_RenderProcessTerminated(QWebEnginePage::RenderProcessTerminationStatus terminationStatus, int exitCode) { callbackQWebEngineView_RenderProcessTerminated(this, this->objectName().toUtf8().data(), terminationStatus, exitCode); }; void Signal_SelectionChanged() { callbackQWebEngineView_SelectionChanged(this, this->objectName().toUtf8().data()); }; void showEvent(QShowEvent * event) { callbackQWebEngineView_ShowEvent(this, this->objectName().toUtf8().data(), event); }; QSize sizeHint() const { return *static_cast(callbackQWebEngineView_SizeHint(const_cast(this), this->objectName().toUtf8().data())); }; void Signal_TitleChanged(const QString & title) { callbackQWebEngineView_TitleChanged(this, this->objectName().toUtf8().data(), title.toUtf8().data()); }; void Signal_UrlChanged(const QUrl & url) { callbackQWebEngineView_UrlChanged(this, this->objectName().toUtf8().data(), new QUrl(url)); }; void actionEvent(QActionEvent * event) { callbackQWebEngineView_ActionEvent(this, this->objectName().toUtf8().data(), event); }; void enterEvent(QEvent * event) { callbackQWebEngineView_EnterEvent(this, this->objectName().toUtf8().data(), event); }; void focusInEvent(QFocusEvent * event) { callbackQWebEngineView_FocusInEvent(this, this->objectName().toUtf8().data(), event); }; void focusOutEvent(QFocusEvent * event) { callbackQWebEngineView_FocusOutEvent(this, this->objectName().toUtf8().data(), event); }; void leaveEvent(QEvent * event) { callbackQWebEngineView_LeaveEvent(this, this->objectName().toUtf8().data(), event); }; QSize minimumSizeHint() const { return *static_cast(callbackQWebEngineView_MinimumSizeHint(const_cast(this), this->objectName().toUtf8().data())); }; void moveEvent(QMoveEvent * event) { callbackQWebEngineView_MoveEvent(this, this->objectName().toUtf8().data(), event); }; void paintEvent(QPaintEvent * event) { callbackQWebEngineView_PaintEvent(this, this->objectName().toUtf8().data(), event); }; void setEnabled(bool vbo) { callbackQWebEngineView_SetEnabled(this, this->objectName().toUtf8().data(), vbo); }; void setStyleSheet(const QString & styleSheet) { callbackQWebEngineView_SetStyleSheet(this, this->objectName().toUtf8().data(), styleSheet.toUtf8().data()); }; void setVisible(bool visible) { callbackQWebEngineView_SetVisible(this, this->objectName().toUtf8().data(), visible); }; void setWindowModified(bool vbo) { callbackQWebEngineView_SetWindowModified(this, this->objectName().toUtf8().data(), vbo); }; void setWindowTitle(const QString & vqs) { callbackQWebEngineView_SetWindowTitle(this, this->objectName().toUtf8().data(), vqs.toUtf8().data()); }; void changeEvent(QEvent * event) { callbackQWebEngineView_ChangeEvent(this, this->objectName().toUtf8().data(), event); }; bool close() { return callbackQWebEngineView_Close(this, this->objectName().toUtf8().data()) != 0; }; void closeEvent(QCloseEvent * event) { callbackQWebEngineView_CloseEvent(this, this->objectName().toUtf8().data(), event); }; bool focusNextPrevChild(bool next) { return callbackQWebEngineView_FocusNextPrevChild(this, this->objectName().toUtf8().data(), next) != 0; }; bool hasHeightForWidth() const { return callbackQWebEngineView_HasHeightForWidth(const_cast(this), this->objectName().toUtf8().data()) != 0; }; int heightForWidth(int w) const { return callbackQWebEngineView_HeightForWidth(const_cast(this), this->objectName().toUtf8().data(), w); }; void hide() { callbackQWebEngineView_Hide(this, this->objectName().toUtf8().data()); }; void inputMethodEvent(QInputMethodEvent * event) { callbackQWebEngineView_InputMethodEvent(this, this->objectName().toUtf8().data(), event); }; QVariant inputMethodQuery(Qt::InputMethodQuery query) const { return *static_cast(callbackQWebEngineView_InputMethodQuery(const_cast(this), this->objectName().toUtf8().data(), query)); }; void keyPressEvent(QKeyEvent * event) { callbackQWebEngineView_KeyPressEvent(this, this->objectName().toUtf8().data(), event); }; void keyReleaseEvent(QKeyEvent * event) { callbackQWebEngineView_KeyReleaseEvent(this, this->objectName().toUtf8().data(), event); }; void lower() { callbackQWebEngineView_Lower(this, this->objectName().toUtf8().data()); }; void mouseDoubleClickEvent(QMouseEvent * event) { callbackQWebEngineView_MouseDoubleClickEvent(this, this->objectName().toUtf8().data(), event); }; void mouseMoveEvent(QMouseEvent * event) { callbackQWebEngineView_MouseMoveEvent(this, this->objectName().toUtf8().data(), event); }; void mousePressEvent(QMouseEvent * event) { callbackQWebEngineView_MousePressEvent(this, this->objectName().toUtf8().data(), event); }; void mouseReleaseEvent(QMouseEvent * event) { callbackQWebEngineView_MouseReleaseEvent(this, this->objectName().toUtf8().data(), event); }; bool nativeEvent(const QByteArray & eventType, void * message, long * result) { return callbackQWebEngineView_NativeEvent(this, this->objectName().toUtf8().data(), QString(eventType).toUtf8().data(), message, *result) != 0; }; void raise() { callbackQWebEngineView_Raise(this, this->objectName().toUtf8().data()); }; void repaint() { callbackQWebEngineView_Repaint(this, this->objectName().toUtf8().data()); }; void resizeEvent(QResizeEvent * event) { callbackQWebEngineView_ResizeEvent(this, this->objectName().toUtf8().data(), event); }; void setDisabled(bool disable) { callbackQWebEngineView_SetDisabled(this, this->objectName().toUtf8().data(), disable); }; void setFocus() { callbackQWebEngineView_SetFocus2(this, this->objectName().toUtf8().data()); }; void setHidden(bool hidden) { callbackQWebEngineView_SetHidden(this, this->objectName().toUtf8().data(), hidden); }; void show() { callbackQWebEngineView_Show(this, this->objectName().toUtf8().data()); }; void showFullScreen() { callbackQWebEngineView_ShowFullScreen(this, this->objectName().toUtf8().data()); }; void showMaximized() { callbackQWebEngineView_ShowMaximized(this, this->objectName().toUtf8().data()); }; void showMinimized() { callbackQWebEngineView_ShowMinimized(this, this->objectName().toUtf8().data()); }; void showNormal() { callbackQWebEngineView_ShowNormal(this, this->objectName().toUtf8().data()); }; void tabletEvent(QTabletEvent * event) { callbackQWebEngineView_TabletEvent(this, this->objectName().toUtf8().data(), event); }; void update() { callbackQWebEngineView_Update(this, this->objectName().toUtf8().data()); }; void updateMicroFocus() { callbackQWebEngineView_UpdateMicroFocus(this, this->objectName().toUtf8().data()); }; void wheelEvent(QWheelEvent * event) { callbackQWebEngineView_WheelEvent(this, this->objectName().toUtf8().data(), event); }; void timerEvent(QTimerEvent * event) { callbackQWebEngineView_TimerEvent(this, this->objectName().toUtf8().data(), event); }; void childEvent(QChildEvent * event) { callbackQWebEngineView_ChildEvent(this, this->objectName().toUtf8().data(), event); }; void connectNotify(const QMetaMethod & sign) { callbackQWebEngineView_ConnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; void customEvent(QEvent * event) { callbackQWebEngineView_CustomEvent(this, this->objectName().toUtf8().data(), event); }; void deleteLater() { callbackQWebEngineView_DeleteLater(this, this->objectName().toUtf8().data()); }; void disconnectNotify(const QMetaMethod & sign) { callbackQWebEngineView_DisconnectNotify(this, this->objectName().toUtf8().data(), new QMetaMethod(sign)); }; bool eventFilter(QObject * watched, QEvent * event) { return callbackQWebEngineView_EventFilter(this, this->objectName().toUtf8().data(), watched, event) != 0; }; const QMetaObject * metaObject() const { return static_cast(callbackQWebEngineView_MetaObject(const_cast(this), this->objectName().toUtf8().data())); }; }; void* QWebEngineView_NewQWebEngineView(void* parent) { return new MyQWebEngineView(static_cast(parent)); } void QWebEngineView_Back(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "back"); } void* QWebEngineView_CreateWindow(void* ptr, int ty) { return static_cast(ptr)->createWindow(static_cast(ty)); } void* QWebEngineView_CreateWindowDefault(void* ptr, int ty) { return static_cast(ptr)->QWebEngineView::createWindow(static_cast(ty)); } void QWebEngineView_Forward(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "forward"); } int QWebEngineView_HasSelection(void* ptr) { return static_cast(ptr)->hasSelection(); } void* QWebEngineView_History(void* ptr) { return static_cast(ptr)->history(); } void* QWebEngineView_Icon(void* ptr) { return new QIcon(static_cast(ptr)->icon()); } void* QWebEngineView_IconUrl(void* ptr) { return new QUrl(static_cast(ptr)->iconUrl()); } void QWebEngineView_Load(void* ptr, void* url) { static_cast(ptr)->load(*static_cast(url)); } void* QWebEngineView_Page(void* ptr) { return static_cast(ptr)->page(); } void* QWebEngineView_PageAction(void* ptr, int action) { return static_cast(ptr)->pageAction(static_cast(action)); } void QWebEngineView_Reload(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "reload"); } char* QWebEngineView_SelectedText(void* ptr) { return static_cast(ptr)->selectedText().toUtf8().data(); } void QWebEngineView_SetContent(void* ptr, char* data, char* mimeType, void* baseUrl) { static_cast(ptr)->setContent(QByteArray(data), QString(mimeType), *static_cast(baseUrl)); } void QWebEngineView_SetHtml(void* ptr, char* html, void* baseUrl) { static_cast(ptr)->setHtml(QString(html), *static_cast(baseUrl)); } void QWebEngineView_SetPage(void* ptr, void* page) { static_cast(ptr)->setPage(static_cast(page)); } void QWebEngineView_SetUrl(void* ptr, void* url) { static_cast(ptr)->setUrl(*static_cast(url)); } void QWebEngineView_SetZoomFactor(void* ptr, double factor) { static_cast(ptr)->setZoomFactor(static_cast(factor)); } void* QWebEngineView_Settings(void* ptr) { return static_cast(ptr)->settings(); } void QWebEngineView_Stop(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "stop"); } char* QWebEngineView_Title(void* ptr) { return static_cast(ptr)->title().toUtf8().data(); } void QWebEngineView_TriggerPageAction(void* ptr, int action, int checked) { static_cast(ptr)->triggerPageAction(static_cast(action), checked != 0); } void* QWebEngineView_Url(void* ptr) { return new QUrl(static_cast(ptr)->url()); } double QWebEngineView_ZoomFactor(void* ptr) { return static_cast(static_cast(ptr)->zoomFactor()); } void QWebEngineView_DestroyQWebEngineView(void* ptr) { static_cast(ptr)->~QWebEngineView(); } void QWebEngineView_ContextMenuEvent(void* ptr, void* event) { static_cast(ptr)->contextMenuEvent(static_cast(event)); } void QWebEngineView_ContextMenuEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::contextMenuEvent(static_cast(event)); } void QWebEngineView_DragEnterEvent(void* ptr, void* e) { static_cast(ptr)->dragEnterEvent(static_cast(e)); } void QWebEngineView_DragLeaveEvent(void* ptr, void* e) { static_cast(ptr)->dragLeaveEvent(static_cast(e)); } void QWebEngineView_DragMoveEvent(void* ptr, void* e) { static_cast(ptr)->dragMoveEvent(static_cast(e)); } void QWebEngineView_DropEvent(void* ptr, void* e) { static_cast(ptr)->dropEvent(static_cast(e)); } int QWebEngineView_Event(void* ptr, void* ev) { return static_cast(ptr)->event(static_cast(ev)); } int QWebEngineView_EventDefault(void* ptr, void* ev) { return static_cast(ptr)->QWebEngineView::event(static_cast(ev)); } void QWebEngineView_FindText(void* ptr, char* subString, int options) { static_cast(ptr)->findText(QString(subString), static_cast(options)); } void QWebEngineView_HideEvent(void* ptr, void* event) { static_cast(ptr)->hideEvent(static_cast(event)); } void QWebEngineView_HideEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::hideEvent(static_cast(event)); } void QWebEngineView_ConnectIconChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEngineView::iconChanged), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_IconChanged)); } void QWebEngineView_DisconnectIconChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEngineView::iconChanged), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_IconChanged)); } void QWebEngineView_IconChanged(void* ptr, void* icon) { static_cast(ptr)->iconChanged(*static_cast(icon)); } void QWebEngineView_ConnectIconUrlChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEngineView::iconUrlChanged), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_IconUrlChanged)); } void QWebEngineView_DisconnectIconUrlChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEngineView::iconUrlChanged), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_IconUrlChanged)); } void QWebEngineView_IconUrlChanged(void* ptr, void* url) { static_cast(ptr)->iconUrlChanged(*static_cast(url)); } void QWebEngineView_ConnectLoadFinished(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEngineView::loadFinished), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_LoadFinished)); } void QWebEngineView_DisconnectLoadFinished(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEngineView::loadFinished), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_LoadFinished)); } void QWebEngineView_LoadFinished(void* ptr, int ok) { static_cast(ptr)->loadFinished(ok != 0); } void QWebEngineView_ConnectLoadProgress(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEngineView::loadProgress), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_LoadProgress)); } void QWebEngineView_DisconnectLoadProgress(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEngineView::loadProgress), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_LoadProgress)); } void QWebEngineView_LoadProgress(void* ptr, int progress) { static_cast(ptr)->loadProgress(progress); } void QWebEngineView_ConnectLoadStarted(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEngineView::loadStarted), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_LoadStarted)); } void QWebEngineView_DisconnectLoadStarted(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEngineView::loadStarted), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_LoadStarted)); } void QWebEngineView_LoadStarted(void* ptr) { static_cast(ptr)->loadStarted(); } void QWebEngineView_ConnectRenderProcessTerminated(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEngineView::renderProcessTerminated), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_RenderProcessTerminated)); } void QWebEngineView_DisconnectRenderProcessTerminated(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEngineView::renderProcessTerminated), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_RenderProcessTerminated)); } void QWebEngineView_RenderProcessTerminated(void* ptr, int terminationStatus, int exitCode) { static_cast(ptr)->renderProcessTerminated(static_cast(terminationStatus), exitCode); } void QWebEngineView_ConnectSelectionChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEngineView::selectionChanged), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_SelectionChanged)); } void QWebEngineView_DisconnectSelectionChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEngineView::selectionChanged), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_SelectionChanged)); } void QWebEngineView_SelectionChanged(void* ptr) { static_cast(ptr)->selectionChanged(); } void QWebEngineView_ShowEvent(void* ptr, void* event) { static_cast(ptr)->showEvent(static_cast(event)); } void QWebEngineView_ShowEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::showEvent(static_cast(event)); } void* QWebEngineView_SizeHint(void* ptr) { return new QSize(static_cast(static_cast(ptr)->sizeHint()).width(), static_cast(static_cast(ptr)->sizeHint()).height()); } void* QWebEngineView_SizeHintDefault(void* ptr) { return new QSize(static_cast(static_cast(ptr)->QWebEngineView::sizeHint()).width(), static_cast(static_cast(ptr)->QWebEngineView::sizeHint()).height()); } void QWebEngineView_ConnectTitleChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEngineView::titleChanged), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_TitleChanged)); } void QWebEngineView_DisconnectTitleChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEngineView::titleChanged), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_TitleChanged)); } void QWebEngineView_TitleChanged(void* ptr, char* title) { static_cast(ptr)->titleChanged(QString(title)); } void QWebEngineView_ConnectUrlChanged(void* ptr) { QObject::connect(static_cast(ptr), static_cast(&QWebEngineView::urlChanged), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_UrlChanged)); } void QWebEngineView_DisconnectUrlChanged(void* ptr) { QObject::disconnect(static_cast(ptr), static_cast(&QWebEngineView::urlChanged), static_cast(ptr), static_cast(&MyQWebEngineView::Signal_UrlChanged)); } void QWebEngineView_UrlChanged(void* ptr, void* url) { static_cast(ptr)->urlChanged(*static_cast(url)); } void QWebEngineView_ActionEvent(void* ptr, void* event) { static_cast(ptr)->actionEvent(static_cast(event)); } void QWebEngineView_ActionEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::actionEvent(static_cast(event)); } void QWebEngineView_EnterEvent(void* ptr, void* event) { static_cast(ptr)->enterEvent(static_cast(event)); } void QWebEngineView_EnterEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::enterEvent(static_cast(event)); } void QWebEngineView_FocusInEvent(void* ptr, void* event) { static_cast(ptr)->focusInEvent(static_cast(event)); } void QWebEngineView_FocusInEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::focusInEvent(static_cast(event)); } void QWebEngineView_FocusOutEvent(void* ptr, void* event) { static_cast(ptr)->focusOutEvent(static_cast(event)); } void QWebEngineView_FocusOutEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::focusOutEvent(static_cast(event)); } void QWebEngineView_LeaveEvent(void* ptr, void* event) { static_cast(ptr)->leaveEvent(static_cast(event)); } void QWebEngineView_LeaveEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::leaveEvent(static_cast(event)); } void* QWebEngineView_MinimumSizeHint(void* ptr) { return new QSize(static_cast(static_cast(ptr)->minimumSizeHint()).width(), static_cast(static_cast(ptr)->minimumSizeHint()).height()); } void* QWebEngineView_MinimumSizeHintDefault(void* ptr) { return new QSize(static_cast(static_cast(ptr)->QWebEngineView::minimumSizeHint()).width(), static_cast(static_cast(ptr)->QWebEngineView::minimumSizeHint()).height()); } void QWebEngineView_MoveEvent(void* ptr, void* event) { static_cast(ptr)->moveEvent(static_cast(event)); } void QWebEngineView_MoveEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::moveEvent(static_cast(event)); } void QWebEngineView_PaintEvent(void* ptr, void* event) { static_cast(ptr)->paintEvent(static_cast(event)); } void QWebEngineView_PaintEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::paintEvent(static_cast(event)); } void QWebEngineView_SetEnabled(void* ptr, int vbo) { QMetaObject::invokeMethod(static_cast(ptr), "setEnabled", Q_ARG(bool, vbo != 0)); } void QWebEngineView_SetEnabledDefault(void* ptr, int vbo) { static_cast(ptr)->QWebEngineView::setEnabled(vbo != 0); } void QWebEngineView_SetStyleSheet(void* ptr, char* styleSheet) { QMetaObject::invokeMethod(static_cast(ptr), "setStyleSheet", Q_ARG(QString, QString(styleSheet))); } void QWebEngineView_SetStyleSheetDefault(void* ptr, char* styleSheet) { static_cast(ptr)->QWebEngineView::setStyleSheet(QString(styleSheet)); } void QWebEngineView_SetVisible(void* ptr, int visible) { QMetaObject::invokeMethod(static_cast(ptr), "setVisible", Q_ARG(bool, visible != 0)); } void QWebEngineView_SetVisibleDefault(void* ptr, int visible) { static_cast(ptr)->QWebEngineView::setVisible(visible != 0); } void QWebEngineView_SetWindowModified(void* ptr, int vbo) { QMetaObject::invokeMethod(static_cast(ptr), "setWindowModified", Q_ARG(bool, vbo != 0)); } void QWebEngineView_SetWindowModifiedDefault(void* ptr, int vbo) { static_cast(ptr)->QWebEngineView::setWindowModified(vbo != 0); } void QWebEngineView_SetWindowTitle(void* ptr, char* vqs) { QMetaObject::invokeMethod(static_cast(ptr), "setWindowTitle", Q_ARG(QString, QString(vqs))); } void QWebEngineView_SetWindowTitleDefault(void* ptr, char* vqs) { static_cast(ptr)->QWebEngineView::setWindowTitle(QString(vqs)); } void QWebEngineView_ChangeEvent(void* ptr, void* event) { static_cast(ptr)->changeEvent(static_cast(event)); } void QWebEngineView_ChangeEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::changeEvent(static_cast(event)); } int QWebEngineView_Close(void* ptr) { bool returnArg; QMetaObject::invokeMethod(static_cast(ptr), "close", Q_RETURN_ARG(bool, returnArg)); return returnArg; } int QWebEngineView_CloseDefault(void* ptr) { return static_cast(ptr)->QWebEngineView::close(); } void QWebEngineView_CloseEvent(void* ptr, void* event) { static_cast(ptr)->closeEvent(static_cast(event)); } void QWebEngineView_CloseEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::closeEvent(static_cast(event)); } int QWebEngineView_FocusNextPrevChild(void* ptr, int next) { return static_cast(ptr)->focusNextPrevChild(next != 0); } int QWebEngineView_FocusNextPrevChildDefault(void* ptr, int next) { return static_cast(ptr)->QWebEngineView::focusNextPrevChild(next != 0); } int QWebEngineView_HasHeightForWidth(void* ptr) { return static_cast(ptr)->hasHeightForWidth(); } int QWebEngineView_HasHeightForWidthDefault(void* ptr) { return static_cast(ptr)->QWebEngineView::hasHeightForWidth(); } int QWebEngineView_HeightForWidth(void* ptr, int w) { return static_cast(ptr)->heightForWidth(w); } int QWebEngineView_HeightForWidthDefault(void* ptr, int w) { return static_cast(ptr)->QWebEngineView::heightForWidth(w); } void QWebEngineView_Hide(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "hide"); } void QWebEngineView_HideDefault(void* ptr) { static_cast(ptr)->QWebEngineView::hide(); } void QWebEngineView_InputMethodEvent(void* ptr, void* event) { static_cast(ptr)->inputMethodEvent(static_cast(event)); } void QWebEngineView_InputMethodEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::inputMethodEvent(static_cast(event)); } void* QWebEngineView_InputMethodQuery(void* ptr, int query) { return new QVariant(static_cast(ptr)->inputMethodQuery(static_cast(query))); } void* QWebEngineView_InputMethodQueryDefault(void* ptr, int query) { return new QVariant(static_cast(ptr)->QWebEngineView::inputMethodQuery(static_cast(query))); } void QWebEngineView_KeyPressEvent(void* ptr, void* event) { static_cast(ptr)->keyPressEvent(static_cast(event)); } void QWebEngineView_KeyPressEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::keyPressEvent(static_cast(event)); } void QWebEngineView_KeyReleaseEvent(void* ptr, void* event) { static_cast(ptr)->keyReleaseEvent(static_cast(event)); } void QWebEngineView_KeyReleaseEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::keyReleaseEvent(static_cast(event)); } void QWebEngineView_Lower(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "lower"); } void QWebEngineView_LowerDefault(void* ptr) { static_cast(ptr)->QWebEngineView::lower(); } void QWebEngineView_MouseDoubleClickEvent(void* ptr, void* event) { static_cast(ptr)->mouseDoubleClickEvent(static_cast(event)); } void QWebEngineView_MouseDoubleClickEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::mouseDoubleClickEvent(static_cast(event)); } void QWebEngineView_MouseMoveEvent(void* ptr, void* event) { static_cast(ptr)->mouseMoveEvent(static_cast(event)); } void QWebEngineView_MouseMoveEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::mouseMoveEvent(static_cast(event)); } void QWebEngineView_MousePressEvent(void* ptr, void* event) { static_cast(ptr)->mousePressEvent(static_cast(event)); } void QWebEngineView_MousePressEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::mousePressEvent(static_cast(event)); } void QWebEngineView_MouseReleaseEvent(void* ptr, void* event) { static_cast(ptr)->mouseReleaseEvent(static_cast(event)); } void QWebEngineView_MouseReleaseEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::mouseReleaseEvent(static_cast(event)); } int QWebEngineView_NativeEvent(void* ptr, char* eventType, void* message, long result) { return static_cast(ptr)->nativeEvent(QByteArray(eventType), message, &result); } int QWebEngineView_NativeEventDefault(void* ptr, char* eventType, void* message, long result) { return static_cast(ptr)->QWebEngineView::nativeEvent(QByteArray(eventType), message, &result); } void QWebEngineView_Raise(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "raise"); } void QWebEngineView_RaiseDefault(void* ptr) { static_cast(ptr)->QWebEngineView::raise(); } void QWebEngineView_Repaint(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "repaint"); } void QWebEngineView_RepaintDefault(void* ptr) { static_cast(ptr)->QWebEngineView::repaint(); } void QWebEngineView_ResizeEvent(void* ptr, void* event) { static_cast(ptr)->resizeEvent(static_cast(event)); } void QWebEngineView_ResizeEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::resizeEvent(static_cast(event)); } void QWebEngineView_SetDisabled(void* ptr, int disable) { QMetaObject::invokeMethod(static_cast(ptr), "setDisabled", Q_ARG(bool, disable != 0)); } void QWebEngineView_SetDisabledDefault(void* ptr, int disable) { static_cast(ptr)->QWebEngineView::setDisabled(disable != 0); } void QWebEngineView_SetFocus2(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "setFocus"); } void QWebEngineView_SetFocus2Default(void* ptr) { static_cast(ptr)->QWebEngineView::setFocus(); } void QWebEngineView_SetHidden(void* ptr, int hidden) { QMetaObject::invokeMethod(static_cast(ptr), "setHidden", Q_ARG(bool, hidden != 0)); } void QWebEngineView_SetHiddenDefault(void* ptr, int hidden) { static_cast(ptr)->QWebEngineView::setHidden(hidden != 0); } void QWebEngineView_Show(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "show"); } void QWebEngineView_ShowDefault(void* ptr) { static_cast(ptr)->QWebEngineView::show(); } void QWebEngineView_ShowFullScreen(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "showFullScreen"); } void QWebEngineView_ShowFullScreenDefault(void* ptr) { static_cast(ptr)->QWebEngineView::showFullScreen(); } void QWebEngineView_ShowMaximized(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "showMaximized"); } void QWebEngineView_ShowMaximizedDefault(void* ptr) { static_cast(ptr)->QWebEngineView::showMaximized(); } void QWebEngineView_ShowMinimized(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "showMinimized"); } void QWebEngineView_ShowMinimizedDefault(void* ptr) { static_cast(ptr)->QWebEngineView::showMinimized(); } void QWebEngineView_ShowNormal(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "showNormal"); } void QWebEngineView_ShowNormalDefault(void* ptr) { static_cast(ptr)->QWebEngineView::showNormal(); } void QWebEngineView_TabletEvent(void* ptr, void* event) { static_cast(ptr)->tabletEvent(static_cast(event)); } void QWebEngineView_TabletEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::tabletEvent(static_cast(event)); } void QWebEngineView_Update(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "update"); } void QWebEngineView_UpdateDefault(void* ptr) { static_cast(ptr)->QWebEngineView::update(); } void QWebEngineView_UpdateMicroFocus(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "updateMicroFocus"); } void QWebEngineView_UpdateMicroFocusDefault(void* ptr) { static_cast(ptr)->QWebEngineView::updateMicroFocus(); } void QWebEngineView_WheelEvent(void* ptr, void* event) { static_cast(ptr)->wheelEvent(static_cast(event)); } void QWebEngineView_WheelEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::wheelEvent(static_cast(event)); } void QWebEngineView_TimerEvent(void* ptr, void* event) { static_cast(ptr)->timerEvent(static_cast(event)); } void QWebEngineView_TimerEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::timerEvent(static_cast(event)); } void QWebEngineView_ChildEvent(void* ptr, void* event) { static_cast(ptr)->childEvent(static_cast(event)); } void QWebEngineView_ChildEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::childEvent(static_cast(event)); } void QWebEngineView_ConnectNotify(void* ptr, void* sign) { static_cast(ptr)->connectNotify(*static_cast(sign)); } void QWebEngineView_ConnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEngineView::connectNotify(*static_cast(sign)); } void QWebEngineView_CustomEvent(void* ptr, void* event) { static_cast(ptr)->customEvent(static_cast(event)); } void QWebEngineView_CustomEventDefault(void* ptr, void* event) { static_cast(ptr)->QWebEngineView::customEvent(static_cast(event)); } void QWebEngineView_DeleteLater(void* ptr) { QMetaObject::invokeMethod(static_cast(ptr), "deleteLater"); } void QWebEngineView_DeleteLaterDefault(void* ptr) { static_cast(ptr)->QWebEngineView::deleteLater(); } void QWebEngineView_DisconnectNotify(void* ptr, void* sign) { static_cast(ptr)->disconnectNotify(*static_cast(sign)); } void QWebEngineView_DisconnectNotifyDefault(void* ptr, void* sign) { static_cast(ptr)->QWebEngineView::disconnectNotify(*static_cast(sign)); } int QWebEngineView_EventFilter(void* ptr, void* watched, void* event) { return static_cast(ptr)->eventFilter(static_cast(watched), static_cast(event)); } int QWebEngineView_EventFilterDefault(void* ptr, void* watched, void* event) { return static_cast(ptr)->QWebEngineView::eventFilter(static_cast(watched), static_cast(event)); } void* QWebEngineView_MetaObject(void* ptr) { return const_cast(static_cast(ptr)->metaObject()); } void* QWebEngineView_MetaObjectDefault(void* ptr) { return const_cast(static_cast(ptr)->QWebEngineView::metaObject()); }