2024-08-25 04:08:24 +00:00
|
|
|
#ifndef GEN_QGROUPBOX_H
|
|
|
|
#define GEN_QGROUPBOX_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
#include "binding.h"
|
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class QGroupBox;
|
|
|
|
class QMetaObject;
|
|
|
|
class QSize;
|
|
|
|
class QWidget;
|
|
|
|
#else
|
|
|
|
typedef struct QGroupBox QGroupBox;
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
typedef struct QSize QSize;
|
|
|
|
typedef struct QWidget QWidget;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
QGroupBox* QGroupBox_new();
|
2024-09-14 22:29:05 +00:00
|
|
|
QGroupBox* QGroupBox_new2(struct miqt_string* title);
|
2024-08-25 04:08:24 +00:00
|
|
|
QGroupBox* QGroupBox_new3(QWidget* parent);
|
2024-09-14 22:29:05 +00:00
|
|
|
QGroupBox* QGroupBox_new4(struct miqt_string* title, QWidget* parent);
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QGroupBox_MetaObject(const QGroupBox* self);
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QGroupBox_Metacast(QGroupBox* self, const char* param1);
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QGroupBox_Tr(const char* s);
|
|
|
|
struct miqt_string* QGroupBox_TrUtf8(const char* s);
|
|
|
|
struct miqt_string* QGroupBox_Title(const QGroupBox* self);
|
|
|
|
void QGroupBox_SetTitle(QGroupBox* self, struct miqt_string* title);
|
2024-09-11 05:41:09 +00:00
|
|
|
int QGroupBox_Alignment(const QGroupBox* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGroupBox_SetAlignment(QGroupBox* self, int alignment);
|
2024-09-11 05:41:09 +00:00
|
|
|
QSize* QGroupBox_MinimumSizeHint(const QGroupBox* self);
|
|
|
|
bool QGroupBox_IsFlat(const QGroupBox* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGroupBox_SetFlat(QGroupBox* self, bool flat);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QGroupBox_IsCheckable(const QGroupBox* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGroupBox_SetCheckable(QGroupBox* self, bool checkable);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QGroupBox_IsChecked(const QGroupBox* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGroupBox_SetChecked(QGroupBox* self, bool checked);
|
|
|
|
void QGroupBox_Clicked(QGroupBox* self);
|
2024-09-07 03:31:00 +00:00
|
|
|
void QGroupBox_connect_Clicked(QGroupBox* self, void* slot);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGroupBox_Toggled(QGroupBox* self, bool param1);
|
|
|
|
void QGroupBox_connect_Toggled(QGroupBox* self, void* slot);
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QGroupBox_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string* QGroupBox_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string* QGroupBox_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string* QGroupBox_TrUtf83(const char* s, const char* c, int n);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGroupBox_Clicked1(QGroupBox* self, bool checked);
|
|
|
|
void QGroupBox_connect_Clicked1(QGroupBox* self, void* slot);
|
|
|
|
void QGroupBox_Delete(QGroupBox* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|