#include #include #include #include #include #include #include #include "qwidgetaction.h" #include "gen_qwidgetaction.h" extern "C" { extern void miqt_exec_callback(void* cb, int argc, void* argv); } QWidgetAction* QWidgetAction_new(QObject* parent) { return new QWidgetAction(parent); } QMetaObject* QWidgetAction_MetaObject(QWidgetAction* self) { return (QMetaObject*) const_cast(self)->metaObject(); } void QWidgetAction_Tr(const char* s, char** _out, int* _out_Strlen) { QString ret = QWidgetAction::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 QWidgetAction_TrUtf8(const char* s, char** _out, int* _out_Strlen) { QString ret = QWidgetAction::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 QWidgetAction_SetDefaultWidget(QWidgetAction* self, QWidget* w) { self->setDefaultWidget(w); } QWidget* QWidgetAction_DefaultWidget(QWidgetAction* self) { return const_cast(self)->defaultWidget(); } QWidget* QWidgetAction_RequestWidget(QWidgetAction* self, QWidget* parent) { return self->requestWidget(parent); } void QWidgetAction_ReleaseWidget(QWidgetAction* self, QWidget* widget) { self->releaseWidget(widget); } void QWidgetAction_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen) { QString ret = QWidgetAction::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 QWidgetAction_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen) { QString ret = QWidgetAction::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 QWidgetAction_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen) { QString ret = QWidgetAction::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 QWidgetAction_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen) { QString ret = QWidgetAction::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 QWidgetAction_Delete(QWidgetAction* self) { delete self; }