#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "qstyle.h" #include "gen_qstyle.h" extern "C" { extern void miqt_exec_callback(void* cb, int argc, void* argv); } QMetaObject* QStyle_MetaObject(QStyle* self) { return (QMetaObject*) const_cast(self)->metaObject(); } void QStyle_Tr(const char* s, char** _out, int* _out_Strlen) { QString ret = QStyle::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 QStyle_TrUtf8(const char* s, char** _out, int* _out_Strlen) { QString ret = QStyle::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(); } void QStyle_Polish(QStyle* self, QWidget* widget) { self->polish(widget); } void QStyle_Unpolish(QStyle* self, QWidget* widget) { self->unpolish(widget); } void QStyle_PolishWithApplication(QStyle* self, QApplication* application) { self->polish(application); } void QStyle_UnpolishWithApplication(QStyle* self, QApplication* application) { self->unpolish(application); } void QStyle_PolishWithPalette(QStyle* self, QPalette* palette) { self->polish(*palette); } QRect* QStyle_ItemTextRect(QStyle* self, QFontMetrics* fm, QRect* r, int flags, bool enabled, const char* text, size_t text_Strlen) { QString text_QString = QString::fromUtf8(text, text_Strlen); QRect ret = const_cast(self)->itemTextRect(*fm, *r, static_cast(flags), enabled, text_QString); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } QRect* QStyle_ItemPixmapRect(QStyle* self, QRect* r, int flags, QPixmap* pixmap) { QRect ret = const_cast(self)->itemPixmapRect(*r, static_cast(flags), *pixmap); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } void QStyle_DrawItemText(QStyle* self, QPainter* painter, QRect* rect, int flags, QPalette* pal, bool enabled, const char* text, size_t text_Strlen) { QString text_QString = QString::fromUtf8(text, text_Strlen); const_cast(self)->drawItemText(painter, *rect, static_cast(flags), *pal, enabled, text_QString); } void QStyle_DrawItemPixmap(QStyle* self, QPainter* painter, QRect* rect, int alignment, QPixmap* pixmap) { const_cast(self)->drawItemPixmap(painter, *rect, static_cast(alignment), *pixmap); } QPalette* QStyle_StandardPalette(QStyle* self) { QPalette ret = const_cast(self)->standardPalette(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPalette(ret)); } void QStyle_DrawPrimitive(QStyle* self, uintptr_t pe, QStyleOption* opt, QPainter* p) { const_cast(self)->drawPrimitive(static_cast(pe), opt, p); } void QStyle_DrawControl(QStyle* self, uintptr_t element, QStyleOption* opt, QPainter* p) { const_cast(self)->drawControl(static_cast(element), opt, p); } QRect* QStyle_SubElementRect(QStyle* self, uintptr_t subElement, QStyleOption* option) { QRect ret = const_cast(self)->subElementRect(static_cast(subElement), option); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } void QStyle_DrawComplexControl(QStyle* self, uintptr_t cc, QStyleOptionComplex* opt, QPainter* p) { const_cast(self)->drawComplexControl(static_cast(cc), opt, p); } uintptr_t QStyle_HitTestComplexControl(QStyle* self, uintptr_t cc, QStyleOptionComplex* opt, QPoint* pt) { QStyle::SubControl ret = const_cast(self)->hitTestComplexControl(static_cast(cc), opt, *pt); return static_cast(ret); } QRect* QStyle_SubControlRect(QStyle* self, uintptr_t cc, QStyleOptionComplex* opt, uintptr_t sc) { QRect ret = const_cast(self)->subControlRect(static_cast(cc), opt, static_cast(sc)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } int QStyle_PixelMetric(QStyle* self, uintptr_t metric) { return const_cast(self)->pixelMetric(static_cast(metric)); } QSize* QStyle_SizeFromContents(QStyle* self, uintptr_t ct, QStyleOption* opt, QSize* contentsSize) { QSize ret = const_cast(self)->sizeFromContents(static_cast(ct), opt, *contentsSize); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(ret)); } int QStyle_StyleHint(QStyle* self, uintptr_t stylehint) { return const_cast(self)->styleHint(static_cast(stylehint)); } QPixmap* QStyle_StandardPixmap(QStyle* self, uintptr_t standardPixmap) { QPixmap ret = const_cast(self)->standardPixmap(static_cast(standardPixmap)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QIcon* QStyle_StandardIcon(QStyle* self, uintptr_t standardIcon) { QIcon ret = const_cast(self)->standardIcon(static_cast(standardIcon)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QIcon(ret)); } QPixmap* QStyle_GeneratedIconPixmap(QStyle* self, uintptr_t iconMode, QPixmap* pixmap, QStyleOption* opt) { QPixmap ret = const_cast(self)->generatedIconPixmap(static_cast(iconMode), *pixmap, opt); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QRect* QStyle_VisualRect(uintptr_t direction, QRect* boundingRect, QRect* logicalRect) { QRect ret = QStyle::visualRect(static_cast(direction), *boundingRect, *logicalRect); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } QPoint* QStyle_VisualPos(uintptr_t direction, QRect* boundingRect, QPoint* logicalPos) { QPoint ret = QStyle::visualPos(static_cast(direction), *boundingRect, *logicalPos); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPoint(ret)); } int QStyle_SliderPositionFromValue(int min, int max, int val, int space) { return QStyle::sliderPositionFromValue(static_cast(min), static_cast(max), static_cast(val), static_cast(space)); } int QStyle_SliderValueFromPosition(int min, int max, int pos, int space) { return QStyle::sliderValueFromPosition(static_cast(min), static_cast(max), static_cast(pos), static_cast(space)); } int QStyle_VisualAlignment(uintptr_t direction, int alignment) { Qt::Alignment ret = QStyle::visualAlignment(static_cast(direction), static_cast(alignment)); return static_cast(ret); } QRect* QStyle_AlignedRect(uintptr_t direction, int alignment, QSize* size, QRect* rectangle) { QRect ret = QStyle::alignedRect(static_cast(direction), static_cast(alignment), *size, *rectangle); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } int QStyle_LayoutSpacing(QStyle* self, uintptr_t control1, uintptr_t control2, uintptr_t orientation) { return const_cast(self)->layoutSpacing(static_cast(control1), static_cast(control2), static_cast(orientation)); } int QStyle_CombinedLayoutSpacing(QStyle* self, int controls1, int controls2, uintptr_t orientation) { return const_cast(self)->combinedLayoutSpacing(static_cast(controls1), static_cast(controls2), static_cast(orientation)); } QStyle* QStyle_Proxy(QStyle* self) { return (QStyle*) const_cast(self)->proxy(); } void QStyle_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen) { QString ret = QStyle::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 QStyle_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen) { QString ret = QStyle::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 QStyle_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen) { QString ret = QStyle::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 QStyle_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen) { QString ret = QStyle::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 QStyle_DrawItemText7(QStyle* self, QPainter* painter, QRect* rect, int flags, QPalette* pal, bool enabled, const char* text, size_t text_Strlen, uintptr_t textRole) { QString text_QString = QString::fromUtf8(text, text_Strlen); const_cast(self)->drawItemText(painter, *rect, static_cast(flags), *pal, enabled, text_QString, static_cast(textRole)); } void QStyle_DrawPrimitive4(QStyle* self, uintptr_t pe, QStyleOption* opt, QPainter* p, QWidget* w) { const_cast(self)->drawPrimitive(static_cast(pe), opt, p, w); } void QStyle_DrawControl4(QStyle* self, uintptr_t element, QStyleOption* opt, QPainter* p, QWidget* w) { const_cast(self)->drawControl(static_cast(element), opt, p, w); } QRect* QStyle_SubElementRect3(QStyle* self, uintptr_t subElement, QStyleOption* option, QWidget* widget) { QRect ret = const_cast(self)->subElementRect(static_cast(subElement), option, widget); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } void QStyle_DrawComplexControl4(QStyle* self, uintptr_t cc, QStyleOptionComplex* opt, QPainter* p, QWidget* widget) { const_cast(self)->drawComplexControl(static_cast(cc), opt, p, widget); } uintptr_t QStyle_HitTestComplexControl4(QStyle* self, uintptr_t cc, QStyleOptionComplex* opt, QPoint* pt, QWidget* widget) { QStyle::SubControl ret = const_cast(self)->hitTestComplexControl(static_cast(cc), opt, *pt, widget); return static_cast(ret); } QRect* QStyle_SubControlRect4(QStyle* self, uintptr_t cc, QStyleOptionComplex* opt, uintptr_t sc, QWidget* widget) { QRect ret = const_cast(self)->subControlRect(static_cast(cc), opt, static_cast(sc), widget); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } int QStyle_PixelMetric2(QStyle* self, uintptr_t metric, QStyleOption* option) { return const_cast(self)->pixelMetric(static_cast(metric), option); } int QStyle_PixelMetric3(QStyle* self, uintptr_t metric, QStyleOption* option, QWidget* widget) { return const_cast(self)->pixelMetric(static_cast(metric), option, widget); } QSize* QStyle_SizeFromContents4(QStyle* self, uintptr_t ct, QStyleOption* opt, QSize* contentsSize, QWidget* w) { QSize ret = const_cast(self)->sizeFromContents(static_cast(ct), opt, *contentsSize, w); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(ret)); } int QStyle_StyleHint2(QStyle* self, uintptr_t stylehint, QStyleOption* opt) { return const_cast(self)->styleHint(static_cast(stylehint), opt); } int QStyle_StyleHint3(QStyle* self, uintptr_t stylehint, QStyleOption* opt, QWidget* widget) { return const_cast(self)->styleHint(static_cast(stylehint), opt, widget); } int QStyle_StyleHint4(QStyle* self, uintptr_t stylehint, QStyleOption* opt, QWidget* widget, QStyleHintReturn* returnData) { return const_cast(self)->styleHint(static_cast(stylehint), opt, widget, returnData); } QPixmap* QStyle_StandardPixmap2(QStyle* self, uintptr_t standardPixmap, QStyleOption* opt) { QPixmap ret = const_cast(self)->standardPixmap(static_cast(standardPixmap), opt); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QStyle_StandardPixmap3(QStyle* self, uintptr_t standardPixmap, QStyleOption* opt, QWidget* widget) { QPixmap ret = const_cast(self)->standardPixmap(static_cast(standardPixmap), opt, widget); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QIcon* QStyle_StandardIcon2(QStyle* self, uintptr_t standardIcon, QStyleOption* option) { QIcon ret = const_cast(self)->standardIcon(static_cast(standardIcon), option); // Copy-construct value returned type into heap-allocated copy return static_cast(new QIcon(ret)); } QIcon* QStyle_StandardIcon3(QStyle* self, uintptr_t standardIcon, QStyleOption* option, QWidget* widget) { QIcon ret = const_cast(self)->standardIcon(static_cast(standardIcon), option, widget); // Copy-construct value returned type into heap-allocated copy return static_cast(new QIcon(ret)); } int QStyle_SliderPositionFromValue5(int min, int max, int val, int space, bool upsideDown) { return QStyle::sliderPositionFromValue(static_cast(min), static_cast(max), static_cast(val), static_cast(space), upsideDown); } int QStyle_SliderValueFromPosition5(int min, int max, int pos, int space, bool upsideDown) { return QStyle::sliderValueFromPosition(static_cast(min), static_cast(max), static_cast(pos), static_cast(space), upsideDown); } int QStyle_LayoutSpacing4(QStyle* self, uintptr_t control1, uintptr_t control2, uintptr_t orientation, QStyleOption* option) { return const_cast(self)->layoutSpacing(static_cast(control1), static_cast(control2), static_cast(orientation), option); } int QStyle_LayoutSpacing5(QStyle* self, uintptr_t control1, uintptr_t control2, uintptr_t orientation, QStyleOption* option, QWidget* widget) { return const_cast(self)->layoutSpacing(static_cast(control1), static_cast(control2), static_cast(orientation), option, widget); } int QStyle_CombinedLayoutSpacing4(QStyle* self, int controls1, int controls2, uintptr_t orientation, QStyleOption* option) { return const_cast(self)->combinedLayoutSpacing(static_cast(controls1), static_cast(controls2), static_cast(orientation), option); } int QStyle_CombinedLayoutSpacing5(QStyle* self, int controls1, int controls2, uintptr_t orientation, QStyleOption* option, QWidget* widget) { return const_cast(self)->combinedLayoutSpacing(static_cast(controls1), static_cast(controls2), static_cast(orientation), option, widget); } void QStyle_Delete(QStyle* self) { delete self; }