mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
384 lines
11 KiB
C++
384 lines
11 KiB
C++
#include <QAudioDevice>
|
|
#include <QAudioInput>
|
|
#include <QChildEvent>
|
|
#include <QEvent>
|
|
#include <QMetaMethod>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QTimerEvent>
|
|
#include <qaudioinput.h>
|
|
#include "gen_qaudioinput.h"
|
|
|
|
#ifndef _Bool
|
|
#define _Bool bool
|
|
#endif
|
|
#include "_cgo_export.h"
|
|
|
|
class MiqtVirtualQAudioInput : public virtual QAudioInput {
|
|
public:
|
|
|
|
MiqtVirtualQAudioInput(): QAudioInput() {};
|
|
MiqtVirtualQAudioInput(const QAudioDevice& deviceInfo): QAudioInput(deviceInfo) {};
|
|
MiqtVirtualQAudioInput(QObject* parent): QAudioInput(parent) {};
|
|
MiqtVirtualQAudioInput(const QAudioDevice& deviceInfo, QObject* parent): QAudioInput(deviceInfo, parent) {};
|
|
|
|
virtual ~MiqtVirtualQAudioInput() = 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 QAudioInput::event(event);
|
|
}
|
|
|
|
QEvent* sigval1 = event;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QAudioInput_Event(this, handle__Event, sigval1);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_Event(QEvent* event) {
|
|
|
|
return QAudioInput::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 QAudioInput::eventFilter(watched, event);
|
|
}
|
|
|
|
QObject* sigval1 = watched;
|
|
QEvent* sigval2 = event;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QAudioInput_EventFilter(this, handle__EventFilter, sigval1, sigval2);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_EventFilter(QObject* watched, QEvent* event) {
|
|
|
|
return QAudioInput::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) {
|
|
QAudioInput::timerEvent(event);
|
|
return;
|
|
}
|
|
|
|
QTimerEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QAudioInput_TimerEvent(this, handle__TimerEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_TimerEvent(QTimerEvent* event) {
|
|
|
|
QAudioInput::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) {
|
|
QAudioInput::childEvent(event);
|
|
return;
|
|
}
|
|
|
|
QChildEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QAudioInput_ChildEvent(this, handle__ChildEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_ChildEvent(QChildEvent* event) {
|
|
|
|
QAudioInput::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) {
|
|
QAudioInput::customEvent(event);
|
|
return;
|
|
}
|
|
|
|
QEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QAudioInput_CustomEvent(this, handle__CustomEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_CustomEvent(QEvent* event) {
|
|
|
|
QAudioInput::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) {
|
|
QAudioInput::connectNotify(signal);
|
|
return;
|
|
}
|
|
|
|
const QMetaMethod& signal_ret = signal;
|
|
// Cast returned reference into pointer
|
|
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
|
|
|
|
miqt_exec_callback_QAudioInput_ConnectNotify(this, handle__ConnectNotify, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_ConnectNotify(QMetaMethod* signal) {
|
|
|
|
QAudioInput::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) {
|
|
QAudioInput::disconnectNotify(signal);
|
|
return;
|
|
}
|
|
|
|
const QMetaMethod& signal_ret = signal;
|
|
// Cast returned reference into pointer
|
|
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
|
|
|
|
miqt_exec_callback_QAudioInput_DisconnectNotify(this, handle__DisconnectNotify, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_DisconnectNotify(QMetaMethod* signal) {
|
|
|
|
QAudioInput::disconnectNotify(*signal);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
QAudioInput* QAudioInput_new() {
|
|
return new MiqtVirtualQAudioInput();
|
|
}
|
|
|
|
QAudioInput* QAudioInput_new2(QAudioDevice* deviceInfo) {
|
|
return new MiqtVirtualQAudioInput(*deviceInfo);
|
|
}
|
|
|
|
QAudioInput* QAudioInput_new3(QObject* parent) {
|
|
return new MiqtVirtualQAudioInput(parent);
|
|
}
|
|
|
|
QAudioInput* QAudioInput_new4(QAudioDevice* deviceInfo, QObject* parent) {
|
|
return new MiqtVirtualQAudioInput(*deviceInfo, parent);
|
|
}
|
|
|
|
void QAudioInput_virtbase(QAudioInput* src, QObject** outptr_QObject) {
|
|
*outptr_QObject = static_cast<QObject*>(src);
|
|
}
|
|
|
|
QMetaObject* QAudioInput_MetaObject(const QAudioInput* self) {
|
|
return (QMetaObject*) self->metaObject();
|
|
}
|
|
|
|
void* QAudioInput_Metacast(QAudioInput* self, const char* param1) {
|
|
return self->qt_metacast(param1);
|
|
}
|
|
|
|
struct miqt_string QAudioInput_Tr(const char* s) {
|
|
QString _ret = QAudioInput::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;
|
|
}
|
|
|
|
QAudioDevice* QAudioInput_Device(const QAudioInput* self) {
|
|
return new QAudioDevice(self->device());
|
|
}
|
|
|
|
float QAudioInput_Volume(const QAudioInput* self) {
|
|
return self->volume();
|
|
}
|
|
|
|
bool QAudioInput_IsMuted(const QAudioInput* self) {
|
|
return self->isMuted();
|
|
}
|
|
|
|
void QAudioInput_SetDevice(QAudioInput* self, QAudioDevice* device) {
|
|
self->setDevice(*device);
|
|
}
|
|
|
|
void QAudioInput_SetVolume(QAudioInput* self, float volume) {
|
|
self->setVolume(static_cast<float>(volume));
|
|
}
|
|
|
|
void QAudioInput_SetMuted(QAudioInput* self, bool muted) {
|
|
self->setMuted(muted);
|
|
}
|
|
|
|
void QAudioInput_DeviceChanged(QAudioInput* self) {
|
|
self->deviceChanged();
|
|
}
|
|
|
|
void QAudioInput_connect_DeviceChanged(QAudioInput* self, intptr_t slot) {
|
|
MiqtVirtualQAudioInput::connect(self, static_cast<void (QAudioInput::*)()>(&QAudioInput::deviceChanged), self, [=]() {
|
|
miqt_exec_callback_QAudioInput_DeviceChanged(slot);
|
|
});
|
|
}
|
|
|
|
void QAudioInput_VolumeChanged(QAudioInput* self, float volume) {
|
|
self->volumeChanged(static_cast<float>(volume));
|
|
}
|
|
|
|
void QAudioInput_connect_VolumeChanged(QAudioInput* self, intptr_t slot) {
|
|
MiqtVirtualQAudioInput::connect(self, static_cast<void (QAudioInput::*)(float)>(&QAudioInput::volumeChanged), self, [=](float volume) {
|
|
float sigval1 = volume;
|
|
miqt_exec_callback_QAudioInput_VolumeChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QAudioInput_MutedChanged(QAudioInput* self, bool muted) {
|
|
self->mutedChanged(muted);
|
|
}
|
|
|
|
void QAudioInput_connect_MutedChanged(QAudioInput* self, intptr_t slot) {
|
|
MiqtVirtualQAudioInput::connect(self, static_cast<void (QAudioInput::*)(bool)>(&QAudioInput::mutedChanged), self, [=](bool muted) {
|
|
bool sigval1 = muted;
|
|
miqt_exec_callback_QAudioInput_MutedChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
struct miqt_string QAudioInput_Tr2(const char* s, const char* c) {
|
|
QString _ret = QAudioInput::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 QAudioInput_Tr3(const char* s, const char* c, int n) {
|
|
QString _ret = QAudioInput::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 QAudioInput_override_virtual_Event(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAudioInput*>( (QAudioInput*)(self) )->handle__Event = slot;
|
|
}
|
|
|
|
bool QAudioInput_virtualbase_Event(void* self, QEvent* event) {
|
|
return ( (MiqtVirtualQAudioInput*)(self) )->virtualbase_Event(event);
|
|
}
|
|
|
|
void QAudioInput_override_virtual_EventFilter(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAudioInput*>( (QAudioInput*)(self) )->handle__EventFilter = slot;
|
|
}
|
|
|
|
bool QAudioInput_virtualbase_EventFilter(void* self, QObject* watched, QEvent* event) {
|
|
return ( (MiqtVirtualQAudioInput*)(self) )->virtualbase_EventFilter(watched, event);
|
|
}
|
|
|
|
void QAudioInput_override_virtual_TimerEvent(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAudioInput*>( (QAudioInput*)(self) )->handle__TimerEvent = slot;
|
|
}
|
|
|
|
void QAudioInput_virtualbase_TimerEvent(void* self, QTimerEvent* event) {
|
|
( (MiqtVirtualQAudioInput*)(self) )->virtualbase_TimerEvent(event);
|
|
}
|
|
|
|
void QAudioInput_override_virtual_ChildEvent(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAudioInput*>( (QAudioInput*)(self) )->handle__ChildEvent = slot;
|
|
}
|
|
|
|
void QAudioInput_virtualbase_ChildEvent(void* self, QChildEvent* event) {
|
|
( (MiqtVirtualQAudioInput*)(self) )->virtualbase_ChildEvent(event);
|
|
}
|
|
|
|
void QAudioInput_override_virtual_CustomEvent(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAudioInput*>( (QAudioInput*)(self) )->handle__CustomEvent = slot;
|
|
}
|
|
|
|
void QAudioInput_virtualbase_CustomEvent(void* self, QEvent* event) {
|
|
( (MiqtVirtualQAudioInput*)(self) )->virtualbase_CustomEvent(event);
|
|
}
|
|
|
|
void QAudioInput_override_virtual_ConnectNotify(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAudioInput*>( (QAudioInput*)(self) )->handle__ConnectNotify = slot;
|
|
}
|
|
|
|
void QAudioInput_virtualbase_ConnectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQAudioInput*)(self) )->virtualbase_ConnectNotify(signal);
|
|
}
|
|
|
|
void QAudioInput_override_virtual_DisconnectNotify(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAudioInput*>( (QAudioInput*)(self) )->handle__DisconnectNotify = slot;
|
|
}
|
|
|
|
void QAudioInput_virtualbase_DisconnectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQAudioInput*)(self) )->virtualbase_DisconnectNotify(signal);
|
|
}
|
|
|
|
void QAudioInput_Delete(QAudioInput* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<MiqtVirtualQAudioInput*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|