2024-11-17 06:21:37 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT_MULTIMEDIA_GEN_QAUDIORECORDER_H
|
|
|
|
#define MIQT_QT_MULTIMEDIA_GEN_QAUDIORECORDER_H
|
2024-11-04 10:15:32 +00:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
|
|
|
#include "../../libmiqt/libmiqt.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class QAudioRecorder;
|
2024-11-19 06:29:06 +00:00
|
|
|
class QMediaBindableInterface;
|
|
|
|
class QMediaObject;
|
|
|
|
class QMediaRecorder;
|
2024-11-04 10:15:32 +00:00
|
|
|
class QMetaObject;
|
|
|
|
class QObject;
|
|
|
|
#else
|
|
|
|
typedef struct QAudioRecorder QAudioRecorder;
|
2024-11-19 06:29:06 +00:00
|
|
|
typedef struct QMediaBindableInterface QMediaBindableInterface;
|
|
|
|
typedef struct QMediaObject QMediaObject;
|
|
|
|
typedef struct QMediaRecorder QMediaRecorder;
|
2024-11-04 10:15:32 +00:00
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
typedef struct QObject QObject;
|
|
|
|
#endif
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
void QAudioRecorder_new(QAudioRecorder** outptr_QAudioRecorder, QMediaRecorder** outptr_QMediaRecorder, QObject** outptr_QObject, QMediaBindableInterface** outptr_QMediaBindableInterface);
|
|
|
|
void QAudioRecorder_new2(QObject* parent, QAudioRecorder** outptr_QAudioRecorder, QMediaRecorder** outptr_QMediaRecorder, QObject** outptr_QObject, QMediaBindableInterface** outptr_QMediaBindableInterface);
|
2024-11-04 10:15:32 +00:00
|
|
|
QMetaObject* QAudioRecorder_MetaObject(const QAudioRecorder* self);
|
|
|
|
void* QAudioRecorder_Metacast(QAudioRecorder* self, const char* param1);
|
|
|
|
struct miqt_string QAudioRecorder_Tr(const char* s);
|
|
|
|
struct miqt_string QAudioRecorder_TrUtf8(const char* s);
|
2024-11-17 06:21:37 +00:00
|
|
|
struct miqt_array /* of struct miqt_string */ QAudioRecorder_AudioInputs(const QAudioRecorder* self);
|
2024-11-04 10:15:32 +00:00
|
|
|
struct miqt_string QAudioRecorder_DefaultAudioInput(const QAudioRecorder* self);
|
|
|
|
struct miqt_string QAudioRecorder_AudioInputDescription(const QAudioRecorder* self, struct miqt_string name);
|
|
|
|
struct miqt_string QAudioRecorder_AudioInput(const QAudioRecorder* self);
|
|
|
|
void QAudioRecorder_SetAudioInput(QAudioRecorder* self, struct miqt_string name);
|
|
|
|
void QAudioRecorder_AudioInputChanged(QAudioRecorder* self, struct miqt_string name);
|
|
|
|
void QAudioRecorder_connect_AudioInputChanged(QAudioRecorder* self, intptr_t slot);
|
|
|
|
void QAudioRecorder_AvailableAudioInputsChanged(QAudioRecorder* self);
|
|
|
|
void QAudioRecorder_connect_AvailableAudioInputsChanged(QAudioRecorder* self, intptr_t slot);
|
|
|
|
struct miqt_string QAudioRecorder_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QAudioRecorder_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QAudioRecorder_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QAudioRecorder_TrUtf83(const char* s, const char* c, int n);
|
2024-11-19 06:29:06 +00:00
|
|
|
void QAudioRecorder_override_virtual_MediaObject(void* self, intptr_t slot);
|
|
|
|
QMediaObject* QAudioRecorder_virtualbase_MediaObject(const void* self);
|
|
|
|
void QAudioRecorder_override_virtual_SetMediaObject(void* self, intptr_t slot);
|
|
|
|
bool QAudioRecorder_virtualbase_SetMediaObject(void* self, QMediaObject* object);
|
|
|
|
void QAudioRecorder_Delete(QAudioRecorder* self, bool isSubclass);
|
2024-11-04 10:15:32 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|