#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "gen_qqmlwebchannel.h" #ifdef __cplusplus extern "C" { #endif bool miqt_exec_callback_QQmlWebChannel_event(QQmlWebChannel*, intptr_t, QEvent*); bool miqt_exec_callback_QQmlWebChannel_eventFilter(QQmlWebChannel*, intptr_t, QObject*, QEvent*); void miqt_exec_callback_QQmlWebChannel_timerEvent(QQmlWebChannel*, intptr_t, QTimerEvent*); void miqt_exec_callback_QQmlWebChannel_childEvent(QQmlWebChannel*, intptr_t, QChildEvent*); void miqt_exec_callback_QQmlWebChannel_customEvent(QQmlWebChannel*, intptr_t, QEvent*); void miqt_exec_callback_QQmlWebChannel_connectNotify(QQmlWebChannel*, intptr_t, QMetaMethod*); void miqt_exec_callback_QQmlWebChannel_disconnectNotify(QQmlWebChannel*, intptr_t, QMetaMethod*); #ifdef __cplusplus } /* extern C */ #endif class MiqtVirtualQQmlWebChannel final : public QQmlWebChannel { public: MiqtVirtualQQmlWebChannel(): QQmlWebChannel() {}; MiqtVirtualQQmlWebChannel(QObject* parent): QQmlWebChannel(parent) {}; virtual ~MiqtVirtualQQmlWebChannel() override = default; // cgo.Handle value for overwritten implementation intptr_t handle__event = 0; // Subclass to allow providing a Go implementation virtual bool event(QEvent* event) override { if (handle__event == 0) { return QQmlWebChannel::event(event); } QEvent* sigval1 = event; bool callback_return_value = miqt_exec_callback_QQmlWebChannel_event(this, handle__event, sigval1); return callback_return_value; } // Wrapper to allow calling protected method bool virtualbase_event(QEvent* event) { return QQmlWebChannel::event(event); } // cgo.Handle value for overwritten implementation intptr_t handle__eventFilter = 0; // Subclass to allow providing a Go implementation virtual bool eventFilter(QObject* watched, QEvent* event) override { if (handle__eventFilter == 0) { return QQmlWebChannel::eventFilter(watched, event); } QObject* sigval1 = watched; QEvent* sigval2 = event; bool callback_return_value = miqt_exec_callback_QQmlWebChannel_eventFilter(this, handle__eventFilter, sigval1, sigval2); return callback_return_value; } // Wrapper to allow calling protected method bool virtualbase_eventFilter(QObject* watched, QEvent* event) { return QQmlWebChannel::eventFilter(watched, event); } // cgo.Handle value for overwritten implementation intptr_t handle__timerEvent = 0; // Subclass to allow providing a Go implementation virtual void timerEvent(QTimerEvent* event) override { if (handle__timerEvent == 0) { QQmlWebChannel::timerEvent(event); return; } QTimerEvent* sigval1 = event; miqt_exec_callback_QQmlWebChannel_timerEvent(this, handle__timerEvent, sigval1); } // Wrapper to allow calling protected method void virtualbase_timerEvent(QTimerEvent* event) { QQmlWebChannel::timerEvent(event); } // cgo.Handle value for overwritten implementation intptr_t handle__childEvent = 0; // Subclass to allow providing a Go implementation virtual void childEvent(QChildEvent* event) override { if (handle__childEvent == 0) { QQmlWebChannel::childEvent(event); return; } QChildEvent* sigval1 = event; miqt_exec_callback_QQmlWebChannel_childEvent(this, handle__childEvent, sigval1); } // Wrapper to allow calling protected method void virtualbase_childEvent(QChildEvent* event) { QQmlWebChannel::childEvent(event); } // cgo.Handle value for overwritten implementation intptr_t handle__customEvent = 0; // Subclass to allow providing a Go implementation virtual void customEvent(QEvent* event) override { if (handle__customEvent == 0) { QQmlWebChannel::customEvent(event); return; } QEvent* sigval1 = event; miqt_exec_callback_QQmlWebChannel_customEvent(this, handle__customEvent, sigval1); } // Wrapper to allow calling protected method void virtualbase_customEvent(QEvent* event) { QQmlWebChannel::customEvent(event); } // cgo.Handle value for overwritten implementation intptr_t handle__connectNotify = 0; // Subclass to allow providing a Go implementation virtual void connectNotify(const QMetaMethod& signal) override { if (handle__connectNotify == 0) { QQmlWebChannel::connectNotify(signal); return; } const QMetaMethod& signal_ret = signal; // Cast returned reference into pointer QMetaMethod* sigval1 = const_cast(&signal_ret); miqt_exec_callback_QQmlWebChannel_connectNotify(this, handle__connectNotify, sigval1); } // Wrapper to allow calling protected method void virtualbase_connectNotify(QMetaMethod* signal) { QQmlWebChannel::connectNotify(*signal); } // cgo.Handle value for overwritten implementation intptr_t handle__disconnectNotify = 0; // Subclass to allow providing a Go implementation virtual void disconnectNotify(const QMetaMethod& signal) override { if (handle__disconnectNotify == 0) { QQmlWebChannel::disconnectNotify(signal); return; } const QMetaMethod& signal_ret = signal; // Cast returned reference into pointer QMetaMethod* sigval1 = const_cast(&signal_ret); miqt_exec_callback_QQmlWebChannel_disconnectNotify(this, handle__disconnectNotify, sigval1); } // Wrapper to allow calling protected method void virtualbase_disconnectNotify(QMetaMethod* signal) { QQmlWebChannel::disconnectNotify(*signal); } }; QQmlWebChannel* QQmlWebChannel_new() { return new MiqtVirtualQQmlWebChannel(); } QQmlWebChannel* QQmlWebChannel_new2(QObject* parent) { return new MiqtVirtualQQmlWebChannel(parent); } void QQmlWebChannel_virtbase(QQmlWebChannel* src, QWebChannel** outptr_QWebChannel) { *outptr_QWebChannel = static_cast(src); } QMetaObject* QQmlWebChannel_metaObject(const QQmlWebChannel* self) { return (QMetaObject*) self->metaObject(); } void* QQmlWebChannel_metacast(QQmlWebChannel* self, const char* param1) { return self->qt_metacast(param1); } struct miqt_string QQmlWebChannel_tr(const char* s) { QString _ret = QQmlWebChannel::tr(s); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _b = _ret.toUtf8(); struct miqt_string _ms; _ms.len = _b.length(); _ms.data = static_cast(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } struct miqt_string QQmlWebChannel_trUtf8(const char* s) { QString _ret = QQmlWebChannel::trUtf8(s); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _b = _ret.toUtf8(); struct miqt_string _ms; _ms.len = _b.length(); _ms.data = static_cast(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } void QQmlWebChannel_registerObjects(QQmlWebChannel* self, struct miqt_map /* of struct miqt_string to QVariant* */ objects) { QVariantMap objects_QMap; struct miqt_string* objects_karr = static_cast(objects.keys); QVariant** objects_varr = static_cast(objects.values); for(size_t i = 0; i < objects.len; ++i) { QString objects_karr_i_QString = QString::fromUtf8(objects_karr[i].data, objects_karr[i].len); objects_QMap[objects_karr_i_QString] = *(objects_varr[i]); } self->registerObjects(objects_QMap); } void QQmlWebChannel_connectTo(QQmlWebChannel* self, QObject* transport) { self->connectTo(transport); } void QQmlWebChannel_disconnectFrom(QQmlWebChannel* self, QObject* transport) { self->disconnectFrom(transport); } struct miqt_string QQmlWebChannel_tr2(const char* s, const char* c) { QString _ret = QQmlWebChannel::tr(s, c); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _b = _ret.toUtf8(); struct miqt_string _ms; _ms.len = _b.length(); _ms.data = static_cast(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } struct miqt_string QQmlWebChannel_tr3(const char* s, const char* c, int n) { QString _ret = QQmlWebChannel::tr(s, c, static_cast(n)); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _b = _ret.toUtf8(); struct miqt_string _ms; _ms.len = _b.length(); _ms.data = static_cast(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } struct miqt_string QQmlWebChannel_trUtf82(const char* s, const char* c) { QString _ret = QQmlWebChannel::trUtf8(s, c); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _b = _ret.toUtf8(); struct miqt_string _ms; _ms.len = _b.length(); _ms.data = static_cast(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } struct miqt_string QQmlWebChannel_trUtf83(const char* s, const char* c, int n) { QString _ret = QQmlWebChannel::trUtf8(s, c, static_cast(n)); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _b = _ret.toUtf8(); struct miqt_string _ms; _ms.len = _b.length(); _ms.data = static_cast(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } bool QQmlWebChannel_override_virtual_event(void* self, intptr_t slot) { MiqtVirtualQQmlWebChannel* self_cast = dynamic_cast( (QQmlWebChannel*)(self) ); if (self_cast == nullptr) { return false; } self_cast->handle__event = slot; return true; } bool QQmlWebChannel_virtualbase_event(void* self, QEvent* event) { return ( (MiqtVirtualQQmlWebChannel*)(self) )->virtualbase_event(event); } bool QQmlWebChannel_override_virtual_eventFilter(void* self, intptr_t slot) { MiqtVirtualQQmlWebChannel* self_cast = dynamic_cast( (QQmlWebChannel*)(self) ); if (self_cast == nullptr) { return false; } self_cast->handle__eventFilter = slot; return true; } bool QQmlWebChannel_virtualbase_eventFilter(void* self, QObject* watched, QEvent* event) { return ( (MiqtVirtualQQmlWebChannel*)(self) )->virtualbase_eventFilter(watched, event); } bool QQmlWebChannel_override_virtual_timerEvent(void* self, intptr_t slot) { MiqtVirtualQQmlWebChannel* self_cast = dynamic_cast( (QQmlWebChannel*)(self) ); if (self_cast == nullptr) { return false; } self_cast->handle__timerEvent = slot; return true; } void QQmlWebChannel_virtualbase_timerEvent(void* self, QTimerEvent* event) { ( (MiqtVirtualQQmlWebChannel*)(self) )->virtualbase_timerEvent(event); } bool QQmlWebChannel_override_virtual_childEvent(void* self, intptr_t slot) { MiqtVirtualQQmlWebChannel* self_cast = dynamic_cast( (QQmlWebChannel*)(self) ); if (self_cast == nullptr) { return false; } self_cast->handle__childEvent = slot; return true; } void QQmlWebChannel_virtualbase_childEvent(void* self, QChildEvent* event) { ( (MiqtVirtualQQmlWebChannel*)(self) )->virtualbase_childEvent(event); } bool QQmlWebChannel_override_virtual_customEvent(void* self, intptr_t slot) { MiqtVirtualQQmlWebChannel* self_cast = dynamic_cast( (QQmlWebChannel*)(self) ); if (self_cast == nullptr) { return false; } self_cast->handle__customEvent = slot; return true; } void QQmlWebChannel_virtualbase_customEvent(void* self, QEvent* event) { ( (MiqtVirtualQQmlWebChannel*)(self) )->virtualbase_customEvent(event); } bool QQmlWebChannel_override_virtual_connectNotify(void* self, intptr_t slot) { MiqtVirtualQQmlWebChannel* self_cast = dynamic_cast( (QQmlWebChannel*)(self) ); if (self_cast == nullptr) { return false; } self_cast->handle__connectNotify = slot; return true; } void QQmlWebChannel_virtualbase_connectNotify(void* self, QMetaMethod* signal) { ( (MiqtVirtualQQmlWebChannel*)(self) )->virtualbase_connectNotify(signal); } bool QQmlWebChannel_override_virtual_disconnectNotify(void* self, intptr_t slot) { MiqtVirtualQQmlWebChannel* self_cast = dynamic_cast( (QQmlWebChannel*)(self) ); if (self_cast == nullptr) { return false; } self_cast->handle__disconnectNotify = slot; return true; } void QQmlWebChannel_virtualbase_disconnectNotify(void* self, QMetaMethod* signal) { ( (MiqtVirtualQQmlWebChannel*)(self) )->virtualbase_disconnectNotify(signal); } void QQmlWebChannel_delete(QQmlWebChannel* self) { delete self; }