mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
464 lines
14 KiB
C++
464 lines
14 KiB
C++
#include <QAbstractAnimation>
|
|
#include <QAbstractState>
|
|
#include <QAbstractTransition>
|
|
#include <QChildEvent>
|
|
#include <QEvent>
|
|
#include <QList>
|
|
#include <QMetaMethod>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QState>
|
|
#include <QStateMachine>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QTimerEvent>
|
|
#include <qabstracttransition.h>
|
|
#include "gen_qabstracttransition.h"
|
|
|
|
#ifndef _Bool
|
|
#define _Bool bool
|
|
#endif
|
|
#include "_cgo_export.h"
|
|
|
|
class MiqtVirtualQAbstractTransition : public virtual QAbstractTransition {
|
|
public:
|
|
|
|
MiqtVirtualQAbstractTransition(): QAbstractTransition() {};
|
|
MiqtVirtualQAbstractTransition(QState* sourceState): QAbstractTransition(sourceState) {};
|
|
|
|
virtual ~MiqtVirtualQAbstractTransition() = default;
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__EventTest = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual bool eventTest(QEvent* event) override {
|
|
if (handle__EventTest == 0) {
|
|
return false; // Pure virtual, there is no base we can call
|
|
}
|
|
|
|
QEvent* sigval1 = event;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QAbstractTransition_EventTest(this, handle__EventTest, sigval1);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__OnTransition = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void onTransition(QEvent* event) override {
|
|
if (handle__OnTransition == 0) {
|
|
return; // Pure virtual, there is no base we can call
|
|
}
|
|
|
|
QEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QAbstractTransition_OnTransition(this, handle__OnTransition, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Event = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual bool event(QEvent* e) override {
|
|
if (handle__Event == 0) {
|
|
return QAbstractTransition::event(e);
|
|
}
|
|
|
|
QEvent* sigval1 = e;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QAbstractTransition_Event(this, handle__Event, sigval1);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_Event(QEvent* e) {
|
|
|
|
return QAbstractTransition::event(e);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__EventFilter = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual bool eventFilter(QObject* watched, QEvent* event) override {
|
|
if (handle__EventFilter == 0) {
|
|
return QAbstractTransition::eventFilter(watched, event);
|
|
}
|
|
|
|
QObject* sigval1 = watched;
|
|
QEvent* sigval2 = event;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QAbstractTransition_EventFilter(this, handle__EventFilter, sigval1, sigval2);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_EventFilter(QObject* watched, QEvent* event) {
|
|
|
|
return QAbstractTransition::eventFilter(watched, event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__TimerEvent = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void timerEvent(QTimerEvent* event) override {
|
|
if (handle__TimerEvent == 0) {
|
|
QAbstractTransition::timerEvent(event);
|
|
return;
|
|
}
|
|
|
|
QTimerEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QAbstractTransition_TimerEvent(this, handle__TimerEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_TimerEvent(QTimerEvent* event) {
|
|
|
|
QAbstractTransition::timerEvent(event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__ChildEvent = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void childEvent(QChildEvent* event) override {
|
|
if (handle__ChildEvent == 0) {
|
|
QAbstractTransition::childEvent(event);
|
|
return;
|
|
}
|
|
|
|
QChildEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QAbstractTransition_ChildEvent(this, handle__ChildEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_ChildEvent(QChildEvent* event) {
|
|
|
|
QAbstractTransition::childEvent(event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__CustomEvent = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void customEvent(QEvent* event) override {
|
|
if (handle__CustomEvent == 0) {
|
|
QAbstractTransition::customEvent(event);
|
|
return;
|
|
}
|
|
|
|
QEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QAbstractTransition_CustomEvent(this, handle__CustomEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_CustomEvent(QEvent* event) {
|
|
|
|
QAbstractTransition::customEvent(event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__ConnectNotify = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void connectNotify(const QMetaMethod& signal) override {
|
|
if (handle__ConnectNotify == 0) {
|
|
QAbstractTransition::connectNotify(signal);
|
|
return;
|
|
}
|
|
|
|
const QMetaMethod& signal_ret = signal;
|
|
// Cast returned reference into pointer
|
|
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
|
|
|
|
miqt_exec_callback_QAbstractTransition_ConnectNotify(this, handle__ConnectNotify, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_ConnectNotify(QMetaMethod* signal) {
|
|
|
|
QAbstractTransition::connectNotify(*signal);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__DisconnectNotify = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void disconnectNotify(const QMetaMethod& signal) override {
|
|
if (handle__DisconnectNotify == 0) {
|
|
QAbstractTransition::disconnectNotify(signal);
|
|
return;
|
|
}
|
|
|
|
const QMetaMethod& signal_ret = signal;
|
|
// Cast returned reference into pointer
|
|
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
|
|
|
|
miqt_exec_callback_QAbstractTransition_DisconnectNotify(this, handle__DisconnectNotify, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_DisconnectNotify(QMetaMethod* signal) {
|
|
|
|
QAbstractTransition::disconnectNotify(*signal);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
QAbstractTransition* QAbstractTransition_new() {
|
|
return new MiqtVirtualQAbstractTransition();
|
|
}
|
|
|
|
QAbstractTransition* QAbstractTransition_new2(QState* sourceState) {
|
|
return new MiqtVirtualQAbstractTransition(sourceState);
|
|
}
|
|
|
|
void QAbstractTransition_virtbase(QAbstractTransition* src, QObject** outptr_QObject) {
|
|
*outptr_QObject = static_cast<QObject*>(src);
|
|
}
|
|
|
|
QMetaObject* QAbstractTransition_MetaObject(const QAbstractTransition* self) {
|
|
return (QMetaObject*) self->metaObject();
|
|
}
|
|
|
|
void* QAbstractTransition_Metacast(QAbstractTransition* self, const char* param1) {
|
|
return self->qt_metacast(param1);
|
|
}
|
|
|
|
struct miqt_string QAbstractTransition_Tr(const char* s) {
|
|
QString _ret = QAbstractTransition::tr(s);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
struct miqt_string QAbstractTransition_TrUtf8(const char* s) {
|
|
QString _ret = QAbstractTransition::trUtf8(s);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
QState* QAbstractTransition_SourceState(const QAbstractTransition* self) {
|
|
return self->sourceState();
|
|
}
|
|
|
|
QAbstractState* QAbstractTransition_TargetState(const QAbstractTransition* self) {
|
|
return self->targetState();
|
|
}
|
|
|
|
void QAbstractTransition_SetTargetState(QAbstractTransition* self, QAbstractState* target) {
|
|
self->setTargetState(target);
|
|
}
|
|
|
|
struct miqt_array /* of QAbstractState* */ QAbstractTransition_TargetStates(const QAbstractTransition* self) {
|
|
QList<QAbstractState *> _ret = self->targetStates();
|
|
// Convert QList<> from C++ memory to manually-managed C memory
|
|
QAbstractState** _arr = static_cast<QAbstractState**>(malloc(sizeof(QAbstractState*) * _ret.length()));
|
|
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
|
|
_arr[i] = _ret[i];
|
|
}
|
|
struct miqt_array _out;
|
|
_out.len = _ret.length();
|
|
_out.data = static_cast<void*>(_arr);
|
|
return _out;
|
|
}
|
|
|
|
void QAbstractTransition_SetTargetStates(QAbstractTransition* self, struct miqt_array /* of QAbstractState* */ targets) {
|
|
QList<QAbstractState *> targets_QList;
|
|
targets_QList.reserve(targets.len);
|
|
QAbstractState** targets_arr = static_cast<QAbstractState**>(targets.data);
|
|
for(size_t i = 0; i < targets.len; ++i) {
|
|
targets_QList.push_back(targets_arr[i]);
|
|
}
|
|
self->setTargetStates(targets_QList);
|
|
}
|
|
|
|
int QAbstractTransition_TransitionType(const QAbstractTransition* self) {
|
|
QAbstractTransition::TransitionType _ret = self->transitionType();
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
void QAbstractTransition_SetTransitionType(QAbstractTransition* self, int typeVal) {
|
|
self->setTransitionType(static_cast<QAbstractTransition::TransitionType>(typeVal));
|
|
}
|
|
|
|
QStateMachine* QAbstractTransition_Machine(const QAbstractTransition* self) {
|
|
return self->machine();
|
|
}
|
|
|
|
void QAbstractTransition_AddAnimation(QAbstractTransition* self, QAbstractAnimation* animation) {
|
|
self->addAnimation(animation);
|
|
}
|
|
|
|
void QAbstractTransition_RemoveAnimation(QAbstractTransition* self, QAbstractAnimation* animation) {
|
|
self->removeAnimation(animation);
|
|
}
|
|
|
|
struct miqt_array /* of QAbstractAnimation* */ QAbstractTransition_Animations(const QAbstractTransition* self) {
|
|
QList<QAbstractAnimation *> _ret = self->animations();
|
|
// Convert QList<> from C++ memory to manually-managed C memory
|
|
QAbstractAnimation** _arr = static_cast<QAbstractAnimation**>(malloc(sizeof(QAbstractAnimation*) * _ret.length()));
|
|
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
|
|
_arr[i] = _ret[i];
|
|
}
|
|
struct miqt_array _out;
|
|
_out.len = _ret.length();
|
|
_out.data = static_cast<void*>(_arr);
|
|
return _out;
|
|
}
|
|
|
|
struct miqt_string QAbstractTransition_Tr2(const char* s, const char* c) {
|
|
QString _ret = QAbstractTransition::tr(s, c);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
struct miqt_string QAbstractTransition_Tr3(const char* s, const char* c, int n) {
|
|
QString _ret = QAbstractTransition::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();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
struct miqt_string QAbstractTransition_TrUtf82(const char* s, const char* c) {
|
|
QString _ret = QAbstractTransition::trUtf8(s, c);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
struct miqt_string QAbstractTransition_TrUtf83(const char* s, const char* c, int n) {
|
|
QString _ret = QAbstractTransition::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();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
void QAbstractTransition_override_virtual_EventTest(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAbstractTransition*>( (QAbstractTransition*)(self) )->handle__EventTest = slot;
|
|
}
|
|
|
|
void QAbstractTransition_override_virtual_OnTransition(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAbstractTransition*>( (QAbstractTransition*)(self) )->handle__OnTransition = slot;
|
|
}
|
|
|
|
void QAbstractTransition_override_virtual_Event(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAbstractTransition*>( (QAbstractTransition*)(self) )->handle__Event = slot;
|
|
}
|
|
|
|
bool QAbstractTransition_virtualbase_Event(void* self, QEvent* e) {
|
|
return ( (MiqtVirtualQAbstractTransition*)(self) )->virtualbase_Event(e);
|
|
}
|
|
|
|
void QAbstractTransition_override_virtual_EventFilter(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAbstractTransition*>( (QAbstractTransition*)(self) )->handle__EventFilter = slot;
|
|
}
|
|
|
|
bool QAbstractTransition_virtualbase_EventFilter(void* self, QObject* watched, QEvent* event) {
|
|
return ( (MiqtVirtualQAbstractTransition*)(self) )->virtualbase_EventFilter(watched, event);
|
|
}
|
|
|
|
void QAbstractTransition_override_virtual_TimerEvent(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAbstractTransition*>( (QAbstractTransition*)(self) )->handle__TimerEvent = slot;
|
|
}
|
|
|
|
void QAbstractTransition_virtualbase_TimerEvent(void* self, QTimerEvent* event) {
|
|
( (MiqtVirtualQAbstractTransition*)(self) )->virtualbase_TimerEvent(event);
|
|
}
|
|
|
|
void QAbstractTransition_override_virtual_ChildEvent(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAbstractTransition*>( (QAbstractTransition*)(self) )->handle__ChildEvent = slot;
|
|
}
|
|
|
|
void QAbstractTransition_virtualbase_ChildEvent(void* self, QChildEvent* event) {
|
|
( (MiqtVirtualQAbstractTransition*)(self) )->virtualbase_ChildEvent(event);
|
|
}
|
|
|
|
void QAbstractTransition_override_virtual_CustomEvent(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAbstractTransition*>( (QAbstractTransition*)(self) )->handle__CustomEvent = slot;
|
|
}
|
|
|
|
void QAbstractTransition_virtualbase_CustomEvent(void* self, QEvent* event) {
|
|
( (MiqtVirtualQAbstractTransition*)(self) )->virtualbase_CustomEvent(event);
|
|
}
|
|
|
|
void QAbstractTransition_override_virtual_ConnectNotify(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAbstractTransition*>( (QAbstractTransition*)(self) )->handle__ConnectNotify = slot;
|
|
}
|
|
|
|
void QAbstractTransition_virtualbase_ConnectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQAbstractTransition*)(self) )->virtualbase_ConnectNotify(signal);
|
|
}
|
|
|
|
void QAbstractTransition_override_virtual_DisconnectNotify(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQAbstractTransition*>( (QAbstractTransition*)(self) )->handle__DisconnectNotify = slot;
|
|
}
|
|
|
|
void QAbstractTransition_virtualbase_DisconnectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQAbstractTransition*)(self) )->virtualbase_DisconnectNotify(signal);
|
|
}
|
|
|
|
void QAbstractTransition_Delete(QAbstractTransition* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<MiqtVirtualQAbstractTransition*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|