2024-11-17 19:21:37 +13:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT_MULTIMEDIA_GEN_QVIDEOWIDGETCONTROL_H
|
|
|
|
#define MIQT_QT_MULTIMEDIA_GEN_QVIDEOWIDGETCONTROL_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 QVideoWidgetControl;
|
|
|
|
class QWidget;
|
|
|
|
#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 QVideoWidgetControl QVideoWidgetControl;
|
|
|
|
typedef struct QWidget QWidget;
|
|
|
|
#endif
|
|
|
|
|
2024-12-07 17:15:57 +13:00
|
|
|
void QVideoWidgetControl_virtbase(QVideoWidgetControl* src, QMediaControl** outptr_QMediaControl);
|
2025-02-01 13:45:16 +13:00
|
|
|
QMetaObject* QVideoWidgetControl_metaObject(const QVideoWidgetControl* self);
|
|
|
|
void* QVideoWidgetControl_metacast(QVideoWidgetControl* self, const char* param1);
|
|
|
|
struct miqt_string QVideoWidgetControl_tr(const char* s);
|
|
|
|
struct miqt_string QVideoWidgetControl_trUtf8(const char* s);
|
|
|
|
QWidget* QVideoWidgetControl_videoWidget(QVideoWidgetControl* self);
|
|
|
|
int QVideoWidgetControl_aspectRatioMode(const QVideoWidgetControl* self);
|
|
|
|
void QVideoWidgetControl_setAspectRatioMode(QVideoWidgetControl* self, int mode);
|
|
|
|
bool QVideoWidgetControl_isFullScreen(const QVideoWidgetControl* self);
|
|
|
|
void QVideoWidgetControl_setFullScreen(QVideoWidgetControl* self, bool fullScreen);
|
|
|
|
int QVideoWidgetControl_brightness(const QVideoWidgetControl* self);
|
|
|
|
void QVideoWidgetControl_setBrightness(QVideoWidgetControl* self, int brightness);
|
|
|
|
int QVideoWidgetControl_contrast(const QVideoWidgetControl* self);
|
|
|
|
void QVideoWidgetControl_setContrast(QVideoWidgetControl* self, int contrast);
|
|
|
|
int QVideoWidgetControl_hue(const QVideoWidgetControl* self);
|
|
|
|
void QVideoWidgetControl_setHue(QVideoWidgetControl* self, int hue);
|
|
|
|
int QVideoWidgetControl_saturation(const QVideoWidgetControl* self);
|
|
|
|
void QVideoWidgetControl_setSaturation(QVideoWidgetControl* self, int saturation);
|
|
|
|
void QVideoWidgetControl_fullScreenChanged(QVideoWidgetControl* self, bool fullScreen);
|
|
|
|
void QVideoWidgetControl_connect_fullScreenChanged(QVideoWidgetControl* self, intptr_t slot);
|
|
|
|
void QVideoWidgetControl_brightnessChanged(QVideoWidgetControl* self, int brightness);
|
|
|
|
void QVideoWidgetControl_connect_brightnessChanged(QVideoWidgetControl* self, intptr_t slot);
|
|
|
|
void QVideoWidgetControl_contrastChanged(QVideoWidgetControl* self, int contrast);
|
|
|
|
void QVideoWidgetControl_connect_contrastChanged(QVideoWidgetControl* self, intptr_t slot);
|
|
|
|
void QVideoWidgetControl_hueChanged(QVideoWidgetControl* self, int hue);
|
|
|
|
void QVideoWidgetControl_connect_hueChanged(QVideoWidgetControl* self, intptr_t slot);
|
|
|
|
void QVideoWidgetControl_saturationChanged(QVideoWidgetControl* self, int saturation);
|
|
|
|
void QVideoWidgetControl_connect_saturationChanged(QVideoWidgetControl* self, intptr_t slot);
|
|
|
|
struct miqt_string QVideoWidgetControl_tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QVideoWidgetControl_tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QVideoWidgetControl_trUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QVideoWidgetControl_trUtf83(const char* s, const char* c, int n);
|
|
|
|
void QVideoWidgetControl_delete(QVideoWidgetControl* 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
|