mirror of
https://github.com/mappu/miqt.git
synced 2025-02-01 19:10:21 +00:00
553 lines
17 KiB
C++
553 lines
17 KiB
C++
#include <QAudioBuffer>
|
|
#include <QAudioDecoder>
|
|
#include <QAudioFormat>
|
|
#include <QChildEvent>
|
|
#include <QEvent>
|
|
#include <QIODevice>
|
|
#include <QMetaMethod>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QTimerEvent>
|
|
#include <QUrl>
|
|
#include <qaudiodecoder.h>
|
|
#include "gen_qaudiodecoder.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void miqt_exec_callback_QAudioDecoder_bufferAvailableChanged(intptr_t, bool);
|
|
void miqt_exec_callback_QAudioDecoder_bufferReady(intptr_t);
|
|
void miqt_exec_callback_QAudioDecoder_finished(intptr_t);
|
|
void miqt_exec_callback_QAudioDecoder_isDecodingChanged(intptr_t, bool);
|
|
void miqt_exec_callback_QAudioDecoder_formatChanged(intptr_t, QAudioFormat*);
|
|
void miqt_exec_callback_QAudioDecoder_errorWithError(intptr_t, int);
|
|
void miqt_exec_callback_QAudioDecoder_sourceChanged(intptr_t);
|
|
void miqt_exec_callback_QAudioDecoder_positionChanged(intptr_t, long long);
|
|
void miqt_exec_callback_QAudioDecoder_durationChanged(intptr_t, long long);
|
|
bool miqt_exec_callback_QAudioDecoder_event(QAudioDecoder*, intptr_t, QEvent*);
|
|
bool miqt_exec_callback_QAudioDecoder_eventFilter(QAudioDecoder*, intptr_t, QObject*, QEvent*);
|
|
void miqt_exec_callback_QAudioDecoder_timerEvent(QAudioDecoder*, intptr_t, QTimerEvent*);
|
|
void miqt_exec_callback_QAudioDecoder_childEvent(QAudioDecoder*, intptr_t, QChildEvent*);
|
|
void miqt_exec_callback_QAudioDecoder_customEvent(QAudioDecoder*, intptr_t, QEvent*);
|
|
void miqt_exec_callback_QAudioDecoder_connectNotify(QAudioDecoder*, intptr_t, QMetaMethod*);
|
|
void miqt_exec_callback_QAudioDecoder_disconnectNotify(QAudioDecoder*, intptr_t, QMetaMethod*);
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
class MiqtVirtualQAudioDecoder final : public QAudioDecoder {
|
|
public:
|
|
|
|
MiqtVirtualQAudioDecoder(): QAudioDecoder() {};
|
|
MiqtVirtualQAudioDecoder(QObject* parent): QAudioDecoder(parent) {};
|
|
|
|
virtual ~MiqtVirtualQAudioDecoder() 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 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<QMetaMethod*>(&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<QMetaMethod*>(&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<QObject*>(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<char*>(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<int>(_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<char*>(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<long long>(_ret);
|
|
}
|
|
|
|
long long QAudioDecoder_duration(const QAudioDecoder* self) {
|
|
qint64 _ret = self->duration();
|
|
return static_cast<long long>(_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<void (QAudioDecoder::*)(bool)>(&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<void (QAudioDecoder::*)()>(&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<void (QAudioDecoder::*)()>(&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<void (QAudioDecoder::*)(bool)>(&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<void (QAudioDecoder::*)(const QAudioFormat&)>(&QAudioDecoder::formatChanged), self, [=](const QAudioFormat& format) {
|
|
const QAudioFormat& format_ret = format;
|
|
// Cast returned reference into pointer
|
|
QAudioFormat* sigval1 = const_cast<QAudioFormat*>(&format_ret);
|
|
miqt_exec_callback_QAudioDecoder_formatChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QAudioDecoder_errorWithError(QAudioDecoder* self, int error) {
|
|
self->error(static_cast<QAudioDecoder::Error>(error));
|
|
}
|
|
|
|
void QAudioDecoder_connect_errorWithError(QAudioDecoder* self, intptr_t slot) {
|
|
MiqtVirtualQAudioDecoder::connect(self, static_cast<void (QAudioDecoder::*)(QAudioDecoder::Error)>(&QAudioDecoder::error), self, [=](QAudioDecoder::Error error) {
|
|
QAudioDecoder::Error error_ret = error;
|
|
int sigval1 = static_cast<int>(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<void (QAudioDecoder::*)()>(&QAudioDecoder::sourceChanged), self, [=]() {
|
|
miqt_exec_callback_QAudioDecoder_sourceChanged(slot);
|
|
});
|
|
}
|
|
|
|
void QAudioDecoder_positionChanged(QAudioDecoder* self, long long position) {
|
|
self->positionChanged(static_cast<qint64>(position));
|
|
}
|
|
|
|
void QAudioDecoder_connect_positionChanged(QAudioDecoder* self, intptr_t slot) {
|
|
MiqtVirtualQAudioDecoder::connect(self, static_cast<void (QAudioDecoder::*)(qint64)>(&QAudioDecoder::positionChanged), self, [=](qint64 position) {
|
|
qint64 position_ret = position;
|
|
long long sigval1 = static_cast<long long>(position_ret);
|
|
miqt_exec_callback_QAudioDecoder_positionChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QAudioDecoder_durationChanged(QAudioDecoder* self, long long duration) {
|
|
self->durationChanged(static_cast<qint64>(duration));
|
|
}
|
|
|
|
void QAudioDecoder_connect_durationChanged(QAudioDecoder* self, intptr_t slot) {
|
|
MiqtVirtualQAudioDecoder::connect(self, static_cast<void (QAudioDecoder::*)(qint64)>(&QAudioDecoder::durationChanged), self, [=](qint64 duration) {
|
|
qint64 duration_ret = duration;
|
|
long long sigval1 = static_cast<long long>(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<char*>(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<int>(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<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
bool QAudioDecoder_override_virtual_event(void* self, intptr_t slot) {
|
|
MiqtVirtualQAudioDecoder* self_cast = dynamic_cast<MiqtVirtualQAudioDecoder*>( (QAudioDecoder*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__event = slot;
|
|
return true;
|
|
}
|
|
|
|
bool QAudioDecoder_virtualbase_event(void* self, QEvent* event) {
|
|
return ( (MiqtVirtualQAudioDecoder*)(self) )->virtualbase_event(event);
|
|
}
|
|
|
|
bool QAudioDecoder_override_virtual_eventFilter(void* self, intptr_t slot) {
|
|
MiqtVirtualQAudioDecoder* self_cast = dynamic_cast<MiqtVirtualQAudioDecoder*>( (QAudioDecoder*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__eventFilter = slot;
|
|
return true;
|
|
}
|
|
|
|
bool QAudioDecoder_virtualbase_eventFilter(void* self, QObject* watched, QEvent* event) {
|
|
return ( (MiqtVirtualQAudioDecoder*)(self) )->virtualbase_eventFilter(watched, event);
|
|
}
|
|
|
|
bool QAudioDecoder_override_virtual_timerEvent(void* self, intptr_t slot) {
|
|
MiqtVirtualQAudioDecoder* self_cast = dynamic_cast<MiqtVirtualQAudioDecoder*>( (QAudioDecoder*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__timerEvent = slot;
|
|
return true;
|
|
}
|
|
|
|
void QAudioDecoder_virtualbase_timerEvent(void* self, QTimerEvent* event) {
|
|
( (MiqtVirtualQAudioDecoder*)(self) )->virtualbase_timerEvent(event);
|
|
}
|
|
|
|
bool QAudioDecoder_override_virtual_childEvent(void* self, intptr_t slot) {
|
|
MiqtVirtualQAudioDecoder* self_cast = dynamic_cast<MiqtVirtualQAudioDecoder*>( (QAudioDecoder*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__childEvent = slot;
|
|
return true;
|
|
}
|
|
|
|
void QAudioDecoder_virtualbase_childEvent(void* self, QChildEvent* event) {
|
|
( (MiqtVirtualQAudioDecoder*)(self) )->virtualbase_childEvent(event);
|
|
}
|
|
|
|
bool QAudioDecoder_override_virtual_customEvent(void* self, intptr_t slot) {
|
|
MiqtVirtualQAudioDecoder* self_cast = dynamic_cast<MiqtVirtualQAudioDecoder*>( (QAudioDecoder*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__customEvent = slot;
|
|
return true;
|
|
}
|
|
|
|
void QAudioDecoder_virtualbase_customEvent(void* self, QEvent* event) {
|
|
( (MiqtVirtualQAudioDecoder*)(self) )->virtualbase_customEvent(event);
|
|
}
|
|
|
|
bool QAudioDecoder_override_virtual_connectNotify(void* self, intptr_t slot) {
|
|
MiqtVirtualQAudioDecoder* self_cast = dynamic_cast<MiqtVirtualQAudioDecoder*>( (QAudioDecoder*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__connectNotify = slot;
|
|
return true;
|
|
}
|
|
|
|
void QAudioDecoder_virtualbase_connectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQAudioDecoder*)(self) )->virtualbase_connectNotify(signal);
|
|
}
|
|
|
|
bool QAudioDecoder_override_virtual_disconnectNotify(void* self, intptr_t slot) {
|
|
MiqtVirtualQAudioDecoder* self_cast = dynamic_cast<MiqtVirtualQAudioDecoder*>( (QAudioDecoder*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__disconnectNotify = slot;
|
|
return true;
|
|
}
|
|
|
|
void QAudioDecoder_virtualbase_disconnectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQAudioDecoder*)(self) )->virtualbase_disconnectNotify(signal);
|
|
}
|
|
|
|
void QAudioDecoder_delete(QAudioDecoder* self) {
|
|
delete self;
|
|
}
|
|
|