#include #include #include #include #include #include #include #include #include #include #include #include #include "gen_qiconengineplugin.h" #ifdef __cplusplus extern "C" { #endif QIconEngine* miqt_exec_callback_QIconEnginePlugin_create(QIconEnginePlugin*, intptr_t, struct miqt_string); bool miqt_exec_callback_QIconEnginePlugin_event(QIconEnginePlugin*, intptr_t, QEvent*); bool miqt_exec_callback_QIconEnginePlugin_eventFilter(QIconEnginePlugin*, intptr_t, QObject*, QEvent*); void miqt_exec_callback_QIconEnginePlugin_timerEvent(QIconEnginePlugin*, intptr_t, QTimerEvent*); void miqt_exec_callback_QIconEnginePlugin_childEvent(QIconEnginePlugin*, intptr_t, QChildEvent*); void miqt_exec_callback_QIconEnginePlugin_customEvent(QIconEnginePlugin*, intptr_t, QEvent*); void miqt_exec_callback_QIconEnginePlugin_connectNotify(QIconEnginePlugin*, intptr_t, QMetaMethod*); void miqt_exec_callback_QIconEnginePlugin_disconnectNotify(QIconEnginePlugin*, intptr_t, QMetaMethod*); #ifdef __cplusplus } /* extern C */ #endif class MiqtVirtualQIconEnginePlugin final : public QIconEnginePlugin { public: MiqtVirtualQIconEnginePlugin(): QIconEnginePlugin() {}; MiqtVirtualQIconEnginePlugin(QObject* parent): QIconEnginePlugin(parent) {}; virtual ~MiqtVirtualQIconEnginePlugin() override = default; // cgo.Handle value for overwritten implementation intptr_t handle__create = 0; // Subclass to allow providing a Go implementation virtual QIconEngine* create(const QString& filename) override { if (handle__create == 0) { return nullptr; // Pure virtual, there is no base we can call } const QString filename_ret = filename; // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray filename_b = filename_ret.toUtf8(); struct miqt_string filename_ms; filename_ms.len = filename_b.length(); filename_ms.data = static_cast(malloc(filename_ms.len)); memcpy(filename_ms.data, filename_b.data(), filename_ms.len); struct miqt_string sigval1 = filename_ms; QIconEngine* callback_return_value = miqt_exec_callback_QIconEnginePlugin_create(this, handle__create, sigval1); return callback_return_value; } // 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 QIconEnginePlugin::event(event); } QEvent* sigval1 = event; bool callback_return_value = miqt_exec_callback_QIconEnginePlugin_event(this, handle__event, sigval1); return callback_return_value; } // Wrapper to allow calling protected method bool virtualbase_event(QEvent* event) { return QIconEnginePlugin::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 QIconEnginePlugin::eventFilter(watched, event); } QObject* sigval1 = watched; QEvent* sigval2 = event; bool callback_return_value = miqt_exec_callback_QIconEnginePlugin_eventFilter(this, handle__eventFilter, sigval1, sigval2); return callback_return_value; } // Wrapper to allow calling protected method bool virtualbase_eventFilter(QObject* watched, QEvent* event) { return QIconEnginePlugin::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) { QIconEnginePlugin::timerEvent(event); return; } QTimerEvent* sigval1 = event; miqt_exec_callback_QIconEnginePlugin_timerEvent(this, handle__timerEvent, sigval1); } // Wrapper to allow calling protected method void virtualbase_timerEvent(QTimerEvent* event) { QIconEnginePlugin::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) { QIconEnginePlugin::childEvent(event); return; } QChildEvent* sigval1 = event; miqt_exec_callback_QIconEnginePlugin_childEvent(this, handle__childEvent, sigval1); } // Wrapper to allow calling protected method void virtualbase_childEvent(QChildEvent* event) { QIconEnginePlugin::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) { QIconEnginePlugin::customEvent(event); return; } QEvent* sigval1 = event; miqt_exec_callback_QIconEnginePlugin_customEvent(this, handle__customEvent, sigval1); } // Wrapper to allow calling protected method void virtualbase_customEvent(QEvent* event) { QIconEnginePlugin::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) { QIconEnginePlugin::connectNotify(signal); return; } const QMetaMethod& signal_ret = signal; // Cast returned reference into pointer QMetaMethod* sigval1 = const_cast(&signal_ret); miqt_exec_callback_QIconEnginePlugin_connectNotify(this, handle__connectNotify, sigval1); } // Wrapper to allow calling protected method void virtualbase_connectNotify(QMetaMethod* signal) { QIconEnginePlugin::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) { QIconEnginePlugin::disconnectNotify(signal); return; } const QMetaMethod& signal_ret = signal; // Cast returned reference into pointer QMetaMethod* sigval1 = const_cast(&signal_ret); miqt_exec_callback_QIconEnginePlugin_disconnectNotify(this, handle__disconnectNotify, sigval1); } // Wrapper to allow calling protected method void virtualbase_disconnectNotify(QMetaMethod* signal) { QIconEnginePlugin::disconnectNotify(*signal); } }; QIconEnginePlugin* QIconEnginePlugin_new() { return new MiqtVirtualQIconEnginePlugin(); } QIconEnginePlugin* QIconEnginePlugin_new2(QObject* parent) { return new MiqtVirtualQIconEnginePlugin(parent); } void QIconEnginePlugin_virtbase(QIconEnginePlugin* src, QObject** outptr_QObject) { *outptr_QObject = static_cast(src); } QMetaObject* QIconEnginePlugin_metaObject(const QIconEnginePlugin* self) { return (QMetaObject*) self->metaObject(); } void* QIconEnginePlugin_metacast(QIconEnginePlugin* self, const char* param1) { return self->qt_metacast(param1); } struct miqt_string QIconEnginePlugin_tr(const char* s) { QString _ret = QIconEnginePlugin::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 QIconEnginePlugin_trUtf8(const char* s) { QString _ret = QIconEnginePlugin::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; } QIconEngine* QIconEnginePlugin_create(QIconEnginePlugin* self, struct miqt_string filename) { QString filename_QString = QString::fromUtf8(filename.data, filename.len); return self->create(filename_QString); } struct miqt_string QIconEnginePlugin_tr2(const char* s, const char* c) { QString _ret = QIconEnginePlugin::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 QIconEnginePlugin_tr3(const char* s, const char* c, int n) { QString _ret = QIconEnginePlugin::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 QIconEnginePlugin_trUtf82(const char* s, const char* c) { QString _ret = QIconEnginePlugin::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 QIconEnginePlugin_trUtf83(const char* s, const char* c, int n) { QString _ret = QIconEnginePlugin::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 QIconEnginePlugin_override_virtual_create(void* self, intptr_t slot) { MiqtVirtualQIconEnginePlugin* self_cast = dynamic_cast( (QIconEnginePlugin*)(self) ); if (self_cast == nullptr) { return false; } self_cast->handle__create = slot; return true; } bool QIconEnginePlugin_override_virtual_event(void* self, intptr_t slot) { MiqtVirtualQIconEnginePlugin* self_cast = dynamic_cast( (QIconEnginePlugin*)(self) ); if (self_cast == nullptr) { return false; } self_cast->handle__event = slot; return true; } bool QIconEnginePlugin_virtualbase_event(void* self, QEvent* event) { return ( (MiqtVirtualQIconEnginePlugin*)(self) )->virtualbase_event(event); } bool QIconEnginePlugin_override_virtual_eventFilter(void* self, intptr_t slot) { MiqtVirtualQIconEnginePlugin* self_cast = dynamic_cast( (QIconEnginePlugin*)(self) ); if (self_cast == nullptr) { return false; } self_cast->handle__eventFilter = slot; return true; } bool QIconEnginePlugin_virtualbase_eventFilter(void* self, QObject* watched, QEvent* event) { return ( (MiqtVirtualQIconEnginePlugin*)(self) )->virtualbase_eventFilter(watched, event); } bool QIconEnginePlugin_override_virtual_timerEvent(void* self, intptr_t slot) { MiqtVirtualQIconEnginePlugin* self_cast = dynamic_cast( (QIconEnginePlugin*)(self) ); if (self_cast == nullptr) { return false; } self_cast->handle__timerEvent = slot; return true; } void QIconEnginePlugin_virtualbase_timerEvent(void* self, QTimerEvent* event) { ( (MiqtVirtualQIconEnginePlugin*)(self) )->virtualbase_timerEvent(event); } bool QIconEnginePlugin_override_virtual_childEvent(void* self, intptr_t slot) { MiqtVirtualQIconEnginePlugin* self_cast = dynamic_cast( (QIconEnginePlugin*)(self) ); if (self_cast == nullptr) { return false; } self_cast->handle__childEvent = slot; return true; } void QIconEnginePlugin_virtualbase_childEvent(void* self, QChildEvent* event) { ( (MiqtVirtualQIconEnginePlugin*)(self) )->virtualbase_childEvent(event); } bool QIconEnginePlugin_override_virtual_customEvent(void* self, intptr_t slot) { MiqtVirtualQIconEnginePlugin* self_cast = dynamic_cast( (QIconEnginePlugin*)(self) ); if (self_cast == nullptr) { return false; } self_cast->handle__customEvent = slot; return true; } void QIconEnginePlugin_virtualbase_customEvent(void* self, QEvent* event) { ( (MiqtVirtualQIconEnginePlugin*)(self) )->virtualbase_customEvent(event); } bool QIconEnginePlugin_override_virtual_connectNotify(void* self, intptr_t slot) { MiqtVirtualQIconEnginePlugin* self_cast = dynamic_cast( (QIconEnginePlugin*)(self) ); if (self_cast == nullptr) { return false; } self_cast->handle__connectNotify = slot; return true; } void QIconEnginePlugin_virtualbase_connectNotify(void* self, QMetaMethod* signal) { ( (MiqtVirtualQIconEnginePlugin*)(self) )->virtualbase_connectNotify(signal); } bool QIconEnginePlugin_override_virtual_disconnectNotify(void* self, intptr_t slot) { MiqtVirtualQIconEnginePlugin* self_cast = dynamic_cast( (QIconEnginePlugin*)(self) ); if (self_cast == nullptr) { return false; } self_cast->handle__disconnectNotify = slot; return true; } void QIconEnginePlugin_virtualbase_disconnectNotify(void* self, QMetaMethod* signal) { ( (MiqtVirtualQIconEnginePlugin*)(self) )->virtualbase_disconnectNotify(signal); } void QIconEnginePlugin_delete(QIconEnginePlugin* self) { delete self; }