#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "gen_qmediaplayer.h" #include "_cgo_export.h" class MiqtVirtualQMediaPlayer : public virtual QMediaPlayer { public: MiqtVirtualQMediaPlayer(): QMediaPlayer() {}; MiqtVirtualQMediaPlayer(QObject* parent): QMediaPlayer(parent) {}; virtual ~MiqtVirtualQMediaPlayer() = 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 QMediaPlayer::event(event); } QEvent* sigval1 = event; bool callback_return_value = miqt_exec_callback_QMediaPlayer_Event(this, handle__Event, sigval1); return callback_return_value; } // Wrapper to allow calling protected method bool virtualbase_Event(QEvent* event) { return QMediaPlayer::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 QMediaPlayer::eventFilter(watched, event); } QObject* sigval1 = watched; QEvent* sigval2 = event; bool callback_return_value = miqt_exec_callback_QMediaPlayer_EventFilter(this, handle__EventFilter, sigval1, sigval2); return callback_return_value; } // Wrapper to allow calling protected method bool virtualbase_EventFilter(QObject* watched, QEvent* event) { return QMediaPlayer::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) { QMediaPlayer::timerEvent(event); return; } QTimerEvent* sigval1 = event; miqt_exec_callback_QMediaPlayer_TimerEvent(this, handle__TimerEvent, sigval1); } // Wrapper to allow calling protected method void virtualbase_TimerEvent(QTimerEvent* event) { QMediaPlayer::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) { QMediaPlayer::childEvent(event); return; } QChildEvent* sigval1 = event; miqt_exec_callback_QMediaPlayer_ChildEvent(this, handle__ChildEvent, sigval1); } // Wrapper to allow calling protected method void virtualbase_ChildEvent(QChildEvent* event) { QMediaPlayer::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) { QMediaPlayer::customEvent(event); return; } QEvent* sigval1 = event; miqt_exec_callback_QMediaPlayer_CustomEvent(this, handle__CustomEvent, sigval1); } // Wrapper to allow calling protected method void virtualbase_CustomEvent(QEvent* event) { QMediaPlayer::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) { QMediaPlayer::connectNotify(signal); return; } const QMetaMethod& signal_ret = signal; // Cast returned reference into pointer QMetaMethod* sigval1 = const_cast(&signal_ret); miqt_exec_callback_QMediaPlayer_ConnectNotify(this, handle__ConnectNotify, sigval1); } // Wrapper to allow calling protected method void virtualbase_ConnectNotify(QMetaMethod* signal) { QMediaPlayer::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) { QMediaPlayer::disconnectNotify(signal); return; } const QMetaMethod& signal_ret = signal; // Cast returned reference into pointer QMetaMethod* sigval1 = const_cast(&signal_ret); miqt_exec_callback_QMediaPlayer_DisconnectNotify(this, handle__DisconnectNotify, sigval1); } // Wrapper to allow calling protected method void virtualbase_DisconnectNotify(QMetaMethod* signal) { QMediaPlayer::disconnectNotify(*signal); } }; void QMediaPlayer_new(QMediaPlayer** outptr_QMediaPlayer, QObject** outptr_QObject) { MiqtVirtualQMediaPlayer* ret = new MiqtVirtualQMediaPlayer(); *outptr_QMediaPlayer = ret; *outptr_QObject = static_cast(ret); } void QMediaPlayer_new2(QObject* parent, QMediaPlayer** outptr_QMediaPlayer, QObject** outptr_QObject) { MiqtVirtualQMediaPlayer* ret = new MiqtVirtualQMediaPlayer(parent); *outptr_QMediaPlayer = ret; *outptr_QObject = static_cast(ret); } QMetaObject* QMediaPlayer_MetaObject(const QMediaPlayer* self) { return (QMetaObject*) self->metaObject(); } void* QMediaPlayer_Metacast(QMediaPlayer* self, const char* param1) { return self->qt_metacast(param1); } struct miqt_string QMediaPlayer_Tr(const char* s) { QString _ret = QMediaPlayer::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_array /* of QMediaMetaData* */ QMediaPlayer_AudioTracks(const QMediaPlayer* self) { QList _ret = self->audioTracks(); // Convert QList<> from C++ memory to manually-managed C memory QMediaMetaData** _arr = static_cast(malloc(sizeof(QMediaMetaData*) * _ret.length())); for (size_t i = 0, e = _ret.length(); i < e; ++i) { _arr[i] = new QMediaMetaData(_ret[i]); } struct miqt_array _out; _out.len = _ret.length(); _out.data = static_cast(_arr); return _out; } struct miqt_array /* of QMediaMetaData* */ QMediaPlayer_VideoTracks(const QMediaPlayer* self) { QList _ret = self->videoTracks(); // Convert QList<> from C++ memory to manually-managed C memory QMediaMetaData** _arr = static_cast(malloc(sizeof(QMediaMetaData*) * _ret.length())); for (size_t i = 0, e = _ret.length(); i < e; ++i) { _arr[i] = new QMediaMetaData(_ret[i]); } struct miqt_array _out; _out.len = _ret.length(); _out.data = static_cast(_arr); return _out; } struct miqt_array /* of QMediaMetaData* */ QMediaPlayer_SubtitleTracks(const QMediaPlayer* self) { QList _ret = self->subtitleTracks(); // Convert QList<> from C++ memory to manually-managed C memory QMediaMetaData** _arr = static_cast(malloc(sizeof(QMediaMetaData*) * _ret.length())); for (size_t i = 0, e = _ret.length(); i < e; ++i) { _arr[i] = new QMediaMetaData(_ret[i]); } struct miqt_array _out; _out.len = _ret.length(); _out.data = static_cast(_arr); return _out; } int QMediaPlayer_ActiveAudioTrack(const QMediaPlayer* self) { return self->activeAudioTrack(); } int QMediaPlayer_ActiveVideoTrack(const QMediaPlayer* self) { return self->activeVideoTrack(); } int QMediaPlayer_ActiveSubtitleTrack(const QMediaPlayer* self) { return self->activeSubtitleTrack(); } void QMediaPlayer_SetActiveAudioTrack(QMediaPlayer* self, int index) { self->setActiveAudioTrack(static_cast(index)); } void QMediaPlayer_SetActiveVideoTrack(QMediaPlayer* self, int index) { self->setActiveVideoTrack(static_cast(index)); } void QMediaPlayer_SetActiveSubtitleTrack(QMediaPlayer* self, int index) { self->setActiveSubtitleTrack(static_cast(index)); } void QMediaPlayer_SetAudioOutput(QMediaPlayer* self, QAudioOutput* output) { self->setAudioOutput(output); } QAudioOutput* QMediaPlayer_AudioOutput(const QMediaPlayer* self) { return self->audioOutput(); } void QMediaPlayer_SetVideoOutput(QMediaPlayer* self, QObject* videoOutput) { self->setVideoOutput(videoOutput); } QObject* QMediaPlayer_VideoOutput(const QMediaPlayer* self) { return self->videoOutput(); } void QMediaPlayer_SetVideoSink(QMediaPlayer* self, QVideoSink* sink) { self->setVideoSink(sink); } QVideoSink* QMediaPlayer_VideoSink(const QMediaPlayer* self) { return self->videoSink(); } QUrl* QMediaPlayer_Source(const QMediaPlayer* self) { return new QUrl(self->source()); } QIODevice* QMediaPlayer_SourceDevice(const QMediaPlayer* self) { return (QIODevice*) self->sourceDevice(); } int QMediaPlayer_PlaybackState(const QMediaPlayer* self) { QMediaPlayer::PlaybackState _ret = self->playbackState(); return static_cast(_ret); } int QMediaPlayer_MediaStatus(const QMediaPlayer* self) { QMediaPlayer::MediaStatus _ret = self->mediaStatus(); return static_cast(_ret); } long long QMediaPlayer_Duration(const QMediaPlayer* self) { qint64 _ret = self->duration(); return static_cast(_ret); } long long QMediaPlayer_Position(const QMediaPlayer* self) { qint64 _ret = self->position(); return static_cast(_ret); } bool QMediaPlayer_HasAudio(const QMediaPlayer* self) { return self->hasAudio(); } bool QMediaPlayer_HasVideo(const QMediaPlayer* self) { return self->hasVideo(); } float QMediaPlayer_BufferProgress(const QMediaPlayer* self) { return self->bufferProgress(); } QMediaTimeRange* QMediaPlayer_BufferedTimeRange(const QMediaPlayer* self) { return new QMediaTimeRange(self->bufferedTimeRange()); } bool QMediaPlayer_IsSeekable(const QMediaPlayer* self) { return self->isSeekable(); } double QMediaPlayer_PlaybackRate(const QMediaPlayer* self) { qreal _ret = self->playbackRate(); return static_cast(_ret); } int QMediaPlayer_Loops(const QMediaPlayer* self) { return self->loops(); } void QMediaPlayer_SetLoops(QMediaPlayer* self, int loops) { self->setLoops(static_cast(loops)); } int QMediaPlayer_Error(const QMediaPlayer* self) { QMediaPlayer::Error _ret = self->error(); return static_cast(_ret); } struct miqt_string QMediaPlayer_ErrorString(const QMediaPlayer* 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; } bool QMediaPlayer_IsAvailable(const QMediaPlayer* self) { return self->isAvailable(); } QMediaMetaData* QMediaPlayer_MetaData(const QMediaPlayer* self) { return new QMediaMetaData(self->metaData()); } void QMediaPlayer_Play(QMediaPlayer* self) { self->play(); } void QMediaPlayer_Pause(QMediaPlayer* self) { self->pause(); } void QMediaPlayer_Stop(QMediaPlayer* self) { self->stop(); } void QMediaPlayer_SetPosition(QMediaPlayer* self, long long position) { self->setPosition(static_cast(position)); } void QMediaPlayer_SetPlaybackRate(QMediaPlayer* self, double rate) { self->setPlaybackRate(static_cast(rate)); } void QMediaPlayer_SetSource(QMediaPlayer* self, QUrl* source) { self->setSource(*source); } void QMediaPlayer_SetSourceDevice(QMediaPlayer* self, QIODevice* device) { self->setSourceDevice(device); } void QMediaPlayer_SourceChanged(QMediaPlayer* self, QUrl* media) { self->sourceChanged(*media); } void QMediaPlayer_connect_SourceChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::sourceChanged), self, [=](const QUrl& media) { const QUrl& media_ret = media; // Cast returned reference into pointer QUrl* sigval1 = const_cast(&media_ret); miqt_exec_callback_QMediaPlayer_SourceChanged(slot, sigval1); }); } void QMediaPlayer_PlaybackStateChanged(QMediaPlayer* self, int newState) { self->playbackStateChanged(static_cast(newState)); } void QMediaPlayer_connect_PlaybackStateChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::playbackStateChanged), self, [=](QMediaPlayer::PlaybackState newState) { QMediaPlayer::PlaybackState newState_ret = newState; int sigval1 = static_cast(newState_ret); miqt_exec_callback_QMediaPlayer_PlaybackStateChanged(slot, sigval1); }); } void QMediaPlayer_MediaStatusChanged(QMediaPlayer* self, int status) { self->mediaStatusChanged(static_cast(status)); } void QMediaPlayer_connect_MediaStatusChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::mediaStatusChanged), self, [=](QMediaPlayer::MediaStatus status) { QMediaPlayer::MediaStatus status_ret = status; int sigval1 = static_cast(status_ret); miqt_exec_callback_QMediaPlayer_MediaStatusChanged(slot, sigval1); }); } void QMediaPlayer_DurationChanged(QMediaPlayer* self, long long duration) { self->durationChanged(static_cast(duration)); } void QMediaPlayer_connect_DurationChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::durationChanged), self, [=](qint64 duration) { qint64 duration_ret = duration; long long sigval1 = static_cast(duration_ret); miqt_exec_callback_QMediaPlayer_DurationChanged(slot, sigval1); }); } void QMediaPlayer_PositionChanged(QMediaPlayer* self, long long position) { self->positionChanged(static_cast(position)); } void QMediaPlayer_connect_PositionChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::positionChanged), self, [=](qint64 position) { qint64 position_ret = position; long long sigval1 = static_cast(position_ret); miqt_exec_callback_QMediaPlayer_PositionChanged(slot, sigval1); }); } void QMediaPlayer_HasAudioChanged(QMediaPlayer* self, bool available) { self->hasAudioChanged(available); } void QMediaPlayer_connect_HasAudioChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::hasAudioChanged), self, [=](bool available) { bool sigval1 = available; miqt_exec_callback_QMediaPlayer_HasAudioChanged(slot, sigval1); }); } void QMediaPlayer_HasVideoChanged(QMediaPlayer* self, bool videoAvailable) { self->hasVideoChanged(videoAvailable); } void QMediaPlayer_connect_HasVideoChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::hasVideoChanged), self, [=](bool videoAvailable) { bool sigval1 = videoAvailable; miqt_exec_callback_QMediaPlayer_HasVideoChanged(slot, sigval1); }); } void QMediaPlayer_BufferProgressChanged(QMediaPlayer* self, float progress) { self->bufferProgressChanged(static_cast(progress)); } void QMediaPlayer_connect_BufferProgressChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::bufferProgressChanged), self, [=](float progress) { float sigval1 = progress; miqt_exec_callback_QMediaPlayer_BufferProgressChanged(slot, sigval1); }); } void QMediaPlayer_SeekableChanged(QMediaPlayer* self, bool seekable) { self->seekableChanged(seekable); } void QMediaPlayer_connect_SeekableChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::seekableChanged), self, [=](bool seekable) { bool sigval1 = seekable; miqt_exec_callback_QMediaPlayer_SeekableChanged(slot, sigval1); }); } void QMediaPlayer_PlaybackRateChanged(QMediaPlayer* self, double rate) { self->playbackRateChanged(static_cast(rate)); } void QMediaPlayer_connect_PlaybackRateChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::playbackRateChanged), self, [=](qreal rate) { qreal rate_ret = rate; double sigval1 = static_cast(rate_ret); miqt_exec_callback_QMediaPlayer_PlaybackRateChanged(slot, sigval1); }); } void QMediaPlayer_LoopsChanged(QMediaPlayer* self) { self->loopsChanged(); } void QMediaPlayer_connect_LoopsChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::loopsChanged), self, [=]() { miqt_exec_callback_QMediaPlayer_LoopsChanged(slot); }); } void QMediaPlayer_MetaDataChanged(QMediaPlayer* self) { self->metaDataChanged(); } void QMediaPlayer_connect_MetaDataChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::metaDataChanged), self, [=]() { miqt_exec_callback_QMediaPlayer_MetaDataChanged(slot); }); } void QMediaPlayer_VideoOutputChanged(QMediaPlayer* self) { self->videoOutputChanged(); } void QMediaPlayer_connect_VideoOutputChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::videoOutputChanged), self, [=]() { miqt_exec_callback_QMediaPlayer_VideoOutputChanged(slot); }); } void QMediaPlayer_AudioOutputChanged(QMediaPlayer* self) { self->audioOutputChanged(); } void QMediaPlayer_connect_AudioOutputChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::audioOutputChanged), self, [=]() { miqt_exec_callback_QMediaPlayer_AudioOutputChanged(slot); }); } void QMediaPlayer_TracksChanged(QMediaPlayer* self) { self->tracksChanged(); } void QMediaPlayer_connect_TracksChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::tracksChanged), self, [=]() { miqt_exec_callback_QMediaPlayer_TracksChanged(slot); }); } void QMediaPlayer_ActiveTracksChanged(QMediaPlayer* self) { self->activeTracksChanged(); } void QMediaPlayer_connect_ActiveTracksChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::activeTracksChanged), self, [=]() { miqt_exec_callback_QMediaPlayer_ActiveTracksChanged(slot); }); } void QMediaPlayer_ErrorChanged(QMediaPlayer* self) { self->errorChanged(); } void QMediaPlayer_connect_ErrorChanged(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::errorChanged), self, [=]() { miqt_exec_callback_QMediaPlayer_ErrorChanged(slot); }); } void QMediaPlayer_ErrorOccurred(QMediaPlayer* self, int error, struct miqt_string errorString) { QString errorString_QString = QString::fromUtf8(errorString.data, errorString.len); self->errorOccurred(static_cast(error), errorString_QString); } void QMediaPlayer_connect_ErrorOccurred(QMediaPlayer* self, intptr_t slot) { MiqtVirtualQMediaPlayer::connect(self, static_cast(&QMediaPlayer::errorOccurred), self, [=](QMediaPlayer::Error error, const QString& errorString) { QMediaPlayer::Error error_ret = error; int sigval1 = static_cast(error_ret); const QString errorString_ret = errorString; // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray errorString_b = errorString_ret.toUtf8(); struct miqt_string errorString_ms; errorString_ms.len = errorString_b.length(); errorString_ms.data = static_cast(malloc(errorString_ms.len)); memcpy(errorString_ms.data, errorString_b.data(), errorString_ms.len); struct miqt_string sigval2 = errorString_ms; miqt_exec_callback_QMediaPlayer_ErrorOccurred(slot, sigval1, sigval2); }); } struct miqt_string QMediaPlayer_Tr2(const char* s, const char* c) { QString _ret = QMediaPlayer::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 QMediaPlayer_Tr3(const char* s, const char* c, int n) { QString _ret = QMediaPlayer::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 QMediaPlayer_SetSourceDevice2(QMediaPlayer* self, QIODevice* device, QUrl* sourceUrl) { self->setSourceDevice(device, *sourceUrl); } void QMediaPlayer_override_virtual_Event(void* self, intptr_t slot) { dynamic_cast( (QMediaPlayer*)(self) )->handle__Event = slot; } bool QMediaPlayer_virtualbase_Event(void* self, QEvent* event) { return ( (MiqtVirtualQMediaPlayer*)(self) )->virtualbase_Event(event); } void QMediaPlayer_override_virtual_EventFilter(void* self, intptr_t slot) { dynamic_cast( (QMediaPlayer*)(self) )->handle__EventFilter = slot; } bool QMediaPlayer_virtualbase_EventFilter(void* self, QObject* watched, QEvent* event) { return ( (MiqtVirtualQMediaPlayer*)(self) )->virtualbase_EventFilter(watched, event); } void QMediaPlayer_override_virtual_TimerEvent(void* self, intptr_t slot) { dynamic_cast( (QMediaPlayer*)(self) )->handle__TimerEvent = slot; } void QMediaPlayer_virtualbase_TimerEvent(void* self, QTimerEvent* event) { ( (MiqtVirtualQMediaPlayer*)(self) )->virtualbase_TimerEvent(event); } void QMediaPlayer_override_virtual_ChildEvent(void* self, intptr_t slot) { dynamic_cast( (QMediaPlayer*)(self) )->handle__ChildEvent = slot; } void QMediaPlayer_virtualbase_ChildEvent(void* self, QChildEvent* event) { ( (MiqtVirtualQMediaPlayer*)(self) )->virtualbase_ChildEvent(event); } void QMediaPlayer_override_virtual_CustomEvent(void* self, intptr_t slot) { dynamic_cast( (QMediaPlayer*)(self) )->handle__CustomEvent = slot; } void QMediaPlayer_virtualbase_CustomEvent(void* self, QEvent* event) { ( (MiqtVirtualQMediaPlayer*)(self) )->virtualbase_CustomEvent(event); } void QMediaPlayer_override_virtual_ConnectNotify(void* self, intptr_t slot) { dynamic_cast( (QMediaPlayer*)(self) )->handle__ConnectNotify = slot; } void QMediaPlayer_virtualbase_ConnectNotify(void* self, QMetaMethod* signal) { ( (MiqtVirtualQMediaPlayer*)(self) )->virtualbase_ConnectNotify(signal); } void QMediaPlayer_override_virtual_DisconnectNotify(void* self, intptr_t slot) { dynamic_cast( (QMediaPlayer*)(self) )->handle__DisconnectNotify = slot; } void QMediaPlayer_virtualbase_DisconnectNotify(void* self, QMetaMethod* signal) { ( (MiqtVirtualQMediaPlayer*)(self) )->virtualbase_DisconnectNotify(signal); } void QMediaPlayer_Delete(QMediaPlayer* self, bool isSubclass) { if (isSubclass) { delete dynamic_cast( self ); } else { delete self; } }