2024-11-17 19:21:37 +13:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT_MULTIMEDIA_GEN_QRADIODATACONTROL_H
|
|
|
|
#define MIQT_QT_MULTIMEDIA_GEN_QRADIODATACONTROL_H
|
2024-11-04 23:15:32 +13: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
|
2024-11-19 19:29:06 +13:00
|
|
|
class QMediaControl;
|
2024-11-04 23:15:32 +13:00
|
|
|
class QMetaObject;
|
2024-11-19 19:29:06 +13:00
|
|
|
class QObject;
|
2024-11-04 23:15:32 +13:00
|
|
|
class QRadioDataControl;
|
|
|
|
#else
|
2024-11-19 19:29:06 +13:00
|
|
|
typedef struct QMediaControl QMediaControl;
|
2024-11-04 23:15:32 +13:00
|
|
|
typedef struct QMetaObject QMetaObject;
|
2024-11-19 19:29:06 +13:00
|
|
|
typedef struct QObject QObject;
|
2024-11-04 23:15:32 +13:00
|
|
|
typedef struct QRadioDataControl QRadioDataControl;
|
|
|
|
#endif
|
|
|
|
|
2024-12-07 17:15:57 +13:00
|
|
|
void QRadioDataControl_virtbase(QRadioDataControl* src, QMediaControl** outptr_QMediaControl);
|
2025-02-01 13:45:16 +13:00
|
|
|
QMetaObject* QRadioDataControl_metaObject(const QRadioDataControl* self);
|
|
|
|
void* QRadioDataControl_metacast(QRadioDataControl* self, const char* param1);
|
|
|
|
struct miqt_string QRadioDataControl_tr(const char* s);
|
|
|
|
struct miqt_string QRadioDataControl_trUtf8(const char* s);
|
|
|
|
struct miqt_string QRadioDataControl_stationId(const QRadioDataControl* self);
|
|
|
|
int QRadioDataControl_programType(const QRadioDataControl* self);
|
|
|
|
struct miqt_string QRadioDataControl_programTypeName(const QRadioDataControl* self);
|
|
|
|
struct miqt_string QRadioDataControl_stationName(const QRadioDataControl* self);
|
|
|
|
struct miqt_string QRadioDataControl_radioText(const QRadioDataControl* self);
|
|
|
|
void QRadioDataControl_setAlternativeFrequenciesEnabled(QRadioDataControl* self, bool enabled);
|
|
|
|
bool QRadioDataControl_isAlternativeFrequenciesEnabled(const QRadioDataControl* self);
|
|
|
|
int QRadioDataControl_error(const QRadioDataControl* self);
|
|
|
|
struct miqt_string QRadioDataControl_errorString(const QRadioDataControl* self);
|
|
|
|
void QRadioDataControl_stationIdChanged(QRadioDataControl* self, struct miqt_string stationId);
|
|
|
|
void QRadioDataControl_connect_stationIdChanged(QRadioDataControl* self, intptr_t slot);
|
|
|
|
void QRadioDataControl_programTypeChanged(QRadioDataControl* self, int programType);
|
|
|
|
void QRadioDataControl_connect_programTypeChanged(QRadioDataControl* self, intptr_t slot);
|
|
|
|
void QRadioDataControl_programTypeNameChanged(QRadioDataControl* self, struct miqt_string programTypeName);
|
|
|
|
void QRadioDataControl_connect_programTypeNameChanged(QRadioDataControl* self, intptr_t slot);
|
|
|
|
void QRadioDataControl_stationNameChanged(QRadioDataControl* self, struct miqt_string stationName);
|
|
|
|
void QRadioDataControl_connect_stationNameChanged(QRadioDataControl* self, intptr_t slot);
|
|
|
|
void QRadioDataControl_radioTextChanged(QRadioDataControl* self, struct miqt_string radioText);
|
|
|
|
void QRadioDataControl_connect_radioTextChanged(QRadioDataControl* self, intptr_t slot);
|
|
|
|
void QRadioDataControl_alternativeFrequenciesEnabledChanged(QRadioDataControl* self, bool enabled);
|
|
|
|
void QRadioDataControl_connect_alternativeFrequenciesEnabledChanged(QRadioDataControl* self, intptr_t slot);
|
|
|
|
void QRadioDataControl_errorWithErr(QRadioDataControl* self, int err);
|
|
|
|
void QRadioDataControl_connect_errorWithErr(QRadioDataControl* self, intptr_t slot);
|
|
|
|
struct miqt_string QRadioDataControl_tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QRadioDataControl_tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QRadioDataControl_trUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QRadioDataControl_trUtf83(const char* s, const char* c, int n);
|
|
|
|
void QRadioDataControl_delete(QRadioDataControl* self);
|
2024-11-04 23:15:32 +13:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
2025-02-01 13:45:16 +13:00
|
|
|
#endif
|
2024-11-04 23:15:32 +13:00
|
|
|
|
|
|
|
#endif
|