#include #include #include #include #include #include #include #include #include "qpagesize.h" #include "gen_qpagesize.h" extern "C" { extern void miqt_exec_callback(void* cb, int argc, void* argv); } QPageSize* QPageSize_new() { return new QPageSize(); } QPageSize* QPageSize_new2(uintptr_t pageSizeId) { return new QPageSize(static_cast(pageSizeId)); } QPageSize* QPageSize_new3(QSize* pointSize) { return new QPageSize(*pointSize); } QPageSize* QPageSize_new4(QSizeF* size, uintptr_t units) { return new QPageSize(*size, static_cast(units)); } QPageSize* QPageSize_new5(QPageSize* other) { return new QPageSize(*other); } QPageSize* QPageSize_new6(QSize* pointSize, const char* name, size_t name_Strlen) { QString name_QString = QString::fromUtf8(name, name_Strlen); return new QPageSize(*pointSize, name_QString); } QPageSize* QPageSize_new7(QSize* pointSize, const char* name, size_t name_Strlen, uintptr_t matchPolicy) { QString name_QString = QString::fromUtf8(name, name_Strlen); return new QPageSize(*pointSize, name_QString, static_cast(matchPolicy)); } QPageSize* QPageSize_new8(QSizeF* size, uintptr_t units, const char* name, size_t name_Strlen) { QString name_QString = QString::fromUtf8(name, name_Strlen); return new QPageSize(*size, static_cast(units), name_QString); } QPageSize* QPageSize_new9(QSizeF* size, uintptr_t units, const char* name, size_t name_Strlen, uintptr_t matchPolicy) { QString name_QString = QString::fromUtf8(name, name_Strlen); return new QPageSize(*size, static_cast(units), name_QString, static_cast(matchPolicy)); } void QPageSize_OperatorAssign(QPageSize* self, QPageSize* other) { self->operator=(*other); } void QPageSize_Swap(QPageSize* self, QPageSize* other) { self->swap(*other); } bool QPageSize_IsEquivalentTo(QPageSize* self, QPageSize* other) { return const_cast(self)->isEquivalentTo(*other); } bool QPageSize_IsValid(QPageSize* self) { return const_cast(self)->isValid(); } void QPageSize_Key(QPageSize* self, char** _out, int* _out_Strlen) { QString ret = const_cast(self)->key(); // 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 QPageSize_Name(QPageSize* self, char** _out, int* _out_Strlen) { QString ret = const_cast(self)->name(); // 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(); } uintptr_t QPageSize_Id(QPageSize* self) { QPageSize::PageSizeId ret = const_cast(self)->id(); return static_cast(ret); } int QPageSize_WindowsId(QPageSize* self) { return const_cast(self)->windowsId(); } QSizeF* QPageSize_DefinitionSize(QPageSize* self) { QSizeF ret = const_cast(self)->definitionSize(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSizeF(ret)); } uintptr_t QPageSize_DefinitionUnits(QPageSize* self) { QPageSize::Unit ret = const_cast(self)->definitionUnits(); return static_cast(ret); } QSizeF* QPageSize_Size(QPageSize* self, uintptr_t units) { QSizeF ret = const_cast(self)->size(static_cast(units)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSizeF(ret)); } QSize* QPageSize_SizePoints(QPageSize* self) { QSize ret = const_cast(self)->sizePoints(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(ret)); } QSize* QPageSize_SizePixels(QPageSize* self, int resolution) { QSize ret = const_cast(self)->sizePixels(static_cast(resolution)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(ret)); } QRectF* QPageSize_Rect(QPageSize* self, uintptr_t units) { QRectF ret = const_cast(self)->rect(static_cast(units)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRectF(ret)); } QRect* QPageSize_RectPoints(QPageSize* self) { QRect ret = const_cast(self)->rectPoints(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } QRect* QPageSize_RectPixels(QPageSize* self, int resolution) { QRect ret = const_cast(self)->rectPixels(static_cast(resolution)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } void QPageSize_KeyWithPageSizeId(uintptr_t pageSizeId, char** _out, int* _out_Strlen) { QString ret = QPageSize::key(static_cast(pageSizeId)); // 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 QPageSize_NameWithPageSizeId(uintptr_t pageSizeId, char** _out, int* _out_Strlen) { QString ret = QPageSize::name(static_cast(pageSizeId)); // 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(); } uintptr_t QPageSize_IdWithPointSize(QSize* pointSize) { QPageSize::PageSizeId ret = QPageSize::id(*pointSize); return static_cast(ret); } uintptr_t QPageSize_Id2(QSizeF* size, uintptr_t units) { QPageSize::PageSizeId ret = QPageSize::id(*size, static_cast(units)); return static_cast(ret); } uintptr_t QPageSize_IdWithWindowsId(int windowsId) { QPageSize::PageSizeId ret = QPageSize::id(static_cast(windowsId)); return static_cast(ret); } int QPageSize_WindowsIdWithPageSizeId(uintptr_t pageSizeId) { return QPageSize::windowsId(static_cast(pageSizeId)); } QSizeF* QPageSize_DefinitionSizeWithPageSizeId(uintptr_t pageSizeId) { QSizeF ret = QPageSize::definitionSize(static_cast(pageSizeId)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSizeF(ret)); } uintptr_t QPageSize_DefinitionUnitsWithPageSizeId(uintptr_t pageSizeId) { QPageSize::Unit ret = QPageSize::definitionUnits(static_cast(pageSizeId)); return static_cast(ret); } QSizeF* QPageSize_Size2(uintptr_t pageSizeId, uintptr_t units) { QSizeF ret = QPageSize::size(static_cast(pageSizeId), static_cast(units)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSizeF(ret)); } QSize* QPageSize_SizePointsWithPageSizeId(uintptr_t pageSizeId) { QSize ret = QPageSize::sizePoints(static_cast(pageSizeId)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(ret)); } QSize* QPageSize_SizePixels2(uintptr_t pageSizeId, int resolution) { QSize ret = QPageSize::sizePixels(static_cast(pageSizeId), static_cast(resolution)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(ret)); } uintptr_t QPageSize_Id22(QSize* pointSize, uintptr_t matchPolicy) { QPageSize::PageSizeId ret = QPageSize::id(*pointSize, static_cast(matchPolicy)); return static_cast(ret); } uintptr_t QPageSize_Id3(QSizeF* size, uintptr_t units, uintptr_t matchPolicy) { QPageSize::PageSizeId ret = QPageSize::id(*size, static_cast(units), static_cast(matchPolicy)); return static_cast(ret); } void QPageSize_Delete(QPageSize* self) { delete self; }