#include #include #include #include #include "qpen.h" #include "gen_qpen.h" extern "C" { extern void miqt_exec_callback(void* cb, int argc, void* argv); } QPen* QPen_new() { return new QPen(); } QPen* QPen_new2(uintptr_t param1) { return new QPen(static_cast(param1)); } QPen* QPen_new3(QColor* color) { return new QPen(*color); } QPen* QPen_new4(QBrush* brush, double width) { return new QPen(*brush, static_cast(width)); } QPen* QPen_new5(QPen* pen) { return new QPen(*pen); } QPen* QPen_new6(QBrush* brush, double width, uintptr_t s) { return new QPen(*brush, static_cast(width), static_cast(s)); } QPen* QPen_new7(QBrush* brush, double width, uintptr_t s, uintptr_t c) { return new QPen(*brush, static_cast(width), static_cast(s), static_cast(c)); } QPen* QPen_new8(QBrush* brush, double width, uintptr_t s, uintptr_t c, uintptr_t j) { return new QPen(*brush, static_cast(width), static_cast(s), static_cast(c), static_cast(j)); } void QPen_OperatorAssign(QPen* self, QPen* pen) { self->operator=(*pen); } void QPen_Swap(QPen* self, QPen* other) { self->swap(*other); } uintptr_t QPen_Style(QPen* self) { Qt::PenStyle ret = const_cast(self)->style(); return static_cast(ret); } void QPen_SetStyle(QPen* self, uintptr_t style) { self->setStyle(static_cast(style)); } void QPen_DashPattern(QPen* self, double** _out, size_t* _out_len) { QVector ret = const_cast(self)->dashPattern(); // Convert QList<> from C++ memory to manually-managed C memory double* __out = static_cast(malloc(sizeof(double) * ret.length())); for (size_t i = 0, e = ret.length(); i < e; ++i) { __out[i] = ret[i]; } *_out = __out; *_out_len = ret.length(); } void QPen_SetDashPattern(QPen* self, double* pattern, size_t pattern_len) { QVector pattern_QList; pattern_QList.reserve(pattern_len); for(size_t i = 0; i < pattern_len; ++i) { pattern_QList.push_back(pattern[i]); } self->setDashPattern(pattern_QList); } double QPen_DashOffset(QPen* self) { return const_cast(self)->dashOffset(); } void QPen_SetDashOffset(QPen* self, double doffset) { self->setDashOffset(static_cast(doffset)); } double QPen_MiterLimit(QPen* self) { return const_cast(self)->miterLimit(); } void QPen_SetMiterLimit(QPen* self, double limit) { self->setMiterLimit(static_cast(limit)); } double QPen_WidthF(QPen* self) { return const_cast(self)->widthF(); } void QPen_SetWidthF(QPen* self, double width) { self->setWidthF(static_cast(width)); } int QPen_Width(QPen* self) { return const_cast(self)->width(); } void QPen_SetWidth(QPen* self, int width) { self->setWidth(static_cast(width)); } QColor* QPen_Color(QPen* self) { QColor ret = const_cast(self)->color(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QColor(ret)); } void QPen_SetColor(QPen* self, QColor* color) { self->setColor(*color); } QBrush* QPen_Brush(QPen* self) { QBrush ret = const_cast(self)->brush(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QBrush(ret)); } void QPen_SetBrush(QPen* self, QBrush* brush) { self->setBrush(*brush); } bool QPen_IsSolid(QPen* self) { return const_cast(self)->isSolid(); } uintptr_t QPen_CapStyle(QPen* self) { Qt::PenCapStyle ret = const_cast(self)->capStyle(); return static_cast(ret); } void QPen_SetCapStyle(QPen* self, uintptr_t pcs) { self->setCapStyle(static_cast(pcs)); } uintptr_t QPen_JoinStyle(QPen* self) { Qt::PenJoinStyle ret = const_cast(self)->joinStyle(); return static_cast(ret); } void QPen_SetJoinStyle(QPen* self, uintptr_t pcs) { self->setJoinStyle(static_cast(pcs)); } bool QPen_IsCosmetic(QPen* self) { return const_cast(self)->isCosmetic(); } void QPen_SetCosmetic(QPen* self, bool cosmetic) { self->setCosmetic(cosmetic); } bool QPen_OperatorEqual(QPen* self, QPen* p) { return const_cast(self)->operator==(*p); } bool QPen_OperatorNotEqual(QPen* self, QPen* p) { return const_cast(self)->operator!=(*p); } bool QPen_IsDetached(QPen* self) { return self->isDetached(); } void QPen_Delete(QPen* self) { delete self; }