2024-10-20 05:21:03 +00:00
|
|
|
#ifndef GEN_QCHECKBOX_H
|
|
|
|
#define GEN_QCHECKBOX_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 QCheckBox;
|
|
|
|
class QMetaObject;
|
|
|
|
class QSize;
|
|
|
|
class QWidget;
|
|
|
|
#else
|
|
|
|
typedef struct QCheckBox QCheckBox;
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
typedef struct QSize QSize;
|
|
|
|
typedef struct QWidget QWidget;
|
|
|
|
#endif
|
|
|
|
|
2024-10-26 00:46:42 +00:00
|
|
|
QCheckBox* QCheckBox_new(QWidget* parent);
|
|
|
|
QCheckBox* QCheckBox_new2();
|
|
|
|
QCheckBox* QCheckBox_new3(struct miqt_string text);
|
2024-10-20 05:21:03 +00:00
|
|
|
QCheckBox* QCheckBox_new4(struct miqt_string text, QWidget* parent);
|
|
|
|
QMetaObject* QCheckBox_MetaObject(const QCheckBox* self);
|
|
|
|
void* QCheckBox_Metacast(QCheckBox* self, const char* param1);
|
|
|
|
struct miqt_string QCheckBox_Tr(const char* s);
|
|
|
|
QSize* QCheckBox_SizeHint(const QCheckBox* self);
|
|
|
|
QSize* QCheckBox_MinimumSizeHint(const QCheckBox* self);
|
|
|
|
void QCheckBox_SetTristate(QCheckBox* self);
|
|
|
|
bool QCheckBox_IsTristate(const QCheckBox* self);
|
|
|
|
int QCheckBox_CheckState(const QCheckBox* self);
|
|
|
|
void QCheckBox_SetCheckState(QCheckBox* self, int state);
|
|
|
|
void QCheckBox_StateChanged(QCheckBox* self, int param1);
|
|
|
|
void QCheckBox_connect_StateChanged(QCheckBox* self, intptr_t slot);
|
|
|
|
struct miqt_string QCheckBox_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QCheckBox_Tr3(const char* s, const char* c, int n);
|
|
|
|
void QCheckBox_SetTristate1(QCheckBox* self, bool y);
|
|
|
|
void QCheckBox_Delete(QCheckBox* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|