2024-08-25 04:08:24 +00:00
|
|
|
#ifndef GEN_QSTACKEDLAYOUT_H
|
|
|
|
#define GEN_QSTACKEDLAYOUT_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
2024-10-16 05:07:56 +00:00
|
|
|
#include "../libmiqt/libmiqt.h"
|
2024-09-14 22:29:05 +00:00
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class QLayout;
|
|
|
|
class QLayoutItem;
|
|
|
|
class QMetaObject;
|
|
|
|
class QRect;
|
|
|
|
class QSize;
|
|
|
|
class QStackedLayout;
|
|
|
|
class QWidget;
|
|
|
|
#else
|
|
|
|
typedef struct QLayout QLayout;
|
|
|
|
typedef struct QLayoutItem QLayoutItem;
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
typedef struct QRect QRect;
|
|
|
|
typedef struct QSize QSize;
|
|
|
|
typedef struct QStackedLayout QStackedLayout;
|
|
|
|
typedef struct QWidget QWidget;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
QStackedLayout* QStackedLayout_new();
|
|
|
|
QStackedLayout* QStackedLayout_new2(QWidget* parent);
|
|
|
|
QStackedLayout* QStackedLayout_new3(QLayout* parentLayout);
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QStackedLayout_MetaObject(const QStackedLayout* self);
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QStackedLayout_Metacast(QStackedLayout* self, const char* param1);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QStackedLayout_Tr(const char* s);
|
|
|
|
struct miqt_string QStackedLayout_TrUtf8(const char* s);
|
2024-08-25 04:08:24 +00:00
|
|
|
int QStackedLayout_AddWidget(QStackedLayout* self, QWidget* w);
|
|
|
|
int QStackedLayout_InsertWidget(QStackedLayout* self, int index, QWidget* w);
|
2024-09-11 05:41:09 +00:00
|
|
|
QWidget* QStackedLayout_CurrentWidget(const QStackedLayout* self);
|
|
|
|
int QStackedLayout_CurrentIndex(const QStackedLayout* self);
|
|
|
|
QWidget* QStackedLayout_Widget(const QStackedLayout* self, int param1);
|
|
|
|
int QStackedLayout_Count(const QStackedLayout* self);
|
2024-09-18 00:12:02 +00:00
|
|
|
int QStackedLayout_StackingMode(const QStackedLayout* self);
|
|
|
|
void QStackedLayout_SetStackingMode(QStackedLayout* self, int stackingMode);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QStackedLayout_AddItem(QStackedLayout* self, QLayoutItem* item);
|
2024-09-11 05:41:09 +00:00
|
|
|
QSize* QStackedLayout_SizeHint(const QStackedLayout* self);
|
|
|
|
QSize* QStackedLayout_MinimumSize(const QStackedLayout* self);
|
|
|
|
QLayoutItem* QStackedLayout_ItemAt(const QStackedLayout* self, int param1);
|
2024-08-25 04:08:24 +00:00
|
|
|
QLayoutItem* QStackedLayout_TakeAt(QStackedLayout* self, int param1);
|
|
|
|
void QStackedLayout_SetGeometry(QStackedLayout* self, QRect* rect);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QStackedLayout_HasHeightForWidth(const QStackedLayout* self);
|
|
|
|
int QStackedLayout_HeightForWidth(const QStackedLayout* self, int width);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QStackedLayout_WidgetRemoved(QStackedLayout* self, int index);
|
2024-10-13 06:06:06 +00:00
|
|
|
void QStackedLayout_connect_WidgetRemoved(QStackedLayout* self, intptr_t slot);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QStackedLayout_CurrentChanged(QStackedLayout* self, int index);
|
2024-10-13 06:06:06 +00:00
|
|
|
void QStackedLayout_connect_CurrentChanged(QStackedLayout* self, intptr_t slot);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QStackedLayout_SetCurrentIndex(QStackedLayout* self, int index);
|
|
|
|
void QStackedLayout_SetCurrentWidget(QStackedLayout* self, QWidget* w);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QStackedLayout_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QStackedLayout_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QStackedLayout_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QStackedLayout_TrUtf83(const char* s, const char* c, int n);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QStackedLayout_Delete(QStackedLayout* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|