mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
71 lines
2.8 KiB
C
71 lines
2.8 KiB
C
|
#ifndef GEN_QAUDIOENGINE_H
|
||
|
#define GEN_QAUDIOENGINE_H
|
||
|
|
||
|
#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 QAudioDevice;
|
||
|
class QAudioEngine;
|
||
|
class QMetaObject;
|
||
|
class QObject;
|
||
|
#else
|
||
|
typedef struct QAudioDevice QAudioDevice;
|
||
|
typedef struct QAudioEngine QAudioEngine;
|
||
|
typedef struct QMetaObject QMetaObject;
|
||
|
typedef struct QObject QObject;
|
||
|
#endif
|
||
|
|
||
|
QAudioEngine* QAudioEngine_new();
|
||
|
QAudioEngine* QAudioEngine_new2(QObject* parent);
|
||
|
QAudioEngine* QAudioEngine_new3(int sampleRate);
|
||
|
QAudioEngine* QAudioEngine_new4(int sampleRate, QObject* parent);
|
||
|
QMetaObject* QAudioEngine_MetaObject(const QAudioEngine* self);
|
||
|
void* QAudioEngine_Metacast(QAudioEngine* self, const char* param1);
|
||
|
struct miqt_string QAudioEngine_Tr(const char* s);
|
||
|
void QAudioEngine_SetOutputMode(QAudioEngine* self, int mode);
|
||
|
int QAudioEngine_OutputMode(const QAudioEngine* self);
|
||
|
int QAudioEngine_SampleRate(const QAudioEngine* self);
|
||
|
void QAudioEngine_SetOutputDevice(QAudioEngine* self, QAudioDevice* device);
|
||
|
QAudioDevice* QAudioEngine_OutputDevice(const QAudioEngine* self);
|
||
|
void QAudioEngine_SetMasterVolume(QAudioEngine* self, float volume);
|
||
|
float QAudioEngine_MasterVolume(const QAudioEngine* self);
|
||
|
void QAudioEngine_SetPaused(QAudioEngine* self, bool paused);
|
||
|
bool QAudioEngine_Paused(const QAudioEngine* self);
|
||
|
void QAudioEngine_SetRoomEffectsEnabled(QAudioEngine* self, bool enabled);
|
||
|
bool QAudioEngine_RoomEffectsEnabled(const QAudioEngine* self);
|
||
|
void QAudioEngine_SetDistanceScale(QAudioEngine* self, float scale);
|
||
|
float QAudioEngine_DistanceScale(const QAudioEngine* self);
|
||
|
void QAudioEngine_OutputModeChanged(QAudioEngine* self);
|
||
|
void QAudioEngine_connect_OutputModeChanged(QAudioEngine* self, intptr_t slot);
|
||
|
void QAudioEngine_OutputDeviceChanged(QAudioEngine* self);
|
||
|
void QAudioEngine_connect_OutputDeviceChanged(QAudioEngine* self, intptr_t slot);
|
||
|
void QAudioEngine_MasterVolumeChanged(QAudioEngine* self);
|
||
|
void QAudioEngine_connect_MasterVolumeChanged(QAudioEngine* self, intptr_t slot);
|
||
|
void QAudioEngine_PausedChanged(QAudioEngine* self);
|
||
|
void QAudioEngine_connect_PausedChanged(QAudioEngine* self, intptr_t slot);
|
||
|
void QAudioEngine_DistanceScaleChanged(QAudioEngine* self);
|
||
|
void QAudioEngine_connect_DistanceScaleChanged(QAudioEngine* self, intptr_t slot);
|
||
|
void QAudioEngine_Start(QAudioEngine* self);
|
||
|
void QAudioEngine_Stop(QAudioEngine* self);
|
||
|
void QAudioEngine_Pause(QAudioEngine* self);
|
||
|
void QAudioEngine_Resume(QAudioEngine* self);
|
||
|
struct miqt_string QAudioEngine_Tr2(const char* s, const char* c);
|
||
|
struct miqt_string QAudioEngine_Tr3(const char* s, const char* c, int n);
|
||
|
void QAudioEngine_Delete(QAudioEngine* self);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /* extern C */
|
||
|
#endif
|
||
|
|
||
|
#endif
|