mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
453 lines
14 KiB
C++
453 lines
14 KiB
C++
#include <QAction>
|
|
#include <QActionGroup>
|
|
#include <QFont>
|
|
#include <QGraphicsWidget>
|
|
#include <QIcon>
|
|
#include <QKeySequence>
|
|
#include <QList>
|
|
#include <QMenu>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QVariant>
|
|
#include <QWidget>
|
|
#include "qaction.h"
|
|
|
|
#include "gen_qaction.h"
|
|
|
|
extern "C" {
|
|
extern void miqt_exec_callback(void* cb, int argc, void* argv);
|
|
}
|
|
|
|
QAction* QAction_new() {
|
|
return new QAction();
|
|
}
|
|
|
|
QAction* QAction_new2(const char* text, size_t text_Strlen) {
|
|
QString text_QString = QString::fromUtf8(text, text_Strlen);
|
|
return new QAction(text_QString);
|
|
}
|
|
|
|
QAction* QAction_new3(QIcon* icon, const char* text, size_t text_Strlen) {
|
|
QString text_QString = QString::fromUtf8(text, text_Strlen);
|
|
return new QAction(*icon, text_QString);
|
|
}
|
|
|
|
QAction* QAction_new4(QObject* parent) {
|
|
return new QAction(parent);
|
|
}
|
|
|
|
QAction* QAction_new5(const char* text, size_t text_Strlen, QObject* parent) {
|
|
QString text_QString = QString::fromUtf8(text, text_Strlen);
|
|
return new QAction(text_QString, parent);
|
|
}
|
|
|
|
QAction* QAction_new6(QIcon* icon, const char* text, size_t text_Strlen, QObject* parent) {
|
|
QString text_QString = QString::fromUtf8(text, text_Strlen);
|
|
return new QAction(*icon, text_QString, parent);
|
|
}
|
|
|
|
QMetaObject* QAction_MetaObject(QAction* self) {
|
|
return (QMetaObject*) const_cast<const QAction*>(self)->metaObject();
|
|
}
|
|
|
|
void QAction_Tr(const char* s, char** _out, int* _out_Strlen) {
|
|
QString ret = QAction::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<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAction_TrUtf8(const char* s, char** _out, int* _out_Strlen) {
|
|
QString ret = QAction::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<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAction_SetActionGroup(QAction* self, QActionGroup* group) {
|
|
self->setActionGroup(group);
|
|
}
|
|
|
|
QActionGroup* QAction_ActionGroup(QAction* self) {
|
|
return const_cast<const QAction*>(self)->actionGroup();
|
|
}
|
|
|
|
void QAction_SetIcon(QAction* self, QIcon* icon) {
|
|
self->setIcon(*icon);
|
|
}
|
|
|
|
QIcon* QAction_Icon(QAction* self) {
|
|
QIcon ret = const_cast<const QAction*>(self)->icon();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QIcon*>(new QIcon(ret));
|
|
}
|
|
|
|
void QAction_SetText(QAction* self, const char* text, size_t text_Strlen) {
|
|
QString text_QString = QString::fromUtf8(text, text_Strlen);
|
|
self->setText(text_QString);
|
|
}
|
|
|
|
void QAction_Text(QAction* self, char** _out, int* _out_Strlen) {
|
|
QString ret = const_cast<const QAction*>(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<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAction_SetIconText(QAction* self, const char* text, size_t text_Strlen) {
|
|
QString text_QString = QString::fromUtf8(text, text_Strlen);
|
|
self->setIconText(text_QString);
|
|
}
|
|
|
|
void QAction_IconText(QAction* self, char** _out, int* _out_Strlen) {
|
|
QString ret = const_cast<const QAction*>(self)->iconText();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAction_SetToolTip(QAction* self, const char* tip, size_t tip_Strlen) {
|
|
QString tip_QString = QString::fromUtf8(tip, tip_Strlen);
|
|
self->setToolTip(tip_QString);
|
|
}
|
|
|
|
void QAction_ToolTip(QAction* self, char** _out, int* _out_Strlen) {
|
|
QString ret = const_cast<const QAction*>(self)->toolTip();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAction_SetStatusTip(QAction* self, const char* statusTip, size_t statusTip_Strlen) {
|
|
QString statusTip_QString = QString::fromUtf8(statusTip, statusTip_Strlen);
|
|
self->setStatusTip(statusTip_QString);
|
|
}
|
|
|
|
void QAction_StatusTip(QAction* self, char** _out, int* _out_Strlen) {
|
|
QString ret = const_cast<const QAction*>(self)->statusTip();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAction_SetWhatsThis(QAction* self, const char* what, size_t what_Strlen) {
|
|
QString what_QString = QString::fromUtf8(what, what_Strlen);
|
|
self->setWhatsThis(what_QString);
|
|
}
|
|
|
|
void QAction_WhatsThis(QAction* self, char** _out, int* _out_Strlen) {
|
|
QString ret = const_cast<const QAction*>(self)->whatsThis();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAction_SetPriority(QAction* self, uintptr_t priority) {
|
|
self->setPriority(static_cast<QAction::Priority>(priority));
|
|
}
|
|
|
|
uintptr_t QAction_Priority(QAction* self) {
|
|
QAction::Priority ret = const_cast<const QAction*>(self)->priority();
|
|
return static_cast<uintptr_t>(ret);
|
|
}
|
|
|
|
QMenu* QAction_Menu(QAction* self) {
|
|
return const_cast<const QAction*>(self)->menu();
|
|
}
|
|
|
|
void QAction_SetMenu(QAction* self, QMenu* menu) {
|
|
self->setMenu(menu);
|
|
}
|
|
|
|
void QAction_SetSeparator(QAction* self, bool b) {
|
|
self->setSeparator(b);
|
|
}
|
|
|
|
bool QAction_IsSeparator(QAction* self) {
|
|
return const_cast<const QAction*>(self)->isSeparator();
|
|
}
|
|
|
|
void QAction_SetShortcut(QAction* self, QKeySequence* shortcut) {
|
|
self->setShortcut(*shortcut);
|
|
}
|
|
|
|
QKeySequence* QAction_Shortcut(QAction* self) {
|
|
QKeySequence ret = const_cast<const QAction*>(self)->shortcut();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QKeySequence*>(new QKeySequence(ret));
|
|
}
|
|
|
|
void QAction_SetShortcuts(QAction* self, QKeySequence** shortcuts, size_t shortcuts_len) {
|
|
QList<QKeySequence> shortcuts_QList;
|
|
shortcuts_QList.reserve(shortcuts_len);
|
|
for(size_t i = 0; i < shortcuts_len; ++i) {
|
|
shortcuts_QList.push_back(*(shortcuts[i]));
|
|
}
|
|
self->setShortcuts(shortcuts_QList);
|
|
}
|
|
|
|
void QAction_SetShortcutsWithShortcuts(QAction* self, uintptr_t shortcuts) {
|
|
self->setShortcuts(static_cast<QKeySequence::StandardKey>(shortcuts));
|
|
}
|
|
|
|
void QAction_Shortcuts(QAction* self, QKeySequence*** _out, size_t* _out_len) {
|
|
QList<QKeySequence> ret = const_cast<const QAction*>(self)->shortcuts();
|
|
// Convert QList<> from C++ memory to manually-managed C memory of copy-constructed pointers
|
|
QKeySequence** __out = static_cast<QKeySequence**>(malloc(sizeof(QKeySequence**) * ret.length()));
|
|
for (size_t i = 0, e = ret.length(); i < e; ++i) {
|
|
__out[i] = new QKeySequence(ret[i]);
|
|
}
|
|
*_out = __out;
|
|
*_out_len = ret.length();
|
|
}
|
|
|
|
void QAction_SetShortcutContext(QAction* self, uintptr_t context) {
|
|
self->setShortcutContext(static_cast<Qt::ShortcutContext>(context));
|
|
}
|
|
|
|
uintptr_t QAction_ShortcutContext(QAction* self) {
|
|
Qt::ShortcutContext ret = const_cast<const QAction*>(self)->shortcutContext();
|
|
return static_cast<uintptr_t>(ret);
|
|
}
|
|
|
|
void QAction_SetAutoRepeat(QAction* self, bool autoRepeat) {
|
|
self->setAutoRepeat(autoRepeat);
|
|
}
|
|
|
|
bool QAction_AutoRepeat(QAction* self) {
|
|
return const_cast<const QAction*>(self)->autoRepeat();
|
|
}
|
|
|
|
void QAction_SetFont(QAction* self, QFont* font) {
|
|
self->setFont(*font);
|
|
}
|
|
|
|
QFont* QAction_Font(QAction* self) {
|
|
QFont ret = const_cast<const QAction*>(self)->font();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QFont*>(new QFont(ret));
|
|
}
|
|
|
|
void QAction_SetCheckable(QAction* self, bool checkable) {
|
|
self->setCheckable(checkable);
|
|
}
|
|
|
|
bool QAction_IsCheckable(QAction* self) {
|
|
return const_cast<const QAction*>(self)->isCheckable();
|
|
}
|
|
|
|
QVariant* QAction_Data(QAction* self) {
|
|
QVariant ret = const_cast<const QAction*>(self)->data();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QVariant*>(new QVariant(ret));
|
|
}
|
|
|
|
void QAction_SetData(QAction* self, QVariant* varVal) {
|
|
self->setData(*varVal);
|
|
}
|
|
|
|
bool QAction_IsChecked(QAction* self) {
|
|
return const_cast<const QAction*>(self)->isChecked();
|
|
}
|
|
|
|
bool QAction_IsEnabled(QAction* self) {
|
|
return const_cast<const QAction*>(self)->isEnabled();
|
|
}
|
|
|
|
bool QAction_IsVisible(QAction* self) {
|
|
return const_cast<const QAction*>(self)->isVisible();
|
|
}
|
|
|
|
void QAction_Activate(QAction* self, uintptr_t event) {
|
|
self->activate(static_cast<QAction::ActionEvent>(event));
|
|
}
|
|
|
|
bool QAction_ShowStatusText(QAction* self) {
|
|
return self->showStatusText();
|
|
}
|
|
|
|
void QAction_SetMenuRole(QAction* self, uintptr_t menuRole) {
|
|
self->setMenuRole(static_cast<QAction::MenuRole>(menuRole));
|
|
}
|
|
|
|
uintptr_t QAction_MenuRole(QAction* self) {
|
|
QAction::MenuRole ret = const_cast<const QAction*>(self)->menuRole();
|
|
return static_cast<uintptr_t>(ret);
|
|
}
|
|
|
|
void QAction_SetIconVisibleInMenu(QAction* self, bool visible) {
|
|
self->setIconVisibleInMenu(visible);
|
|
}
|
|
|
|
bool QAction_IsIconVisibleInMenu(QAction* self) {
|
|
return const_cast<const QAction*>(self)->isIconVisibleInMenu();
|
|
}
|
|
|
|
void QAction_SetShortcutVisibleInContextMenu(QAction* self, bool show) {
|
|
self->setShortcutVisibleInContextMenu(show);
|
|
}
|
|
|
|
bool QAction_IsShortcutVisibleInContextMenu(QAction* self) {
|
|
return const_cast<const QAction*>(self)->isShortcutVisibleInContextMenu();
|
|
}
|
|
|
|
QWidget* QAction_ParentWidget(QAction* self) {
|
|
return const_cast<const QAction*>(self)->parentWidget();
|
|
}
|
|
|
|
void QAction_AssociatedWidgets(QAction* self, QWidget*** _out, size_t* _out_len) {
|
|
QList<QWidget*> ret = const_cast<const QAction*>(self)->associatedWidgets();
|
|
// Convert QList<> from C++ memory to manually-managed C memory
|
|
QWidget** __out = static_cast<QWidget**>(malloc(sizeof(QWidget*) * ret.length()));
|
|
for (size_t i = 0, e = ret.length(); i < e; ++i) {
|
|
__out[i] = ret[i];
|
|
}
|
|
*_out = __out;
|
|
*_out_len = ret.length();
|
|
}
|
|
|
|
void QAction_AssociatedGraphicsWidgets(QAction* self, QGraphicsWidget*** _out, size_t* _out_len) {
|
|
QList<QGraphicsWidget*> ret = const_cast<const QAction*>(self)->associatedGraphicsWidgets();
|
|
// Convert QList<> from C++ memory to manually-managed C memory
|
|
QGraphicsWidget** __out = static_cast<QGraphicsWidget**>(malloc(sizeof(QGraphicsWidget*) * ret.length()));
|
|
for (size_t i = 0, e = ret.length(); i < e; ++i) {
|
|
__out[i] = ret[i];
|
|
}
|
|
*_out = __out;
|
|
*_out_len = ret.length();
|
|
}
|
|
|
|
void QAction_Trigger(QAction* self) {
|
|
self->trigger();
|
|
}
|
|
|
|
void QAction_Hover(QAction* self) {
|
|
self->hover();
|
|
}
|
|
|
|
void QAction_SetChecked(QAction* self, bool checked) {
|
|
self->setChecked(checked);
|
|
}
|
|
|
|
void QAction_Toggle(QAction* self) {
|
|
self->toggle();
|
|
}
|
|
|
|
void QAction_SetEnabled(QAction* self, bool enabled) {
|
|
self->setEnabled(enabled);
|
|
}
|
|
|
|
void QAction_SetDisabled(QAction* self, bool b) {
|
|
self->setDisabled(b);
|
|
}
|
|
|
|
void QAction_SetVisible(QAction* self, bool visible) {
|
|
self->setVisible(visible);
|
|
}
|
|
|
|
void QAction_Changed(QAction* self) {
|
|
self->changed();
|
|
}
|
|
|
|
void QAction_connect_Changed(QAction* self, void* slot) {
|
|
QAction::connect(self, static_cast<void (QAction::*)()>(&QAction::changed), self, [=]() {
|
|
miqt_exec_callback(slot, 0, nullptr);
|
|
});
|
|
}
|
|
|
|
void QAction_Triggered(QAction* self) {
|
|
self->triggered();
|
|
}
|
|
|
|
void QAction_Hovered(QAction* self) {
|
|
self->hovered();
|
|
}
|
|
|
|
void QAction_connect_Hovered(QAction* self, void* slot) {
|
|
QAction::connect(self, static_cast<void (QAction::*)()>(&QAction::hovered), self, [=]() {
|
|
miqt_exec_callback(slot, 0, nullptr);
|
|
});
|
|
}
|
|
|
|
void QAction_Toggled(QAction* self, bool param1) {
|
|
self->toggled(param1);
|
|
}
|
|
|
|
void QAction_connect_Toggled(QAction* self, void* slot) {
|
|
QAction::connect(self, static_cast<void (QAction::*)(bool)>(&QAction::toggled), self, [=](bool param1) {
|
|
miqt_exec_callback(slot, 0, nullptr);
|
|
});
|
|
}
|
|
|
|
void QAction_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen) {
|
|
QString ret = QAction::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<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAction_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen) {
|
|
QString ret = QAction::tr(s, c, static_cast<int>(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<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAction_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen) {
|
|
QString ret = QAction::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<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAction_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen) {
|
|
QString ret = QAction::trUtf8(s, c, static_cast<int>(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<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
bool QAction_ShowStatusText1(QAction* self, QWidget* widget) {
|
|
return self->showStatusText(widget);
|
|
}
|
|
|
|
void QAction_Triggered1(QAction* self, bool checked) {
|
|
self->triggered(checked);
|
|
}
|
|
|
|
void QAction_connect_Triggered1(QAction* self, void* slot) {
|
|
QAction::connect(self, static_cast<void (QAction::*)(bool)>(&QAction::triggered), self, [=](bool checked) {
|
|
miqt_exec_callback(slot, 0, nullptr);
|
|
});
|
|
}
|
|
|
|
void QAction_Delete(QAction* self) {
|
|
delete self;
|
|
}
|
|
|