2024-08-25 04:08:24 +00:00
|
|
|
#include <QEventTransition>
|
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QState>
|
|
|
|
#include <QString>
|
2024-08-29 07:01:51 +00:00
|
|
|
#include <QByteArray>
|
|
|
|
#include <cstring>
|
|
|
|
#include "qeventtransition.h"
|
|
|
|
#include "gen_qeventtransition.h"
|
2024-09-14 22:29:05 +00:00
|
|
|
#include "_cgo_export.h"
|
2024-08-25 04:08:24 +00:00
|
|
|
|
|
|
|
QEventTransition* QEventTransition_new() {
|
|
|
|
return new QEventTransition();
|
|
|
|
}
|
|
|
|
|
2024-09-18 00:12:02 +00:00
|
|
|
QEventTransition* QEventTransition_new2(QObject* object, int typeVal) {
|
2024-08-29 07:01:51 +00:00
|
|
|
return new QEventTransition(object, static_cast<QEvent::Type>(typeVal));
|
|
|
|
}
|
|
|
|
|
|
|
|
QEventTransition* QEventTransition_new3(QState* sourceState) {
|
2024-08-25 04:08:24 +00:00
|
|
|
return new QEventTransition(sourceState);
|
|
|
|
}
|
|
|
|
|
2024-09-18 00:12:02 +00:00
|
|
|
QEventTransition* QEventTransition_new4(QObject* object, int typeVal, QState* sourceState) {
|
2024-08-29 07:01:51 +00:00
|
|
|
return new QEventTransition(object, static_cast<QEvent::Type>(typeVal), sourceState);
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QEventTransition_MetaObject(const QEventTransition* self) {
|
|
|
|
return (QMetaObject*) self->metaObject();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QEventTransition_Tr(const char* s) {
|
|
|
|
QString _ret = QEventTransition::tr(s);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
return miqt_strdup(_b.data(), _b.length());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QEventTransition_TrUtf8(const char* s) {
|
|
|
|
QString _ret = QEventTransition::trUtf8(s);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
return miqt_strdup(_b.data(), _b.length());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QObject* QEventTransition_EventSource(const QEventTransition* self) {
|
|
|
|
return self->eventSource();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QEventTransition_SetEventSource(QEventTransition* self, QObject* object) {
|
|
|
|
self->setEventSource(object);
|
|
|
|
}
|
|
|
|
|
2024-09-18 00:12:02 +00:00
|
|
|
int QEventTransition_EventType(const QEventTransition* self) {
|
2024-09-14 22:29:05 +00:00
|
|
|
QEvent::Type _ret = self->eventType();
|
2024-09-18 00:12:02 +00:00
|
|
|
return static_cast<int>(_ret);
|
2024-08-29 07:01:51 +00:00
|
|
|
}
|
|
|
|
|
2024-09-18 00:12:02 +00:00
|
|
|
void QEventTransition_SetEventType(QEventTransition* self, int typeVal) {
|
2024-08-29 07:01:51 +00:00
|
|
|
self->setEventType(static_cast<QEvent::Type>(typeVal));
|
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QEventTransition_Tr2(const char* s, const char* c) {
|
|
|
|
QString _ret = QEventTransition::tr(s, c);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
return miqt_strdup(_b.data(), _b.length());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QEventTransition_Tr3(const char* s, const char* c, int n) {
|
|
|
|
QString _ret = QEventTransition::tr(s, c, static_cast<int>(n));
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
return miqt_strdup(_b.data(), _b.length());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QEventTransition_TrUtf82(const char* s, const char* c) {
|
|
|
|
QString _ret = QEventTransition::trUtf8(s, c);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
return miqt_strdup(_b.data(), _b.length());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QEventTransition_TrUtf83(const char* s, const char* c, int n) {
|
|
|
|
QString _ret = QEventTransition::trUtf8(s, c, static_cast<int>(n));
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
return miqt_strdup(_b.data(), _b.length());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QEventTransition_Delete(QEventTransition* self) {
|
|
|
|
delete self;
|
|
|
|
}
|
|
|
|
|