#include "gen_qstatictext.h" #include "qstatictext.h" #include #include #include #include #include #include extern "C" { extern void miqt_exec_callback(void* cb, int argc, void* argv); } QStaticText* QStaticText_new() { return new QStaticText(); } QStaticText* QStaticText_new2(const char* text, size_t text_Strlen) { QString text_QString = QString::fromUtf8(text, text_Strlen); return new QStaticText(text_QString); } QStaticText* QStaticText_new3(QStaticText* other) { return new QStaticText(*other); } void QStaticText_OperatorAssign(QStaticText* self, QStaticText* param1) { self->operator=(*param1); } void QStaticText_Swap(QStaticText* self, QStaticText* other) { self->swap(*other); } void QStaticText_SetText(QStaticText* self, const char* text, size_t text_Strlen) { QString text_QString = QString::fromUtf8(text, text_Strlen); self->setText(text_QString); } void QStaticText_Text(QStaticText* self, char** _out, int* _out_Strlen) { QString ret = self->text(); // 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 QStaticText_SetTextWidth(QStaticText* self, double textWidth) { self->setTextWidth(static_cast(textWidth)); } double QStaticText_TextWidth(QStaticText* self) { return self->textWidth(); } void QStaticText_SetTextOption(QStaticText* self, QTextOption* textOption) { self->setTextOption(*textOption); } QTextOption* QStaticText_TextOption(QStaticText* self) { QTextOption ret = self->textOption(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextOption(ret)); } QSizeF* QStaticText_Size(QStaticText* self) { QSizeF ret = self->size(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSizeF(ret)); } void QStaticText_Prepare(QStaticText* self) { self->prepare(); } bool QStaticText_OperatorEqual(QStaticText* self, QStaticText* param1) { return self->operator==(*param1); } bool QStaticText_OperatorNotEqual(QStaticText* self, QStaticText* param1) { return self->operator!=(*param1); } void QStaticText_Prepare1(QStaticText* self, QTransform* matrix) { self->prepare(*matrix); } void QStaticText_Prepare2(QStaticText* self, QTransform* matrix, QFont* font) { self->prepare(*matrix, *font); } void QStaticText_Delete(QStaticText* self) { delete self; }