mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
54 lines
2.1 KiB
C
54 lines
2.1 KiB
C
|
#ifndef GEN_QCAMERACONTROL_H
|
||
|
#define GEN_QCAMERACONTROL_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 QCameraControl;
|
||
|
class QMetaObject;
|
||
|
#else
|
||
|
typedef struct QCameraControl QCameraControl;
|
||
|
typedef struct QMetaObject QMetaObject;
|
||
|
#endif
|
||
|
|
||
|
QMetaObject* QCameraControl_MetaObject(const QCameraControl* self);
|
||
|
void* QCameraControl_Metacast(QCameraControl* self, const char* param1);
|
||
|
struct miqt_string QCameraControl_Tr(const char* s);
|
||
|
struct miqt_string QCameraControl_TrUtf8(const char* s);
|
||
|
int QCameraControl_State(const QCameraControl* self);
|
||
|
void QCameraControl_SetState(QCameraControl* self, int state);
|
||
|
int QCameraControl_Status(const QCameraControl* self);
|
||
|
int QCameraControl_CaptureMode(const QCameraControl* self);
|
||
|
void QCameraControl_SetCaptureMode(QCameraControl* self, int captureMode);
|
||
|
bool QCameraControl_IsCaptureModeSupported(const QCameraControl* self, int mode);
|
||
|
bool QCameraControl_CanChangeProperty(const QCameraControl* self, int changeType, int status);
|
||
|
void QCameraControl_StateChanged(QCameraControl* self, int param1);
|
||
|
void QCameraControl_connect_StateChanged(QCameraControl* self, intptr_t slot);
|
||
|
void QCameraControl_StatusChanged(QCameraControl* self, int param1);
|
||
|
void QCameraControl_connect_StatusChanged(QCameraControl* self, intptr_t slot);
|
||
|
void QCameraControl_Error(QCameraControl* self, int error, struct miqt_string errorString);
|
||
|
void QCameraControl_connect_Error(QCameraControl* self, intptr_t slot);
|
||
|
void QCameraControl_CaptureModeChanged(QCameraControl* self, int mode);
|
||
|
void QCameraControl_connect_CaptureModeChanged(QCameraControl* self, intptr_t slot);
|
||
|
struct miqt_string QCameraControl_Tr2(const char* s, const char* c);
|
||
|
struct miqt_string QCameraControl_Tr3(const char* s, const char* c, int n);
|
||
|
struct miqt_string QCameraControl_TrUtf82(const char* s, const char* c);
|
||
|
struct miqt_string QCameraControl_TrUtf83(const char* s, const char* c, int n);
|
||
|
void QCameraControl_Delete(QCameraControl* self);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /* extern C */
|
||
|
#endif
|
||
|
|
||
|
#endif
|