2024-08-25 04:08:24 +00:00
|
|
|
#ifndef GEN_QABSTRACTSCROLLAREA_H
|
|
|
|
#define GEN_QABSTRACTSCROLLAREA_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 QAbstractScrollArea;
|
|
|
|
class QMetaObject;
|
|
|
|
class QScrollBar;
|
|
|
|
class QSize;
|
|
|
|
class QWidget;
|
|
|
|
#else
|
|
|
|
typedef struct QAbstractScrollArea QAbstractScrollArea;
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
typedef struct QScrollBar QScrollBar;
|
|
|
|
typedef struct QSize QSize;
|
|
|
|
typedef struct QWidget QWidget;
|
|
|
|
#endif
|
|
|
|
|
2024-10-26 00:46:42 +00:00
|
|
|
QAbstractScrollArea* QAbstractScrollArea_new(QWidget* parent);
|
|
|
|
QAbstractScrollArea* QAbstractScrollArea_new2();
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QAbstractScrollArea_MetaObject(const QAbstractScrollArea* self);
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QAbstractScrollArea_Metacast(QAbstractScrollArea* self, const char* param1);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QAbstractScrollArea_Tr(const char* s);
|
|
|
|
struct miqt_string QAbstractScrollArea_TrUtf8(const char* s);
|
2024-09-18 00:12:02 +00:00
|
|
|
int QAbstractScrollArea_VerticalScrollBarPolicy(const QAbstractScrollArea* self);
|
|
|
|
void QAbstractScrollArea_SetVerticalScrollBarPolicy(QAbstractScrollArea* self, int verticalScrollBarPolicy);
|
2024-09-11 05:41:09 +00:00
|
|
|
QScrollBar* QAbstractScrollArea_VerticalScrollBar(const QAbstractScrollArea* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QAbstractScrollArea_SetVerticalScrollBar(QAbstractScrollArea* self, QScrollBar* scrollbar);
|
2024-09-18 00:12:02 +00:00
|
|
|
int QAbstractScrollArea_HorizontalScrollBarPolicy(const QAbstractScrollArea* self);
|
|
|
|
void QAbstractScrollArea_SetHorizontalScrollBarPolicy(QAbstractScrollArea* self, int horizontalScrollBarPolicy);
|
2024-09-11 05:41:09 +00:00
|
|
|
QScrollBar* QAbstractScrollArea_HorizontalScrollBar(const QAbstractScrollArea* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QAbstractScrollArea_SetHorizontalScrollBar(QAbstractScrollArea* self, QScrollBar* scrollbar);
|
2024-09-11 05:41:09 +00:00
|
|
|
QWidget* QAbstractScrollArea_CornerWidget(const QAbstractScrollArea* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QAbstractScrollArea_SetCornerWidget(QAbstractScrollArea* self, QWidget* widget);
|
2024-08-29 07:01:51 +00:00
|
|
|
void QAbstractScrollArea_AddScrollBarWidget(QAbstractScrollArea* self, QWidget* widget, int alignment);
|
2024-11-04 07:18:27 +00:00
|
|
|
struct miqt_array QAbstractScrollArea_ScrollBarWidgets(QAbstractScrollArea* self, int alignment);
|
2024-09-11 05:41:09 +00:00
|
|
|
QWidget* QAbstractScrollArea_Viewport(const QAbstractScrollArea* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QAbstractScrollArea_SetViewport(QAbstractScrollArea* self, QWidget* widget);
|
2024-09-11 05:41:09 +00:00
|
|
|
QSize* QAbstractScrollArea_MaximumViewportSize(const QAbstractScrollArea* self);
|
|
|
|
QSize* QAbstractScrollArea_MinimumSizeHint(const QAbstractScrollArea* self);
|
|
|
|
QSize* QAbstractScrollArea_SizeHint(const QAbstractScrollArea* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QAbstractScrollArea_SetupViewport(QAbstractScrollArea* self, QWidget* viewport);
|
2024-09-18 00:12:02 +00:00
|
|
|
int QAbstractScrollArea_SizeAdjustPolicy(const QAbstractScrollArea* self);
|
|
|
|
void QAbstractScrollArea_SetSizeAdjustPolicy(QAbstractScrollArea* self, int policy);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QAbstractScrollArea_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QAbstractScrollArea_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QAbstractScrollArea_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QAbstractScrollArea_TrUtf83(const char* s, const char* c, int n);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QAbstractScrollArea_Delete(QAbstractScrollArea* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|