#include #include #include #include #include #include #include #include #include #include #include "qgridlayout.h" #include "gen_qgridlayout.h" extern "C" { extern void miqt_exec_callback(void* cb, int argc, void* argv); } QGridLayout* QGridLayout_new(QWidget* parent) { return new QGridLayout(parent); } QGridLayout* QGridLayout_new2() { return new QGridLayout(); } QMetaObject* QGridLayout_MetaObject(QGridLayout* self) { return (QMetaObject*) const_cast(self)->metaObject(); } void QGridLayout_Tr(const char* s, char** _out, int* _out_Strlen) { QString ret = QGridLayout::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(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QGridLayout_TrUtf8(const char* s, char** _out, int* _out_Strlen) { QString ret = QGridLayout::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(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } QSize* QGridLayout_SizeHint(QGridLayout* self) { QSize ret = const_cast(self)->sizeHint(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(ret)); } QSize* QGridLayout_MinimumSize(QGridLayout* self) { QSize ret = const_cast(self)->minimumSize(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(ret)); } QSize* QGridLayout_MaximumSize(QGridLayout* self) { QSize ret = const_cast(self)->maximumSize(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(ret)); } void QGridLayout_SetHorizontalSpacing(QGridLayout* self, int spacing) { self->setHorizontalSpacing(static_cast(spacing)); } int QGridLayout_HorizontalSpacing(QGridLayout* self) { return const_cast(self)->horizontalSpacing(); } void QGridLayout_SetVerticalSpacing(QGridLayout* self, int spacing) { self->setVerticalSpacing(static_cast(spacing)); } int QGridLayout_VerticalSpacing(QGridLayout* self) { return const_cast(self)->verticalSpacing(); } void QGridLayout_SetSpacing(QGridLayout* self, int spacing) { self->setSpacing(static_cast(spacing)); } int QGridLayout_Spacing(QGridLayout* self) { return const_cast(self)->spacing(); } void QGridLayout_SetRowStretch(QGridLayout* self, int row, int stretch) { self->setRowStretch(static_cast(row), static_cast(stretch)); } void QGridLayout_SetColumnStretch(QGridLayout* self, int column, int stretch) { self->setColumnStretch(static_cast(column), static_cast(stretch)); } int QGridLayout_RowStretch(QGridLayout* self, int row) { return const_cast(self)->rowStretch(static_cast(row)); } int QGridLayout_ColumnStretch(QGridLayout* self, int column) { return const_cast(self)->columnStretch(static_cast(column)); } void QGridLayout_SetRowMinimumHeight(QGridLayout* self, int row, int minSize) { self->setRowMinimumHeight(static_cast(row), static_cast(minSize)); } void QGridLayout_SetColumnMinimumWidth(QGridLayout* self, int column, int minSize) { self->setColumnMinimumWidth(static_cast(column), static_cast(minSize)); } int QGridLayout_RowMinimumHeight(QGridLayout* self, int row) { return const_cast(self)->rowMinimumHeight(static_cast(row)); } int QGridLayout_ColumnMinimumWidth(QGridLayout* self, int column) { return const_cast(self)->columnMinimumWidth(static_cast(column)); } int QGridLayout_ColumnCount(QGridLayout* self) { return const_cast(self)->columnCount(); } int QGridLayout_RowCount(QGridLayout* self) { return const_cast(self)->rowCount(); } QRect* QGridLayout_CellRect(QGridLayout* self, int row, int column) { QRect ret = const_cast(self)->cellRect(static_cast(row), static_cast(column)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } bool QGridLayout_HasHeightForWidth(QGridLayout* self) { return const_cast(self)->hasHeightForWidth(); } int QGridLayout_HeightForWidth(QGridLayout* self, int param1) { return const_cast(self)->heightForWidth(static_cast(param1)); } int QGridLayout_MinimumHeightForWidth(QGridLayout* self, int param1) { return const_cast(self)->minimumHeightForWidth(static_cast(param1)); } int QGridLayout_ExpandingDirections(QGridLayout* self) { Qt::Orientations ret = const_cast(self)->expandingDirections(); return static_cast(ret); } void QGridLayout_Invalidate(QGridLayout* self) { self->invalidate(); } void QGridLayout_AddWidget(QGridLayout* self, QWidget* w) { self->addWidget(w); } void QGridLayout_AddWidget2(QGridLayout* self, QWidget* param1, int row, int column) { self->addWidget(param1, static_cast(row), static_cast(column)); } void QGridLayout_AddWidget3(QGridLayout* self, QWidget* param1, int row, int column, int rowSpan, int columnSpan) { self->addWidget(param1, static_cast(row), static_cast(column), static_cast(rowSpan), static_cast(columnSpan)); } void QGridLayout_AddLayout(QGridLayout* self, QLayout* param1, int row, int column) { self->addLayout(param1, static_cast(row), static_cast(column)); } void QGridLayout_AddLayout2(QGridLayout* self, QLayout* param1, int row, int column, int rowSpan, int columnSpan) { self->addLayout(param1, static_cast(row), static_cast(column), static_cast(rowSpan), static_cast(columnSpan)); } void QGridLayout_SetOriginCorner(QGridLayout* self, uintptr_t originCorner) { self->setOriginCorner(static_cast(originCorner)); } uintptr_t QGridLayout_OriginCorner(QGridLayout* self) { Qt::Corner ret = const_cast(self)->originCorner(); return static_cast(ret); } QLayoutItem* QGridLayout_ItemAt(QGridLayout* self, int index) { return const_cast(self)->itemAt(static_cast(index)); } QLayoutItem* QGridLayout_ItemAtPosition(QGridLayout* self, int row, int column) { return const_cast(self)->itemAtPosition(static_cast(row), static_cast(column)); } QLayoutItem* QGridLayout_TakeAt(QGridLayout* self, int index) { return self->takeAt(static_cast(index)); } int QGridLayout_Count(QGridLayout* self) { return const_cast(self)->count(); } void QGridLayout_SetGeometry(QGridLayout* self, QRect* geometry) { self->setGeometry(*geometry); } void QGridLayout_AddItem(QGridLayout* self, QLayoutItem* item, int row, int column) { self->addItem(item, static_cast(row), static_cast(column)); } void QGridLayout_SetDefaultPositioning(QGridLayout* self, int n, uintptr_t orient) { self->setDefaultPositioning(static_cast(n), static_cast(orient)); } void QGridLayout_GetItemPosition(QGridLayout* self, int idx, int* row, int* column, int* rowSpan, int* columnSpan) { const_cast(self)->getItemPosition(static_cast(idx), static_cast(row), static_cast(column), static_cast(rowSpan), static_cast(columnSpan)); } void QGridLayout_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen) { QString ret = QGridLayout::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(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QGridLayout_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen) { QString ret = QGridLayout::tr(s, c, static_cast(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(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QGridLayout_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen) { QString ret = QGridLayout::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(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QGridLayout_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen) { QString ret = QGridLayout::trUtf8(s, c, static_cast(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(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QGridLayout_AddWidget4(QGridLayout* self, QWidget* param1, int row, int column, int param4) { self->addWidget(param1, static_cast(row), static_cast(column), static_cast(param4)); } void QGridLayout_AddWidget6(QGridLayout* self, QWidget* param1, int row, int column, int rowSpan, int columnSpan, int param6) { self->addWidget(param1, static_cast(row), static_cast(column), static_cast(rowSpan), static_cast(columnSpan), static_cast(param6)); } void QGridLayout_AddLayout4(QGridLayout* self, QLayout* param1, int row, int column, int param4) { self->addLayout(param1, static_cast(row), static_cast(column), static_cast(param4)); } void QGridLayout_AddLayout6(QGridLayout* self, QLayout* param1, int row, int column, int rowSpan, int columnSpan, int param6) { self->addLayout(param1, static_cast(row), static_cast(column), static_cast(rowSpan), static_cast(columnSpan), static_cast(param6)); } void QGridLayout_AddItem4(QGridLayout* self, QLayoutItem* item, int row, int column, int rowSpan) { self->addItem(item, static_cast(row), static_cast(column), static_cast(rowSpan)); } void QGridLayout_AddItem5(QGridLayout* self, QLayoutItem* item, int row, int column, int rowSpan, int columnSpan) { self->addItem(item, static_cast(row), static_cast(column), static_cast(rowSpan), static_cast(columnSpan)); } void QGridLayout_AddItem6(QGridLayout* self, QLayoutItem* item, int row, int column, int rowSpan, int columnSpan, int param6) { self->addItem(item, static_cast(row), static_cast(column), static_cast(rowSpan), static_cast(columnSpan), static_cast(param6)); } void QGridLayout_Delete(QGridLayout* self) { delete self; }