mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
98 lines
3.1 KiB
C++
98 lines
3.1 KiB
C++
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QWidget>
|
|
#include <QWidgetAction>
|
|
#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(const QWidgetAction* self) {
|
|
return (QMetaObject*) 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<char*>(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<char*>(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(const QWidgetAction* self) {
|
|
return 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<char*>(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<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 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<char*>(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<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 QWidgetAction_Delete(QWidgetAction* self) {
|
|
delete self;
|
|
}
|
|
|