mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
111 lines
3.9 KiB
C++
111 lines
3.9 KiB
C++
#include <QKeyEventTransition>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QState>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include "qkeyeventtransition.h"
|
|
|
|
#include "gen_qkeyeventtransition.h"
|
|
|
|
extern "C" {
|
|
extern void miqt_exec_callback(void* cb, int argc, void* argv);
|
|
}
|
|
|
|
QKeyEventTransition* QKeyEventTransition_new() {
|
|
return new QKeyEventTransition();
|
|
}
|
|
|
|
QKeyEventTransition* QKeyEventTransition_new2(QObject* object, uintptr_t typeVal, int key) {
|
|
return new QKeyEventTransition(object, static_cast<QEvent::Type>(typeVal), static_cast<int>(key));
|
|
}
|
|
|
|
QKeyEventTransition* QKeyEventTransition_new3(QState* sourceState) {
|
|
return new QKeyEventTransition(sourceState);
|
|
}
|
|
|
|
QKeyEventTransition* QKeyEventTransition_new4(QObject* object, uintptr_t typeVal, int key, QState* sourceState) {
|
|
return new QKeyEventTransition(object, static_cast<QEvent::Type>(typeVal), static_cast<int>(key), sourceState);
|
|
}
|
|
|
|
QMetaObject* QKeyEventTransition_MetaObject(const QKeyEventTransition* self) {
|
|
return (QMetaObject*) self->metaObject();
|
|
}
|
|
|
|
void QKeyEventTransition_Tr(const char* s, char** _out, int* _out_Strlen) {
|
|
QString ret = QKeyEventTransition::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 QKeyEventTransition_TrUtf8(const char* s, char** _out, int* _out_Strlen) {
|
|
QString ret = QKeyEventTransition::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();
|
|
}
|
|
|
|
int QKeyEventTransition_Key(const QKeyEventTransition* self) {
|
|
return self->key();
|
|
}
|
|
|
|
void QKeyEventTransition_SetKey(QKeyEventTransition* self, int key) {
|
|
self->setKey(static_cast<int>(key));
|
|
}
|
|
|
|
int QKeyEventTransition_ModifierMask(const QKeyEventTransition* self) {
|
|
Qt::KeyboardModifiers ret = self->modifierMask();
|
|
return static_cast<int>(ret);
|
|
}
|
|
|
|
void QKeyEventTransition_SetModifierMask(QKeyEventTransition* self, int modifiers) {
|
|
self->setModifierMask(static_cast<Qt::KeyboardModifiers>(modifiers));
|
|
}
|
|
|
|
void QKeyEventTransition_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen) {
|
|
QString ret = QKeyEventTransition::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 QKeyEventTransition_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen) {
|
|
QString ret = QKeyEventTransition::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 QKeyEventTransition_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen) {
|
|
QString ret = QKeyEventTransition::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 QKeyEventTransition_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen) {
|
|
QString ret = QKeyEventTransition::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 QKeyEventTransition_Delete(QKeyEventTransition* self) {
|
|
delete self;
|
|
}
|
|
|