#include #include #include #include #include #include #include #include #include #include "gen_qanimationgroup.h" #ifndef _Bool #define _Bool bool #endif #include "_cgo_export.h" class MiqtVirtualQAnimationGroup : public virtual QAnimationGroup { public: MiqtVirtualQAnimationGroup(): QAnimationGroup() {}; MiqtVirtualQAnimationGroup(QObject* parent): QAnimationGroup(parent) {}; virtual ~MiqtVirtualQAnimationGroup() = default; // cgo.Handle value for overwritten implementation intptr_t handle__Event = 0; // Subclass to allow providing a Go implementation virtual bool event(QEvent* event) override { if (handle__Event == 0) { return QAnimationGroup::event(event); } QEvent* sigval1 = event; bool callback_return_value = miqt_exec_callback_QAnimationGroup_Event(this, handle__Event, sigval1); return callback_return_value; } // Wrapper to allow calling protected method bool virtualbase_Event(QEvent* event) { return QAnimationGroup::event(event); } // cgo.Handle value for overwritten implementation intptr_t handle__Duration = 0; // Subclass to allow providing a Go implementation virtual int duration() const override { if (handle__Duration == 0) { return 0; // Pure virtual, there is no base we can call } int callback_return_value = miqt_exec_callback_QAnimationGroup_Duration(const_cast(this), handle__Duration); return static_cast(callback_return_value); } // cgo.Handle value for overwritten implementation intptr_t handle__UpdateCurrentTime = 0; // Subclass to allow providing a Go implementation virtual void updateCurrentTime(int currentTime) override { if (handle__UpdateCurrentTime == 0) { return; // Pure virtual, there is no base we can call } int sigval1 = currentTime; miqt_exec_callback_QAnimationGroup_UpdateCurrentTime(this, handle__UpdateCurrentTime, sigval1); } // cgo.Handle value for overwritten implementation intptr_t handle__UpdateState = 0; // Subclass to allow providing a Go implementation virtual void updateState(QAbstractAnimation::State newState, QAbstractAnimation::State oldState) override { if (handle__UpdateState == 0) { QAnimationGroup::updateState(newState, oldState); return; } QAbstractAnimation::State newState_ret = newState; int sigval1 = static_cast(newState_ret); QAbstractAnimation::State oldState_ret = oldState; int sigval2 = static_cast(oldState_ret); miqt_exec_callback_QAnimationGroup_UpdateState(this, handle__UpdateState, sigval1, sigval2); } // Wrapper to allow calling protected method void virtualbase_UpdateState(int newState, int oldState) { QAnimationGroup::updateState(static_cast(newState), static_cast(oldState)); } // cgo.Handle value for overwritten implementation intptr_t handle__UpdateDirection = 0; // Subclass to allow providing a Go implementation virtual void updateDirection(QAbstractAnimation::Direction direction) override { if (handle__UpdateDirection == 0) { QAnimationGroup::updateDirection(direction); return; } QAbstractAnimation::Direction direction_ret = direction; int sigval1 = static_cast(direction_ret); miqt_exec_callback_QAnimationGroup_UpdateDirection(this, handle__UpdateDirection, sigval1); } // Wrapper to allow calling protected method void virtualbase_UpdateDirection(int direction) { QAnimationGroup::updateDirection(static_cast(direction)); } }; QAnimationGroup* QAnimationGroup_new() { return new MiqtVirtualQAnimationGroup(); } QAnimationGroup* QAnimationGroup_new2(QObject* parent) { return new MiqtVirtualQAnimationGroup(parent); } void QAnimationGroup_virtbase(QAnimationGroup* src, QAbstractAnimation** outptr_QAbstractAnimation) { *outptr_QAbstractAnimation = static_cast(src); } QMetaObject* QAnimationGroup_MetaObject(const QAnimationGroup* self) { return (QMetaObject*) self->metaObject(); } void* QAnimationGroup_Metacast(QAnimationGroup* self, const char* param1) { return self->qt_metacast(param1); } struct miqt_string QAnimationGroup_Tr(const char* s) { QString _ret = QAnimationGroup::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(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } QAbstractAnimation* QAnimationGroup_AnimationAt(const QAnimationGroup* self, int index) { return self->animationAt(static_cast(index)); } int QAnimationGroup_AnimationCount(const QAnimationGroup* self) { return self->animationCount(); } int QAnimationGroup_IndexOfAnimation(const QAnimationGroup* self, QAbstractAnimation* animation) { return self->indexOfAnimation(animation); } void QAnimationGroup_AddAnimation(QAnimationGroup* self, QAbstractAnimation* animation) { self->addAnimation(animation); } void QAnimationGroup_InsertAnimation(QAnimationGroup* self, int index, QAbstractAnimation* animation) { self->insertAnimation(static_cast(index), animation); } void QAnimationGroup_RemoveAnimation(QAnimationGroup* self, QAbstractAnimation* animation) { self->removeAnimation(animation); } QAbstractAnimation* QAnimationGroup_TakeAnimation(QAnimationGroup* self, int index) { return self->takeAnimation(static_cast(index)); } void QAnimationGroup_Clear(QAnimationGroup* self) { self->clear(); } struct miqt_string QAnimationGroup_Tr2(const char* s, const char* c) { QString _ret = QAnimationGroup::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(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } struct miqt_string QAnimationGroup_Tr3(const char* s, const char* c, int n) { QString _ret = QAnimationGroup::tr(s, c, static_cast(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(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } void QAnimationGroup_override_virtual_Event(void* self, intptr_t slot) { dynamic_cast( (QAnimationGroup*)(self) )->handle__Event = slot; } bool QAnimationGroup_virtualbase_Event(void* self, QEvent* event) { return ( (MiqtVirtualQAnimationGroup*)(self) )->virtualbase_Event(event); } void QAnimationGroup_override_virtual_Duration(void* self, intptr_t slot) { dynamic_cast( (QAnimationGroup*)(self) )->handle__Duration = slot; } void QAnimationGroup_override_virtual_UpdateCurrentTime(void* self, intptr_t slot) { dynamic_cast( (QAnimationGroup*)(self) )->handle__UpdateCurrentTime = slot; } void QAnimationGroup_override_virtual_UpdateState(void* self, intptr_t slot) { dynamic_cast( (QAnimationGroup*)(self) )->handle__UpdateState = slot; } void QAnimationGroup_virtualbase_UpdateState(void* self, int newState, int oldState) { ( (MiqtVirtualQAnimationGroup*)(self) )->virtualbase_UpdateState(newState, oldState); } void QAnimationGroup_override_virtual_UpdateDirection(void* self, intptr_t slot) { dynamic_cast( (QAnimationGroup*)(self) )->handle__UpdateDirection = slot; } void QAnimationGroup_virtualbase_UpdateDirection(void* self, int direction) { ( (MiqtVirtualQAnimationGroup*)(self) )->virtualbase_UpdateDirection(direction); } void QAnimationGroup_Delete(QAnimationGroup* self, bool isSubclass) { if (isSubclass) { delete dynamic_cast( self ); } else { delete self; } }