mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
148 lines
4.7 KiB
C++
148 lines
4.7 KiB
C++
|
#include <QAudioDevice>
|
||
|
#include <QCameraDevice>
|
||
|
#include <QList>
|
||
|
#include <QMediaDevices>
|
||
|
#include <QMetaObject>
|
||
|
#include <QObject>
|
||
|
#include <QString>
|
||
|
#include <QByteArray>
|
||
|
#include <cstring>
|
||
|
#include <qmediadevices.h>
|
||
|
#include "gen_qmediadevices.h"
|
||
|
#include "_cgo_export.h"
|
||
|
|
||
|
QMediaDevices* QMediaDevices_new() {
|
||
|
return new QMediaDevices();
|
||
|
}
|
||
|
|
||
|
QMediaDevices* QMediaDevices_new2(QObject* parent) {
|
||
|
return new QMediaDevices(parent);
|
||
|
}
|
||
|
|
||
|
QMetaObject* QMediaDevices_MetaObject(const QMediaDevices* self) {
|
||
|
return (QMetaObject*) self->metaObject();
|
||
|
}
|
||
|
|
||
|
void* QMediaDevices_Metacast(QMediaDevices* self, const char* param1) {
|
||
|
return self->qt_metacast(param1);
|
||
|
}
|
||
|
|
||
|
struct miqt_string QMediaDevices_Tr(const char* s) {
|
||
|
QString _ret = QMediaDevices::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;
|
||
|
}
|
||
|
|
||
|
struct miqt_array QMediaDevices_AudioInputs() {
|
||
|
QList<QAudioDevice> _ret = QMediaDevices::audioInputs();
|
||
|
// Convert QList<> from C++ memory to manually-managed C memory
|
||
|
QAudioDevice** _arr = static_cast<QAudioDevice**>(malloc(sizeof(QAudioDevice*) * _ret.length()));
|
||
|
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
|
||
|
_arr[i] = new QAudioDevice(_ret[i]);
|
||
|
}
|
||
|
struct miqt_array _out;
|
||
|
_out.len = _ret.length();
|
||
|
_out.data = static_cast<void*>(_arr);
|
||
|
return _out;
|
||
|
}
|
||
|
|
||
|
struct miqt_array QMediaDevices_AudioOutputs() {
|
||
|
QList<QAudioDevice> _ret = QMediaDevices::audioOutputs();
|
||
|
// Convert QList<> from C++ memory to manually-managed C memory
|
||
|
QAudioDevice** _arr = static_cast<QAudioDevice**>(malloc(sizeof(QAudioDevice*) * _ret.length()));
|
||
|
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
|
||
|
_arr[i] = new QAudioDevice(_ret[i]);
|
||
|
}
|
||
|
struct miqt_array _out;
|
||
|
_out.len = _ret.length();
|
||
|
_out.data = static_cast<void*>(_arr);
|
||
|
return _out;
|
||
|
}
|
||
|
|
||
|
struct miqt_array QMediaDevices_VideoInputs() {
|
||
|
QList<QCameraDevice> _ret = QMediaDevices::videoInputs();
|
||
|
// Convert QList<> from C++ memory to manually-managed C memory
|
||
|
QCameraDevice** _arr = static_cast<QCameraDevice**>(malloc(sizeof(QCameraDevice*) * _ret.length()));
|
||
|
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
|
||
|
_arr[i] = new QCameraDevice(_ret[i]);
|
||
|
}
|
||
|
struct miqt_array _out;
|
||
|
_out.len = _ret.length();
|
||
|
_out.data = static_cast<void*>(_arr);
|
||
|
return _out;
|
||
|
}
|
||
|
|
||
|
QAudioDevice* QMediaDevices_DefaultAudioInput() {
|
||
|
return new QAudioDevice(QMediaDevices::defaultAudioInput());
|
||
|
}
|
||
|
|
||
|
QAudioDevice* QMediaDevices_DefaultAudioOutput() {
|
||
|
return new QAudioDevice(QMediaDevices::defaultAudioOutput());
|
||
|
}
|
||
|
|
||
|
QCameraDevice* QMediaDevices_DefaultVideoInput() {
|
||
|
return new QCameraDevice(QMediaDevices::defaultVideoInput());
|
||
|
}
|
||
|
|
||
|
void QMediaDevices_AudioInputsChanged(QMediaDevices* self) {
|
||
|
self->audioInputsChanged();
|
||
|
}
|
||
|
|
||
|
void QMediaDevices_connect_AudioInputsChanged(QMediaDevices* self, intptr_t slot) {
|
||
|
QMediaDevices::connect(self, static_cast<void (QMediaDevices::*)()>(&QMediaDevices::audioInputsChanged), self, [=]() {
|
||
|
miqt_exec_callback_QMediaDevices_AudioInputsChanged(slot);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
void QMediaDevices_AudioOutputsChanged(QMediaDevices* self) {
|
||
|
self->audioOutputsChanged();
|
||
|
}
|
||
|
|
||
|
void QMediaDevices_connect_AudioOutputsChanged(QMediaDevices* self, intptr_t slot) {
|
||
|
QMediaDevices::connect(self, static_cast<void (QMediaDevices::*)()>(&QMediaDevices::audioOutputsChanged), self, [=]() {
|
||
|
miqt_exec_callback_QMediaDevices_AudioOutputsChanged(slot);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
void QMediaDevices_VideoInputsChanged(QMediaDevices* self) {
|
||
|
self->videoInputsChanged();
|
||
|
}
|
||
|
|
||
|
void QMediaDevices_connect_VideoInputsChanged(QMediaDevices* self, intptr_t slot) {
|
||
|
QMediaDevices::connect(self, static_cast<void (QMediaDevices::*)()>(&QMediaDevices::videoInputsChanged), self, [=]() {
|
||
|
miqt_exec_callback_QMediaDevices_VideoInputsChanged(slot);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
struct miqt_string QMediaDevices_Tr2(const char* s, const char* c) {
|
||
|
QString _ret = QMediaDevices::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 QMediaDevices_Tr3(const char* s, const char* c, int n) {
|
||
|
QString _ret = QMediaDevices::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 QMediaDevices_Delete(QMediaDevices* self) {
|
||
|
delete self;
|
||
|
}
|
||
|
|