#include #include #include #include #include #include #include #include #include #include "qactiongroup.h" #include "gen_qactiongroup.h" extern "C" { extern void miqt_exec_callback(void* cb, int argc, void* argv); } QActionGroup* QActionGroup_new(QObject* parent) { return new QActionGroup(parent); } QMetaObject* QActionGroup_MetaObject(QActionGroup* self) { return (QMetaObject*) const_cast(self)->metaObject(); } void QActionGroup_Tr(const char* s, char** _out, int* _out_Strlen) { QString ret = QActionGroup::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 QActionGroup_TrUtf8(const char* s, char** _out, int* _out_Strlen) { QString ret = QActionGroup::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(); } QAction* QActionGroup_AddAction(QActionGroup* self, QAction* a) { return self->addAction(a); } QAction* QActionGroup_AddActionWithText(QActionGroup* self, const char* text, size_t text_Strlen) { QString text_QString = QString::fromUtf8(text, text_Strlen); return self->addAction(text_QString); } QAction* QActionGroup_AddAction2(QActionGroup* self, QIcon* icon, const char* text, size_t text_Strlen) { QString text_QString = QString::fromUtf8(text, text_Strlen); return self->addAction(*icon, text_QString); } void QActionGroup_RemoveAction(QActionGroup* self, QAction* a) { self->removeAction(a); } void QActionGroup_Actions(QActionGroup* self, QAction*** _out, size_t* _out_len) { QList ret = const_cast(self)->actions(); // Convert QList<> from C++ memory to manually-managed C memory QAction** __out = static_cast(malloc(sizeof(QAction*) * ret.length())); for (size_t i = 0, e = ret.length(); i < e; ++i) { __out[i] = ret[i]; } *_out = __out; *_out_len = ret.length(); } QAction* QActionGroup_CheckedAction(QActionGroup* self) { return const_cast(self)->checkedAction(); } bool QActionGroup_IsExclusive(QActionGroup* self) { return const_cast(self)->isExclusive(); } bool QActionGroup_IsEnabled(QActionGroup* self) { return const_cast(self)->isEnabled(); } bool QActionGroup_IsVisible(QActionGroup* self) { return const_cast(self)->isVisible(); } uintptr_t QActionGroup_ExclusionPolicy(QActionGroup* self) { QActionGroup::ExclusionPolicy ret = const_cast(self)->exclusionPolicy(); return static_cast(ret); } void QActionGroup_SetEnabled(QActionGroup* self, bool enabled) { self->setEnabled(enabled); } void QActionGroup_SetDisabled(QActionGroup* self, bool b) { self->setDisabled(b); } void QActionGroup_SetVisible(QActionGroup* self, bool visible) { self->setVisible(visible); } void QActionGroup_SetExclusive(QActionGroup* self, bool exclusive) { self->setExclusive(exclusive); } void QActionGroup_SetExclusionPolicy(QActionGroup* self, uintptr_t policy) { self->setExclusionPolicy(static_cast(policy)); } void QActionGroup_Triggered(QActionGroup* self, QAction* param1) { self->triggered(param1); } void QActionGroup_connect_Triggered(QActionGroup* self, void* slot) { QActionGroup::connect(self, static_cast(&QActionGroup::triggered), self, [=](QAction* param1) { miqt_exec_callback(slot, 0, nullptr); }); } void QActionGroup_Hovered(QActionGroup* self, QAction* param1) { self->hovered(param1); } void QActionGroup_connect_Hovered(QActionGroup* self, void* slot) { QActionGroup::connect(self, static_cast(&QActionGroup::hovered), self, [=](QAction* param1) { miqt_exec_callback(slot, 0, nullptr); }); } void QActionGroup_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen) { QString ret = QActionGroup::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 QActionGroup_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen) { QString ret = QActionGroup::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 QActionGroup_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen) { QString ret = QActionGroup::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 QActionGroup_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen) { QString ret = QActionGroup::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 QActionGroup_Delete(QActionGroup* self) { delete self; }