mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
227 lines
7.9 KiB
C++
227 lines
7.9 KiB
C++
#include <QPageSize>
|
|
#include <QRect>
|
|
#include <QRectF>
|
|
#include <QSize>
|
|
#include <QSizeF>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#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<QPageSize::PageSizeId>(pageSizeId));
|
|
}
|
|
|
|
QPageSize* QPageSize_new3(QSize* pointSize) {
|
|
return new QPageSize(*pointSize);
|
|
}
|
|
|
|
QPageSize* QPageSize_new4(QSizeF* size, uintptr_t units) {
|
|
return new QPageSize(*size, static_cast<QPageSize::Unit>(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<QPageSize::SizeMatchPolicy>(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<QPageSize::Unit>(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<QPageSize::Unit>(units), name_QString, static_cast<QPageSize::SizeMatchPolicy>(matchPolicy));
|
|
}
|
|
|
|
void QPageSize_OperatorAssign(QPageSize* self, QPageSize* other) {
|
|
self->operator=(*other);
|
|
}
|
|
|
|
void QPageSize_Swap(QPageSize* self, QPageSize* other) {
|
|
self->swap(*other);
|
|
}
|
|
|
|
bool QPageSize_IsEquivalentTo(const QPageSize* self, QPageSize* other) {
|
|
return self->isEquivalentTo(*other);
|
|
}
|
|
|
|
bool QPageSize_IsValid(const QPageSize* self) {
|
|
return self->isValid();
|
|
}
|
|
|
|
void QPageSize_Key(const QPageSize* self, char** _out, int* _out_Strlen) {
|
|
QString ret = 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<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QPageSize_Name(const QPageSize* self, char** _out, int* _out_Strlen) {
|
|
QString ret = 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<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
uintptr_t QPageSize_Id(const QPageSize* self) {
|
|
QPageSize::PageSizeId ret = self->id();
|
|
return static_cast<uintptr_t>(ret);
|
|
}
|
|
|
|
int QPageSize_WindowsId(const QPageSize* self) {
|
|
return self->windowsId();
|
|
}
|
|
|
|
QSizeF* QPageSize_DefinitionSize(const QPageSize* self) {
|
|
QSizeF ret = self->definitionSize();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QSizeF*>(new QSizeF(ret));
|
|
}
|
|
|
|
uintptr_t QPageSize_DefinitionUnits(const QPageSize* self) {
|
|
QPageSize::Unit ret = self->definitionUnits();
|
|
return static_cast<uintptr_t>(ret);
|
|
}
|
|
|
|
QSizeF* QPageSize_Size(const QPageSize* self, uintptr_t units) {
|
|
QSizeF ret = self->size(static_cast<QPageSize::Unit>(units));
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QSizeF*>(new QSizeF(ret));
|
|
}
|
|
|
|
QSize* QPageSize_SizePoints(const QPageSize* self) {
|
|
QSize ret = self->sizePoints();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QSize*>(new QSize(ret));
|
|
}
|
|
|
|
QSize* QPageSize_SizePixels(const QPageSize* self, int resolution) {
|
|
QSize ret = self->sizePixels(static_cast<int>(resolution));
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QSize*>(new QSize(ret));
|
|
}
|
|
|
|
QRectF* QPageSize_Rect(const QPageSize* self, uintptr_t units) {
|
|
QRectF ret = self->rect(static_cast<QPageSize::Unit>(units));
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QRectF*>(new QRectF(ret));
|
|
}
|
|
|
|
QRect* QPageSize_RectPoints(const QPageSize* self) {
|
|
QRect ret = self->rectPoints();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QRect*>(new QRect(ret));
|
|
}
|
|
|
|
QRect* QPageSize_RectPixels(const QPageSize* self, int resolution) {
|
|
QRect ret = self->rectPixels(static_cast<int>(resolution));
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QRect*>(new QRect(ret));
|
|
}
|
|
|
|
void QPageSize_KeyWithPageSizeId(uintptr_t pageSizeId, char** _out, int* _out_Strlen) {
|
|
QString ret = QPageSize::key(static_cast<QPageSize::PageSizeId>(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<char*>(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<QPageSize::PageSizeId>(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<char*>(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<uintptr_t>(ret);
|
|
}
|
|
|
|
uintptr_t QPageSize_Id2(QSizeF* size, uintptr_t units) {
|
|
QPageSize::PageSizeId ret = QPageSize::id(*size, static_cast<QPageSize::Unit>(units));
|
|
return static_cast<uintptr_t>(ret);
|
|
}
|
|
|
|
uintptr_t QPageSize_IdWithWindowsId(int windowsId) {
|
|
QPageSize::PageSizeId ret = QPageSize::id(static_cast<int>(windowsId));
|
|
return static_cast<uintptr_t>(ret);
|
|
}
|
|
|
|
int QPageSize_WindowsIdWithPageSizeId(uintptr_t pageSizeId) {
|
|
return QPageSize::windowsId(static_cast<QPageSize::PageSizeId>(pageSizeId));
|
|
}
|
|
|
|
QSizeF* QPageSize_DefinitionSizeWithPageSizeId(uintptr_t pageSizeId) {
|
|
QSizeF ret = QPageSize::definitionSize(static_cast<QPageSize::PageSizeId>(pageSizeId));
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QSizeF*>(new QSizeF(ret));
|
|
}
|
|
|
|
uintptr_t QPageSize_DefinitionUnitsWithPageSizeId(uintptr_t pageSizeId) {
|
|
QPageSize::Unit ret = QPageSize::definitionUnits(static_cast<QPageSize::PageSizeId>(pageSizeId));
|
|
return static_cast<uintptr_t>(ret);
|
|
}
|
|
|
|
QSizeF* QPageSize_Size2(uintptr_t pageSizeId, uintptr_t units) {
|
|
QSizeF ret = QPageSize::size(static_cast<QPageSize::PageSizeId>(pageSizeId), static_cast<QPageSize::Unit>(units));
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QSizeF*>(new QSizeF(ret));
|
|
}
|
|
|
|
QSize* QPageSize_SizePointsWithPageSizeId(uintptr_t pageSizeId) {
|
|
QSize ret = QPageSize::sizePoints(static_cast<QPageSize::PageSizeId>(pageSizeId));
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QSize*>(new QSize(ret));
|
|
}
|
|
|
|
QSize* QPageSize_SizePixels2(uintptr_t pageSizeId, int resolution) {
|
|
QSize ret = QPageSize::sizePixels(static_cast<QPageSize::PageSizeId>(pageSizeId), static_cast<int>(resolution));
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QSize*>(new QSize(ret));
|
|
}
|
|
|
|
uintptr_t QPageSize_Id22(QSize* pointSize, uintptr_t matchPolicy) {
|
|
QPageSize::PageSizeId ret = QPageSize::id(*pointSize, static_cast<QPageSize::SizeMatchPolicy>(matchPolicy));
|
|
return static_cast<uintptr_t>(ret);
|
|
}
|
|
|
|
uintptr_t QPageSize_Id3(QSizeF* size, uintptr_t units, uintptr_t matchPolicy) {
|
|
QPageSize::PageSizeId ret = QPageSize::id(*size, static_cast<QPageSize::Unit>(units), static_cast<QPageSize::SizeMatchPolicy>(matchPolicy));
|
|
return static_cast<uintptr_t>(ret);
|
|
}
|
|
|
|
void QPageSize_Delete(QPageSize* self) {
|
|
delete self;
|
|
}
|
|
|