miqt/qt6/spatialaudio/gen_qspatialsound.cpp

585 lines
17 KiB
C++

#include <QAudioEngine>
#include <QChildEvent>
#include <QEvent>
#include <QMetaMethod>
#include <QMetaObject>
#include <QObject>
#include <QQuaternion>
#include <QSpatialSound>
#include <QString>
#include <QByteArray>
#include <cstring>
#include <QTimerEvent>
#include <QUrl>
#include <QVector3D>
#include <qspatialsound.h>
#include "gen_qspatialsound.h"
#ifndef _Bool
#define _Bool bool
#endif
#include "_cgo_export.h"
class MiqtVirtualQSpatialSound : public virtual QSpatialSound {
public:
MiqtVirtualQSpatialSound(QAudioEngine* engine): QSpatialSound(engine) {};
virtual ~MiqtVirtualQSpatialSound() = 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 QSpatialSound::event(event);
}
QEvent* sigval1 = event;
bool callback_return_value = miqt_exec_callback_QSpatialSound_Event(this, handle__Event, sigval1);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_Event(QEvent* event) {
return QSpatialSound::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 QSpatialSound::eventFilter(watched, event);
}
QObject* sigval1 = watched;
QEvent* sigval2 = event;
bool callback_return_value = miqt_exec_callback_QSpatialSound_EventFilter(this, handle__EventFilter, sigval1, sigval2);
return callback_return_value;
}
// Wrapper to allow calling protected method
bool virtualbase_EventFilter(QObject* watched, QEvent* event) {
return QSpatialSound::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) {
QSpatialSound::timerEvent(event);
return;
}
QTimerEvent* sigval1 = event;
miqt_exec_callback_QSpatialSound_TimerEvent(this, handle__TimerEvent, sigval1);
}
// Wrapper to allow calling protected method
void virtualbase_TimerEvent(QTimerEvent* event) {
QSpatialSound::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) {
QSpatialSound::childEvent(event);
return;
}
QChildEvent* sigval1 = event;
miqt_exec_callback_QSpatialSound_ChildEvent(this, handle__ChildEvent, sigval1);
}
// Wrapper to allow calling protected method
void virtualbase_ChildEvent(QChildEvent* event) {
QSpatialSound::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) {
QSpatialSound::customEvent(event);
return;
}
QEvent* sigval1 = event;
miqt_exec_callback_QSpatialSound_CustomEvent(this, handle__CustomEvent, sigval1);
}
// Wrapper to allow calling protected method
void virtualbase_CustomEvent(QEvent* event) {
QSpatialSound::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) {
QSpatialSound::connectNotify(signal);
return;
}
const QMetaMethod& signal_ret = signal;
// Cast returned reference into pointer
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
miqt_exec_callback_QSpatialSound_ConnectNotify(this, handle__ConnectNotify, sigval1);
}
// Wrapper to allow calling protected method
void virtualbase_ConnectNotify(QMetaMethod* signal) {
QSpatialSound::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) {
QSpatialSound::disconnectNotify(signal);
return;
}
const QMetaMethod& signal_ret = signal;
// Cast returned reference into pointer
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
miqt_exec_callback_QSpatialSound_DisconnectNotify(this, handle__DisconnectNotify, sigval1);
}
// Wrapper to allow calling protected method
void virtualbase_DisconnectNotify(QMetaMethod* signal) {
QSpatialSound::disconnectNotify(*signal);
}
};
QSpatialSound* QSpatialSound_new(QAudioEngine* engine) {
return new MiqtVirtualQSpatialSound(engine);
}
void QSpatialSound_virtbase(QSpatialSound* src, QObject** outptr_QObject) {
*outptr_QObject = static_cast<QObject*>(src);
}
QMetaObject* QSpatialSound_MetaObject(const QSpatialSound* self) {
return (QMetaObject*) self->metaObject();
}
void* QSpatialSound_Metacast(QSpatialSound* self, const char* param1) {
return self->qt_metacast(param1);
}
struct miqt_string QSpatialSound_Tr(const char* s) {
QString _ret = QSpatialSound::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;
}
void QSpatialSound_SetSource(QSpatialSound* self, QUrl* url) {
self->setSource(*url);
}
QUrl* QSpatialSound_Source(const QSpatialSound* self) {
return new QUrl(self->source());
}
int QSpatialSound_Loops(const QSpatialSound* self) {
return self->loops();
}
void QSpatialSound_SetLoops(QSpatialSound* self, int loops) {
self->setLoops(static_cast<int>(loops));
}
bool QSpatialSound_AutoPlay(const QSpatialSound* self) {
return self->autoPlay();
}
void QSpatialSound_SetAutoPlay(QSpatialSound* self, bool autoPlay) {
self->setAutoPlay(autoPlay);
}
void QSpatialSound_SetPosition(QSpatialSound* self, QVector3D* pos) {
self->setPosition(*pos);
}
QVector3D* QSpatialSound_Position(const QSpatialSound* self) {
return new QVector3D(self->position());
}
void QSpatialSound_SetRotation(QSpatialSound* self, QQuaternion* q) {
self->setRotation(*q);
}
QQuaternion* QSpatialSound_Rotation(const QSpatialSound* self) {
return new QQuaternion(self->rotation());
}
void QSpatialSound_SetVolume(QSpatialSound* self, float volume) {
self->setVolume(static_cast<float>(volume));
}
float QSpatialSound_Volume(const QSpatialSound* self) {
return self->volume();
}
void QSpatialSound_SetDistanceModel(QSpatialSound* self, int model) {
self->setDistanceModel(static_cast<QSpatialSound::DistanceModel>(model));
}
int QSpatialSound_DistanceModel(const QSpatialSound* self) {
QSpatialSound::DistanceModel _ret = self->distanceModel();
return static_cast<int>(_ret);
}
void QSpatialSound_SetSize(QSpatialSound* self, float size) {
self->setSize(static_cast<float>(size));
}
float QSpatialSound_Size(const QSpatialSound* self) {
return self->size();
}
void QSpatialSound_SetDistanceCutoff(QSpatialSound* self, float cutoff) {
self->setDistanceCutoff(static_cast<float>(cutoff));
}
float QSpatialSound_DistanceCutoff(const QSpatialSound* self) {
return self->distanceCutoff();
}
void QSpatialSound_SetManualAttenuation(QSpatialSound* self, float attenuation) {
self->setManualAttenuation(static_cast<float>(attenuation));
}
float QSpatialSound_ManualAttenuation(const QSpatialSound* self) {
return self->manualAttenuation();
}
void QSpatialSound_SetOcclusionIntensity(QSpatialSound* self, float occlusion) {
self->setOcclusionIntensity(static_cast<float>(occlusion));
}
float QSpatialSound_OcclusionIntensity(const QSpatialSound* self) {
return self->occlusionIntensity();
}
void QSpatialSound_SetDirectivity(QSpatialSound* self, float alpha) {
self->setDirectivity(static_cast<float>(alpha));
}
float QSpatialSound_Directivity(const QSpatialSound* self) {
return self->directivity();
}
void QSpatialSound_SetDirectivityOrder(QSpatialSound* self, float alpha) {
self->setDirectivityOrder(static_cast<float>(alpha));
}
float QSpatialSound_DirectivityOrder(const QSpatialSound* self) {
return self->directivityOrder();
}
void QSpatialSound_SetNearFieldGain(QSpatialSound* self, float gain) {
self->setNearFieldGain(static_cast<float>(gain));
}
float QSpatialSound_NearFieldGain(const QSpatialSound* self) {
return self->nearFieldGain();
}
QAudioEngine* QSpatialSound_Engine(const QSpatialSound* self) {
return self->engine();
}
void QSpatialSound_SourceChanged(QSpatialSound* self) {
self->sourceChanged();
}
void QSpatialSound_connect_SourceChanged(QSpatialSound* self, intptr_t slot) {
MiqtVirtualQSpatialSound::connect(self, static_cast<void (QSpatialSound::*)()>(&QSpatialSound::sourceChanged), self, [=]() {
miqt_exec_callback_QSpatialSound_SourceChanged(slot);
});
}
void QSpatialSound_LoopsChanged(QSpatialSound* self) {
self->loopsChanged();
}
void QSpatialSound_connect_LoopsChanged(QSpatialSound* self, intptr_t slot) {
MiqtVirtualQSpatialSound::connect(self, static_cast<void (QSpatialSound::*)()>(&QSpatialSound::loopsChanged), self, [=]() {
miqt_exec_callback_QSpatialSound_LoopsChanged(slot);
});
}
void QSpatialSound_AutoPlayChanged(QSpatialSound* self) {
self->autoPlayChanged();
}
void QSpatialSound_connect_AutoPlayChanged(QSpatialSound* self, intptr_t slot) {
MiqtVirtualQSpatialSound::connect(self, static_cast<void (QSpatialSound::*)()>(&QSpatialSound::autoPlayChanged), self, [=]() {
miqt_exec_callback_QSpatialSound_AutoPlayChanged(slot);
});
}
void QSpatialSound_PositionChanged(QSpatialSound* self) {
self->positionChanged();
}
void QSpatialSound_connect_PositionChanged(QSpatialSound* self, intptr_t slot) {
MiqtVirtualQSpatialSound::connect(self, static_cast<void (QSpatialSound::*)()>(&QSpatialSound::positionChanged), self, [=]() {
miqt_exec_callback_QSpatialSound_PositionChanged(slot);
});
}
void QSpatialSound_RotationChanged(QSpatialSound* self) {
self->rotationChanged();
}
void QSpatialSound_connect_RotationChanged(QSpatialSound* self, intptr_t slot) {
MiqtVirtualQSpatialSound::connect(self, static_cast<void (QSpatialSound::*)()>(&QSpatialSound::rotationChanged), self, [=]() {
miqt_exec_callback_QSpatialSound_RotationChanged(slot);
});
}
void QSpatialSound_VolumeChanged(QSpatialSound* self) {
self->volumeChanged();
}
void QSpatialSound_connect_VolumeChanged(QSpatialSound* self, intptr_t slot) {
MiqtVirtualQSpatialSound::connect(self, static_cast<void (QSpatialSound::*)()>(&QSpatialSound::volumeChanged), self, [=]() {
miqt_exec_callback_QSpatialSound_VolumeChanged(slot);
});
}
void QSpatialSound_DistanceModelChanged(QSpatialSound* self) {
self->distanceModelChanged();
}
void QSpatialSound_connect_DistanceModelChanged(QSpatialSound* self, intptr_t slot) {
MiqtVirtualQSpatialSound::connect(self, static_cast<void (QSpatialSound::*)()>(&QSpatialSound::distanceModelChanged), self, [=]() {
miqt_exec_callback_QSpatialSound_DistanceModelChanged(slot);
});
}
void QSpatialSound_SizeChanged(QSpatialSound* self) {
self->sizeChanged();
}
void QSpatialSound_connect_SizeChanged(QSpatialSound* self, intptr_t slot) {
MiqtVirtualQSpatialSound::connect(self, static_cast<void (QSpatialSound::*)()>(&QSpatialSound::sizeChanged), self, [=]() {
miqt_exec_callback_QSpatialSound_SizeChanged(slot);
});
}
void QSpatialSound_DistanceCutoffChanged(QSpatialSound* self) {
self->distanceCutoffChanged();
}
void QSpatialSound_connect_DistanceCutoffChanged(QSpatialSound* self, intptr_t slot) {
MiqtVirtualQSpatialSound::connect(self, static_cast<void (QSpatialSound::*)()>(&QSpatialSound::distanceCutoffChanged), self, [=]() {
miqt_exec_callback_QSpatialSound_DistanceCutoffChanged(slot);
});
}
void QSpatialSound_ManualAttenuationChanged(QSpatialSound* self) {
self->manualAttenuationChanged();
}
void QSpatialSound_connect_ManualAttenuationChanged(QSpatialSound* self, intptr_t slot) {
MiqtVirtualQSpatialSound::connect(self, static_cast<void (QSpatialSound::*)()>(&QSpatialSound::manualAttenuationChanged), self, [=]() {
miqt_exec_callback_QSpatialSound_ManualAttenuationChanged(slot);
});
}
void QSpatialSound_OcclusionIntensityChanged(QSpatialSound* self) {
self->occlusionIntensityChanged();
}
void QSpatialSound_connect_OcclusionIntensityChanged(QSpatialSound* self, intptr_t slot) {
MiqtVirtualQSpatialSound::connect(self, static_cast<void (QSpatialSound::*)()>(&QSpatialSound::occlusionIntensityChanged), self, [=]() {
miqt_exec_callback_QSpatialSound_OcclusionIntensityChanged(slot);
});
}
void QSpatialSound_DirectivityChanged(QSpatialSound* self) {
self->directivityChanged();
}
void QSpatialSound_connect_DirectivityChanged(QSpatialSound* self, intptr_t slot) {
MiqtVirtualQSpatialSound::connect(self, static_cast<void (QSpatialSound::*)()>(&QSpatialSound::directivityChanged), self, [=]() {
miqt_exec_callback_QSpatialSound_DirectivityChanged(slot);
});
}
void QSpatialSound_DirectivityOrderChanged(QSpatialSound* self) {
self->directivityOrderChanged();
}
void QSpatialSound_connect_DirectivityOrderChanged(QSpatialSound* self, intptr_t slot) {
MiqtVirtualQSpatialSound::connect(self, static_cast<void (QSpatialSound::*)()>(&QSpatialSound::directivityOrderChanged), self, [=]() {
miqt_exec_callback_QSpatialSound_DirectivityOrderChanged(slot);
});
}
void QSpatialSound_NearFieldGainChanged(QSpatialSound* self) {
self->nearFieldGainChanged();
}
void QSpatialSound_connect_NearFieldGainChanged(QSpatialSound* self, intptr_t slot) {
MiqtVirtualQSpatialSound::connect(self, static_cast<void (QSpatialSound::*)()>(&QSpatialSound::nearFieldGainChanged), self, [=]() {
miqt_exec_callback_QSpatialSound_NearFieldGainChanged(slot);
});
}
void QSpatialSound_Play(QSpatialSound* self) {
self->play();
}
void QSpatialSound_Pause(QSpatialSound* self) {
self->pause();
}
void QSpatialSound_Stop(QSpatialSound* self) {
self->stop();
}
struct miqt_string QSpatialSound_Tr2(const char* s, const char* c) {
QString _ret = QSpatialSound::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 QSpatialSound_Tr3(const char* s, const char* c, int n) {
QString _ret = QSpatialSound::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;
}
void QSpatialSound_override_virtual_Event(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQSpatialSound*>( (QSpatialSound*)(self) )->handle__Event = slot;
}
bool QSpatialSound_virtualbase_Event(void* self, QEvent* event) {
return ( (MiqtVirtualQSpatialSound*)(self) )->virtualbase_Event(event);
}
void QSpatialSound_override_virtual_EventFilter(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQSpatialSound*>( (QSpatialSound*)(self) )->handle__EventFilter = slot;
}
bool QSpatialSound_virtualbase_EventFilter(void* self, QObject* watched, QEvent* event) {
return ( (MiqtVirtualQSpatialSound*)(self) )->virtualbase_EventFilter(watched, event);
}
void QSpatialSound_override_virtual_TimerEvent(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQSpatialSound*>( (QSpatialSound*)(self) )->handle__TimerEvent = slot;
}
void QSpatialSound_virtualbase_TimerEvent(void* self, QTimerEvent* event) {
( (MiqtVirtualQSpatialSound*)(self) )->virtualbase_TimerEvent(event);
}
void QSpatialSound_override_virtual_ChildEvent(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQSpatialSound*>( (QSpatialSound*)(self) )->handle__ChildEvent = slot;
}
void QSpatialSound_virtualbase_ChildEvent(void* self, QChildEvent* event) {
( (MiqtVirtualQSpatialSound*)(self) )->virtualbase_ChildEvent(event);
}
void QSpatialSound_override_virtual_CustomEvent(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQSpatialSound*>( (QSpatialSound*)(self) )->handle__CustomEvent = slot;
}
void QSpatialSound_virtualbase_CustomEvent(void* self, QEvent* event) {
( (MiqtVirtualQSpatialSound*)(self) )->virtualbase_CustomEvent(event);
}
void QSpatialSound_override_virtual_ConnectNotify(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQSpatialSound*>( (QSpatialSound*)(self) )->handle__ConnectNotify = slot;
}
void QSpatialSound_virtualbase_ConnectNotify(void* self, QMetaMethod* signal) {
( (MiqtVirtualQSpatialSound*)(self) )->virtualbase_ConnectNotify(signal);
}
void QSpatialSound_override_virtual_DisconnectNotify(void* self, intptr_t slot) {
dynamic_cast<MiqtVirtualQSpatialSound*>( (QSpatialSound*)(self) )->handle__DisconnectNotify = slot;
}
void QSpatialSound_virtualbase_DisconnectNotify(void* self, QMetaMethod* signal) {
( (MiqtVirtualQSpatialSound*)(self) )->virtualbase_DisconnectNotify(signal);
}
void QSpatialSound_Delete(QSpatialSound* self, bool isSubclass) {
if (isSubclass) {
delete dynamic_cast<MiqtVirtualQSpatialSound*>( self );
} else {
delete self;
}
}