mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
106 lines
4.8 KiB
C++
106 lines
4.8 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT6_MULTIMEDIA_GEN_QAUDIODECODER_H
|
|
#define MIQT_QT6_MULTIMEDIA_GEN_QAUDIODECODER_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 QAudioBuffer;
|
|
class QAudioDecoder;
|
|
class QAudioFormat;
|
|
class QChildEvent;
|
|
class QEvent;
|
|
class QIODevice;
|
|
class QMetaMethod;
|
|
class QMetaObject;
|
|
class QObject;
|
|
class QTimerEvent;
|
|
class QUrl;
|
|
#else
|
|
typedef struct QAudioBuffer QAudioBuffer;
|
|
typedef struct QAudioDecoder QAudioDecoder;
|
|
typedef struct QAudioFormat QAudioFormat;
|
|
typedef struct QChildEvent QChildEvent;
|
|
typedef struct QEvent QEvent;
|
|
typedef struct QIODevice QIODevice;
|
|
typedef struct QMetaMethod QMetaMethod;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QObject QObject;
|
|
typedef struct QTimerEvent QTimerEvent;
|
|
typedef struct QUrl QUrl;
|
|
#endif
|
|
|
|
QAudioDecoder* QAudioDecoder_new();
|
|
QAudioDecoder* QAudioDecoder_new2(QObject* parent);
|
|
void QAudioDecoder_virtbase(QAudioDecoder* src, QObject** outptr_QObject);
|
|
QMetaObject* QAudioDecoder_MetaObject(const QAudioDecoder* self);
|
|
void* QAudioDecoder_Metacast(QAudioDecoder* self, const char* param1);
|
|
struct miqt_string QAudioDecoder_Tr(const char* s);
|
|
bool QAudioDecoder_IsSupported(const QAudioDecoder* self);
|
|
bool QAudioDecoder_IsDecoding(const QAudioDecoder* self);
|
|
QUrl* QAudioDecoder_Source(const QAudioDecoder* self);
|
|
void QAudioDecoder_SetSource(QAudioDecoder* self, QUrl* fileName);
|
|
QIODevice* QAudioDecoder_SourceDevice(const QAudioDecoder* self);
|
|
void QAudioDecoder_SetSourceDevice(QAudioDecoder* self, QIODevice* device);
|
|
QAudioFormat* QAudioDecoder_AudioFormat(const QAudioDecoder* self);
|
|
void QAudioDecoder_SetAudioFormat(QAudioDecoder* self, QAudioFormat* format);
|
|
int QAudioDecoder_Error(const QAudioDecoder* self);
|
|
struct miqt_string QAudioDecoder_ErrorString(const QAudioDecoder* self);
|
|
QAudioBuffer* QAudioDecoder_Read(const QAudioDecoder* self);
|
|
bool QAudioDecoder_BufferAvailable(const QAudioDecoder* self);
|
|
long long QAudioDecoder_Position(const QAudioDecoder* self);
|
|
long long QAudioDecoder_Duration(const QAudioDecoder* self);
|
|
void QAudioDecoder_Start(QAudioDecoder* self);
|
|
void QAudioDecoder_Stop(QAudioDecoder* self);
|
|
void QAudioDecoder_BufferAvailableChanged(QAudioDecoder* self, bool param1);
|
|
void QAudioDecoder_connect_BufferAvailableChanged(QAudioDecoder* self, intptr_t slot);
|
|
void QAudioDecoder_BufferReady(QAudioDecoder* self);
|
|
void QAudioDecoder_connect_BufferReady(QAudioDecoder* self, intptr_t slot);
|
|
void QAudioDecoder_Finished(QAudioDecoder* self);
|
|
void QAudioDecoder_connect_Finished(QAudioDecoder* self, intptr_t slot);
|
|
void QAudioDecoder_IsDecodingChanged(QAudioDecoder* self, bool param1);
|
|
void QAudioDecoder_connect_IsDecodingChanged(QAudioDecoder* self, intptr_t slot);
|
|
void QAudioDecoder_FormatChanged(QAudioDecoder* self, QAudioFormat* format);
|
|
void QAudioDecoder_connect_FormatChanged(QAudioDecoder* self, intptr_t slot);
|
|
void QAudioDecoder_ErrorWithError(QAudioDecoder* self, int error);
|
|
void QAudioDecoder_connect_ErrorWithError(QAudioDecoder* self, intptr_t slot);
|
|
void QAudioDecoder_SourceChanged(QAudioDecoder* self);
|
|
void QAudioDecoder_connect_SourceChanged(QAudioDecoder* self, intptr_t slot);
|
|
void QAudioDecoder_PositionChanged(QAudioDecoder* self, long long position);
|
|
void QAudioDecoder_connect_PositionChanged(QAudioDecoder* self, intptr_t slot);
|
|
void QAudioDecoder_DurationChanged(QAudioDecoder* self, long long duration);
|
|
void QAudioDecoder_connect_DurationChanged(QAudioDecoder* self, intptr_t slot);
|
|
struct miqt_string QAudioDecoder_Tr2(const char* s, const char* c);
|
|
struct miqt_string QAudioDecoder_Tr3(const char* s, const char* c, int n);
|
|
void QAudioDecoder_override_virtual_Event(void* self, intptr_t slot);
|
|
bool QAudioDecoder_virtualbase_Event(void* self, QEvent* event);
|
|
void QAudioDecoder_override_virtual_EventFilter(void* self, intptr_t slot);
|
|
bool QAudioDecoder_virtualbase_EventFilter(void* self, QObject* watched, QEvent* event);
|
|
void QAudioDecoder_override_virtual_TimerEvent(void* self, intptr_t slot);
|
|
void QAudioDecoder_virtualbase_TimerEvent(void* self, QTimerEvent* event);
|
|
void QAudioDecoder_override_virtual_ChildEvent(void* self, intptr_t slot);
|
|
void QAudioDecoder_virtualbase_ChildEvent(void* self, QChildEvent* event);
|
|
void QAudioDecoder_override_virtual_CustomEvent(void* self, intptr_t slot);
|
|
void QAudioDecoder_virtualbase_CustomEvent(void* self, QEvent* event);
|
|
void QAudioDecoder_override_virtual_ConnectNotify(void* self, intptr_t slot);
|
|
void QAudioDecoder_virtualbase_ConnectNotify(void* self, QMetaMethod* signal);
|
|
void QAudioDecoder_override_virtual_DisconnectNotify(void* self, intptr_t slot);
|
|
void QAudioDecoder_virtualbase_DisconnectNotify(void* self, QMetaMethod* signal);
|
|
void QAudioDecoder_Delete(QAudioDecoder* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|