miqt/qt/gen_qlayout.cpp

282 lines
8.1 KiB
C++
Raw Normal View History

#include <QLayout>
#include <QLayoutItem>
#include <QMargins>
#include <QMetaObject>
#include <QRect>
#include <QSize>
#include <QString>
2024-08-29 07:01:51 +00:00
#include <QByteArray>
#include <cstring>
#include <QWidget>
2024-08-29 07:01:51 +00:00
#include "qlayout.h"
2024-08-29 07:01:51 +00:00
#include "gen_qlayout.h"
extern "C" {
extern void miqt_exec_callback(void* cb, int argc, void* argv);
}
QMetaObject* QLayout_MetaObject(const QLayout* self) {
return (QMetaObject*) self->metaObject();
}
2024-08-29 07:01:51 +00:00
void QLayout_Tr(const char* s, char** _out, int* _out_Strlen) {
QString ret = QLayout::tr(s);
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray b = ret.toUtf8();
*_out = static_cast<char*>(malloc(b.length()));
memcpy(*_out, b.data(), b.length());
*_out_Strlen = b.length();
}
2024-08-29 07:01:51 +00:00
void QLayout_TrUtf8(const char* s, char** _out, int* _out_Strlen) {
QString ret = QLayout::trUtf8(s);
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray b = ret.toUtf8();
*_out = static_cast<char*>(malloc(b.length()));
memcpy(*_out, b.data(), b.length());
*_out_Strlen = b.length();
}
int QLayout_Margin(const QLayout* self) {
return self->margin();
}
void QLayout_SetMargin(QLayout* self, int margin) {
self->setMargin(static_cast<int>(margin));
}
int QLayout_Spacing(const QLayout* self) {
return self->spacing();
}
void QLayout_SetSpacing(QLayout* self, int spacing) {
self->setSpacing(static_cast<int>(spacing));
}
void QLayout_SetContentsMargins(QLayout* self, int left, int top, int right, int bottom) {
self->setContentsMargins(static_cast<int>(left), static_cast<int>(top), static_cast<int>(right), static_cast<int>(bottom));
}
void QLayout_SetContentsMarginsWithMargins(QLayout* self, QMargins* margins) {
self->setContentsMargins(*margins);
}
void QLayout_GetContentsMargins(const QLayout* self, int* left, int* top, int* right, int* bottom) {
self->getContentsMargins(static_cast<int*>(left), static_cast<int*>(top), static_cast<int*>(right), static_cast<int*>(bottom));
}
QMargins* QLayout_ContentsMargins(const QLayout* self) {
QMargins ret = self->contentsMargins();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QMargins*>(new QMargins(ret));
}
QRect* QLayout_ContentsRect(const QLayout* self) {
QRect ret = self->contentsRect();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QRect*>(new QRect(ret));
}
2024-08-29 07:01:51 +00:00
bool QLayout_SetAlignment(QLayout* self, QWidget* w, int alignment) {
return self->setAlignment(w, static_cast<Qt::Alignment>(alignment));
}
bool QLayout_SetAlignment2(QLayout* self, QLayout* l, int alignment) {
return self->setAlignment(l, static_cast<Qt::Alignment>(alignment));
}
void QLayout_SetSizeConstraint(QLayout* self, uintptr_t sizeConstraint) {
self->setSizeConstraint(static_cast<QLayout::SizeConstraint>(sizeConstraint));
}
uintptr_t QLayout_SizeConstraint(const QLayout* self) {
QLayout::SizeConstraint ret = self->sizeConstraint();
2024-08-29 07:01:51 +00:00
return static_cast<uintptr_t>(ret);
}
void QLayout_SetMenuBar(QLayout* self, QWidget* w) {
self->setMenuBar(w);
}
QWidget* QLayout_MenuBar(const QLayout* self) {
return self->menuBar();
}
QWidget* QLayout_ParentWidget(const QLayout* self) {
return self->parentWidget();
}
void QLayout_Invalidate(QLayout* self) {
self->invalidate();
}
QRect* QLayout_Geometry(const QLayout* self) {
QRect ret = self->geometry();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QRect*>(new QRect(ret));
}
bool QLayout_Activate(QLayout* self) {
return self->activate();
}
void QLayout_Update(QLayout* self) {
self->update();
}
void QLayout_AddWidget(QLayout* self, QWidget* w) {
self->addWidget(w);
}
void QLayout_AddItem(QLayout* self, QLayoutItem* param1) {
self->addItem(param1);
}
void QLayout_RemoveWidget(QLayout* self, QWidget* w) {
self->removeWidget(w);
}
void QLayout_RemoveItem(QLayout* self, QLayoutItem* param1) {
self->removeItem(param1);
}
int QLayout_ExpandingDirections(const QLayout* self) {
Qt::Orientations ret = self->expandingDirections();
2024-08-29 07:01:51 +00:00
return static_cast<int>(ret);
}
QSize* QLayout_MinimumSize(const QLayout* self) {
QSize ret = self->minimumSize();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QSize*>(new QSize(ret));
}
QSize* QLayout_MaximumSize(const QLayout* self) {
QSize ret = self->maximumSize();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QSize*>(new QSize(ret));
}
void QLayout_SetGeometry(QLayout* self, QRect* geometry) {
self->setGeometry(*geometry);
}
QLayoutItem* QLayout_ItemAt(const QLayout* self, int index) {
return self->itemAt(static_cast<int>(index));
}
QLayoutItem* QLayout_TakeAt(QLayout* self, int index) {
return self->takeAt(static_cast<int>(index));
}
int QLayout_IndexOf(const QLayout* self, QWidget* param1) {
return self->indexOf(param1);
}
int QLayout_IndexOfWithQLayoutItem(const QLayout* self, QLayoutItem* param1) {
return self->indexOf(param1);
}
int QLayout_Count(const QLayout* self) {
return self->count();
}
bool QLayout_IsEmpty(const QLayout* self) {
return self->isEmpty();
2024-08-29 07:01:51 +00:00
}
int QLayout_ControlTypes(const QLayout* self) {
QSizePolicy::ControlTypes ret = self->controlTypes();
2024-08-29 07:01:51 +00:00
return static_cast<int>(ret);
}
QLayoutItem* QLayout_ReplaceWidget(QLayout* self, QWidget* from, QWidget* to) {
return self->replaceWidget(from, to);
}
int QLayout_TotalHeightForWidth(const QLayout* self, int w) {
return self->totalHeightForWidth(static_cast<int>(w));
}
QSize* QLayout_TotalMinimumSize(const QLayout* self) {
QSize ret = self->totalMinimumSize();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QSize*>(new QSize(ret));
}
QSize* QLayout_TotalMaximumSize(const QLayout* self) {
QSize ret = self->totalMaximumSize();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QSize*>(new QSize(ret));
}
QSize* QLayout_TotalSizeHint(const QLayout* self) {
QSize ret = self->totalSizeHint();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QSize*>(new QSize(ret));
}
QLayout* QLayout_Layout(QLayout* self) {
return self->layout();
}
void QLayout_SetEnabled(QLayout* self, bool enabled) {
self->setEnabled(enabled);
}
bool QLayout_IsEnabled(const QLayout* self) {
return self->isEnabled();
}
QSize* QLayout_ClosestAcceptableSize(QWidget* w, QSize* s) {
QSize ret = QLayout::closestAcceptableSize(w, *s);
// Copy-construct value returned type into heap-allocated copy
return static_cast<QSize*>(new QSize(ret));
}
2024-08-29 07:01:51 +00:00
void QLayout_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen) {
QString ret = QLayout::tr(s, c);
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray b = ret.toUtf8();
*_out = static_cast<char*>(malloc(b.length()));
memcpy(*_out, b.data(), b.length());
*_out_Strlen = b.length();
}
2024-08-29 07:01:51 +00:00
void QLayout_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen) {
QString ret = QLayout::tr(s, c, static_cast<int>(n));
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray b = ret.toUtf8();
*_out = static_cast<char*>(malloc(b.length()));
memcpy(*_out, b.data(), b.length());
*_out_Strlen = b.length();
}
2024-08-29 07:01:51 +00:00
void QLayout_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen) {
QString ret = QLayout::trUtf8(s, c);
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray b = ret.toUtf8();
*_out = static_cast<char*>(malloc(b.length()));
memcpy(*_out, b.data(), b.length());
*_out_Strlen = b.length();
}
2024-08-29 07:01:51 +00:00
void QLayout_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen) {
QString ret = QLayout::trUtf8(s, c, static_cast<int>(n));
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray b = ret.toUtf8();
*_out = static_cast<char*>(malloc(b.length()));
memcpy(*_out, b.data(), b.length());
*_out_Strlen = b.length();
}
2024-08-29 07:01:51 +00:00
QLayoutItem* QLayout_ReplaceWidget3(QLayout* self, QWidget* from, QWidget* to, int options) {
return self->replaceWidget(from, to, static_cast<Qt::FindChildOptions>(options));
}
void QLayout_Delete(QLayout* self) {
delete self;
}