#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "gen_qaudiodecoder.h" #ifndef _Bool #define _Bool bool #endif #include "_cgo_export.h" class MiqtVirtualQAudioDecoder : public virtual QAudioDecoder { public: MiqtVirtualQAudioDecoder(): QAudioDecoder() {}; MiqtVirtualQAudioDecoder(QObject* parent): QAudioDecoder(parent) {}; virtual ~MiqtVirtualQAudioDecoder() = 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 QAudioDecoder::event(event); } QEvent* sigval1 = event; bool callback_return_value = miqt_exec_callback_QAudioDecoder_Event(this, handle__Event, sigval1); return callback_return_value; } // Wrapper to allow calling protected method bool virtualbase_Event(QEvent* event) { return QAudioDecoder::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 QAudioDecoder::eventFilter(watched, event); } QObject* sigval1 = watched; QEvent* sigval2 = event; bool callback_return_value = miqt_exec_callback_QAudioDecoder_EventFilter(this, handle__EventFilter, sigval1, sigval2); return callback_return_value; } // Wrapper to allow calling protected method bool virtualbase_EventFilter(QObject* watched, QEvent* event) { return QAudioDecoder::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) { QAudioDecoder::timerEvent(event); return; } QTimerEvent* sigval1 = event; miqt_exec_callback_QAudioDecoder_TimerEvent(this, handle__TimerEvent, sigval1); } // Wrapper to allow calling protected method void virtualbase_TimerEvent(QTimerEvent* event) { QAudioDecoder::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) { QAudioDecoder::childEvent(event); return; } QChildEvent* sigval1 = event; miqt_exec_callback_QAudioDecoder_ChildEvent(this, handle__ChildEvent, sigval1); } // Wrapper to allow calling protected method void virtualbase_ChildEvent(QChildEvent* event) { QAudioDecoder::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) { QAudioDecoder::customEvent(event); return; } QEvent* sigval1 = event; miqt_exec_callback_QAudioDecoder_CustomEvent(this, handle__CustomEvent, sigval1); } // Wrapper to allow calling protected method void virtualbase_CustomEvent(QEvent* event) { QAudioDecoder::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) { QAudioDecoder::connectNotify(signal); return; } const QMetaMethod& signal_ret = signal; // Cast returned reference into pointer QMetaMethod* sigval1 = const_cast(&signal_ret); miqt_exec_callback_QAudioDecoder_ConnectNotify(this, handle__ConnectNotify, sigval1); } // Wrapper to allow calling protected method void virtualbase_ConnectNotify(QMetaMethod* signal) { QAudioDecoder::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) { QAudioDecoder::disconnectNotify(signal); return; } const QMetaMethod& signal_ret = signal; // Cast returned reference into pointer QMetaMethod* sigval1 = const_cast(&signal_ret); miqt_exec_callback_QAudioDecoder_DisconnectNotify(this, handle__DisconnectNotify, sigval1); } // Wrapper to allow calling protected method void virtualbase_DisconnectNotify(QMetaMethod* signal) { QAudioDecoder::disconnectNotify(*signal); } }; QAudioDecoder* QAudioDecoder_new() { return new MiqtVirtualQAudioDecoder(); } QAudioDecoder* QAudioDecoder_new2(QObject* parent) { return new MiqtVirtualQAudioDecoder(parent); } void QAudioDecoder_virtbase(QAudioDecoder* src, QObject** outptr_QObject) { *outptr_QObject = static_cast(src); } QMetaObject* QAudioDecoder_MetaObject(const QAudioDecoder* self) { return (QMetaObject*) self->metaObject(); } void* QAudioDecoder_Metacast(QAudioDecoder* self, const char* param1) { return self->qt_metacast(param1); } struct miqt_string QAudioDecoder_Tr(const char* s) { QString _ret = QAudioDecoder::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; } bool QAudioDecoder_IsSupported(const QAudioDecoder* self) { return self->isSupported(); } bool QAudioDecoder_IsDecoding(const QAudioDecoder* self) { return self->isDecoding(); } QUrl* QAudioDecoder_Source(const QAudioDecoder* self) { return new QUrl(self->source()); } void QAudioDecoder_SetSource(QAudioDecoder* self, QUrl* fileName) { self->setSource(*fileName); } QIODevice* QAudioDecoder_SourceDevice(const QAudioDecoder* self) { return self->sourceDevice(); } void QAudioDecoder_SetSourceDevice(QAudioDecoder* self, QIODevice* device) { self->setSourceDevice(device); } QAudioFormat* QAudioDecoder_AudioFormat(const QAudioDecoder* self) { return new QAudioFormat(self->audioFormat()); } void QAudioDecoder_SetAudioFormat(QAudioDecoder* self, QAudioFormat* format) { self->setAudioFormat(*format); } int QAudioDecoder_Error(const QAudioDecoder* self) { QAudioDecoder::Error _ret = self->error(); return static_cast(_ret); } struct miqt_string QAudioDecoder_ErrorString(const QAudioDecoder* self) { QString _ret = self->errorString(); // 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; } QAudioBuffer* QAudioDecoder_Read(const QAudioDecoder* self) { return new QAudioBuffer(self->read()); } bool QAudioDecoder_BufferAvailable(const QAudioDecoder* self) { return self->bufferAvailable(); } long long QAudioDecoder_Position(const QAudioDecoder* self) { qint64 _ret = self->position(); return static_cast(_ret); } long long QAudioDecoder_Duration(const QAudioDecoder* self) { qint64 _ret = self->duration(); return static_cast(_ret); } void QAudioDecoder_Start(QAudioDecoder* self) { self->start(); } void QAudioDecoder_Stop(QAudioDecoder* self) { self->stop(); } void QAudioDecoder_BufferAvailableChanged(QAudioDecoder* self, bool param1) { self->bufferAvailableChanged(param1); } void QAudioDecoder_connect_BufferAvailableChanged(QAudioDecoder* self, intptr_t slot) { MiqtVirtualQAudioDecoder::connect(self, static_cast(&QAudioDecoder::bufferAvailableChanged), self, [=](bool param1) { bool sigval1 = param1; miqt_exec_callback_QAudioDecoder_BufferAvailableChanged(slot, sigval1); }); } void QAudioDecoder_BufferReady(QAudioDecoder* self) { self->bufferReady(); } void QAudioDecoder_connect_BufferReady(QAudioDecoder* self, intptr_t slot) { MiqtVirtualQAudioDecoder::connect(self, static_cast(&QAudioDecoder::bufferReady), self, [=]() { miqt_exec_callback_QAudioDecoder_BufferReady(slot); }); } void QAudioDecoder_Finished(QAudioDecoder* self) { self->finished(); } void QAudioDecoder_connect_Finished(QAudioDecoder* self, intptr_t slot) { MiqtVirtualQAudioDecoder::connect(self, static_cast(&QAudioDecoder::finished), self, [=]() { miqt_exec_callback_QAudioDecoder_Finished(slot); }); } void QAudioDecoder_IsDecodingChanged(QAudioDecoder* self, bool param1) { self->isDecodingChanged(param1); } void QAudioDecoder_connect_IsDecodingChanged(QAudioDecoder* self, intptr_t slot) { MiqtVirtualQAudioDecoder::connect(self, static_cast(&QAudioDecoder::isDecodingChanged), self, [=](bool param1) { bool sigval1 = param1; miqt_exec_callback_QAudioDecoder_IsDecodingChanged(slot, sigval1); }); } void QAudioDecoder_FormatChanged(QAudioDecoder* self, QAudioFormat* format) { self->formatChanged(*format); } void QAudioDecoder_connect_FormatChanged(QAudioDecoder* self, intptr_t slot) { MiqtVirtualQAudioDecoder::connect(self, static_cast(&QAudioDecoder::formatChanged), self, [=](const QAudioFormat& format) { const QAudioFormat& format_ret = format; // Cast returned reference into pointer QAudioFormat* sigval1 = const_cast(&format_ret); miqt_exec_callback_QAudioDecoder_FormatChanged(slot, sigval1); }); } void QAudioDecoder_ErrorWithError(QAudioDecoder* self, int error) { self->error(static_cast(error)); } void QAudioDecoder_connect_ErrorWithError(QAudioDecoder* self, intptr_t slot) { MiqtVirtualQAudioDecoder::connect(self, static_cast(&QAudioDecoder::error), self, [=](QAudioDecoder::Error error) { QAudioDecoder::Error error_ret = error; int sigval1 = static_cast(error_ret); miqt_exec_callback_QAudioDecoder_ErrorWithError(slot, sigval1); }); } void QAudioDecoder_SourceChanged(QAudioDecoder* self) { self->sourceChanged(); } void QAudioDecoder_connect_SourceChanged(QAudioDecoder* self, intptr_t slot) { MiqtVirtualQAudioDecoder::connect(self, static_cast(&QAudioDecoder::sourceChanged), self, [=]() { miqt_exec_callback_QAudioDecoder_SourceChanged(slot); }); } void QAudioDecoder_PositionChanged(QAudioDecoder* self, long long position) { self->positionChanged(static_cast(position)); } void QAudioDecoder_connect_PositionChanged(QAudioDecoder* self, intptr_t slot) { MiqtVirtualQAudioDecoder::connect(self, static_cast(&QAudioDecoder::positionChanged), self, [=](qint64 position) { qint64 position_ret = position; long long sigval1 = static_cast(position_ret); miqt_exec_callback_QAudioDecoder_PositionChanged(slot, sigval1); }); } void QAudioDecoder_DurationChanged(QAudioDecoder* self, long long duration) { self->durationChanged(static_cast(duration)); } void QAudioDecoder_connect_DurationChanged(QAudioDecoder* self, intptr_t slot) { MiqtVirtualQAudioDecoder::connect(self, static_cast(&QAudioDecoder::durationChanged), self, [=](qint64 duration) { qint64 duration_ret = duration; long long sigval1 = static_cast(duration_ret); miqt_exec_callback_QAudioDecoder_DurationChanged(slot, sigval1); }); } struct miqt_string QAudioDecoder_Tr2(const char* s, const char* c) { QString _ret = QAudioDecoder::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 QAudioDecoder_Tr3(const char* s, const char* c, int n) { QString _ret = QAudioDecoder::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; } void QAudioDecoder_override_virtual_Event(void* self, intptr_t slot) { dynamic_cast( (QAudioDecoder*)(self) )->handle__Event = slot; } bool QAudioDecoder_virtualbase_Event(void* self, QEvent* event) { return ( (MiqtVirtualQAudioDecoder*)(self) )->virtualbase_Event(event); } void QAudioDecoder_override_virtual_EventFilter(void* self, intptr_t slot) { dynamic_cast( (QAudioDecoder*)(self) )->handle__EventFilter = slot; } bool QAudioDecoder_virtualbase_EventFilter(void* self, QObject* watched, QEvent* event) { return ( (MiqtVirtualQAudioDecoder*)(self) )->virtualbase_EventFilter(watched, event); } void QAudioDecoder_override_virtual_TimerEvent(void* self, intptr_t slot) { dynamic_cast( (QAudioDecoder*)(self) )->handle__TimerEvent = slot; } void QAudioDecoder_virtualbase_TimerEvent(void* self, QTimerEvent* event) { ( (MiqtVirtualQAudioDecoder*)(self) )->virtualbase_TimerEvent(event); } void QAudioDecoder_override_virtual_ChildEvent(void* self, intptr_t slot) { dynamic_cast( (QAudioDecoder*)(self) )->handle__ChildEvent = slot; } void QAudioDecoder_virtualbase_ChildEvent(void* self, QChildEvent* event) { ( (MiqtVirtualQAudioDecoder*)(self) )->virtualbase_ChildEvent(event); } void QAudioDecoder_override_virtual_CustomEvent(void* self, intptr_t slot) { dynamic_cast( (QAudioDecoder*)(self) )->handle__CustomEvent = slot; } void QAudioDecoder_virtualbase_CustomEvent(void* self, QEvent* event) { ( (MiqtVirtualQAudioDecoder*)(self) )->virtualbase_CustomEvent(event); } void QAudioDecoder_override_virtual_ConnectNotify(void* self, intptr_t slot) { dynamic_cast( (QAudioDecoder*)(self) )->handle__ConnectNotify = slot; } void QAudioDecoder_virtualbase_ConnectNotify(void* self, QMetaMethod* signal) { ( (MiqtVirtualQAudioDecoder*)(self) )->virtualbase_ConnectNotify(signal); } void QAudioDecoder_override_virtual_DisconnectNotify(void* self, intptr_t slot) { dynamic_cast( (QAudioDecoder*)(self) )->handle__DisconnectNotify = slot; } void QAudioDecoder_virtualbase_DisconnectNotify(void* self, QMetaMethod* signal) { ( (MiqtVirtualQAudioDecoder*)(self) )->virtualbase_DisconnectNotify(signal); } void QAudioDecoder_Delete(QAudioDecoder* self, bool isSubclass) { if (isSubclass) { delete dynamic_cast( self ); } else { delete self; } }