#include #include #include #include #include #include #include #include "qtimeline.h" #include "gen_qtimeline.h" extern "C" { extern void miqt_exec_callback(void* cb, int argc, void* argv); } QTimeLine* QTimeLine_new() { return new QTimeLine(); } QTimeLine* QTimeLine_new2(int duration) { return new QTimeLine(static_cast(duration)); } QTimeLine* QTimeLine_new3(int duration, QObject* parent) { return new QTimeLine(static_cast(duration), parent); } QMetaObject* QTimeLine_MetaObject(QTimeLine* self) { return (QMetaObject*) const_cast(self)->metaObject(); } void QTimeLine_Tr(const char* s, char** _out, int* _out_Strlen) { QString ret = QTimeLine::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(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTimeLine_TrUtf8(const char* s, char** _out, int* _out_Strlen) { QString ret = QTimeLine::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(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } uintptr_t QTimeLine_State(QTimeLine* self) { QTimeLine::State ret = const_cast(self)->state(); return static_cast(ret); } int QTimeLine_LoopCount(QTimeLine* self) { return const_cast(self)->loopCount(); } void QTimeLine_SetLoopCount(QTimeLine* self, int count) { self->setLoopCount(static_cast(count)); } uintptr_t QTimeLine_Direction(QTimeLine* self) { QTimeLine::Direction ret = const_cast(self)->direction(); return static_cast(ret); } void QTimeLine_SetDirection(QTimeLine* self, uintptr_t direction) { self->setDirection(static_cast(direction)); } int QTimeLine_Duration(QTimeLine* self) { return const_cast(self)->duration(); } void QTimeLine_SetDuration(QTimeLine* self, int duration) { self->setDuration(static_cast(duration)); } int QTimeLine_StartFrame(QTimeLine* self) { return const_cast(self)->startFrame(); } void QTimeLine_SetStartFrame(QTimeLine* self, int frame) { self->setStartFrame(static_cast(frame)); } int QTimeLine_EndFrame(QTimeLine* self) { return const_cast(self)->endFrame(); } void QTimeLine_SetEndFrame(QTimeLine* self, int frame) { self->setEndFrame(static_cast(frame)); } void QTimeLine_SetFrameRange(QTimeLine* self, int startFrame, int endFrame) { self->setFrameRange(static_cast(startFrame), static_cast(endFrame)); } int QTimeLine_UpdateInterval(QTimeLine* self) { return const_cast(self)->updateInterval(); } void QTimeLine_SetUpdateInterval(QTimeLine* self, int interval) { self->setUpdateInterval(static_cast(interval)); } uintptr_t QTimeLine_CurveShape(QTimeLine* self) { QTimeLine::CurveShape ret = const_cast(self)->curveShape(); return static_cast(ret); } void QTimeLine_SetCurveShape(QTimeLine* self, uintptr_t shape) { self->setCurveShape(static_cast(shape)); } QEasingCurve* QTimeLine_EasingCurve(QTimeLine* self) { QEasingCurve ret = const_cast(self)->easingCurve(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QEasingCurve(ret)); } void QTimeLine_SetEasingCurve(QTimeLine* self, QEasingCurve* curve) { self->setEasingCurve(*curve); } int QTimeLine_CurrentTime(QTimeLine* self) { return const_cast(self)->currentTime(); } int QTimeLine_CurrentFrame(QTimeLine* self) { return const_cast(self)->currentFrame(); } double QTimeLine_CurrentValue(QTimeLine* self) { return const_cast(self)->currentValue(); } int QTimeLine_FrameForTime(QTimeLine* self, int msec) { return const_cast(self)->frameForTime(static_cast(msec)); } double QTimeLine_ValueForTime(QTimeLine* self, int msec) { return const_cast(self)->valueForTime(static_cast(msec)); } void QTimeLine_Start(QTimeLine* self) { self->start(); } void QTimeLine_Resume(QTimeLine* self) { self->resume(); } void QTimeLine_Stop(QTimeLine* self) { self->stop(); } void QTimeLine_SetPaused(QTimeLine* self, bool paused) { self->setPaused(paused); } void QTimeLine_SetCurrentTime(QTimeLine* self, int msec) { self->setCurrentTime(static_cast(msec)); } void QTimeLine_ToggleDirection(QTimeLine* self) { self->toggleDirection(); } void QTimeLine_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen) { QString ret = QTimeLine::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(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTimeLine_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen) { QString ret = QTimeLine::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(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTimeLine_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen) { QString ret = QTimeLine::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(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTimeLine_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen) { QString ret = QTimeLine::trUtf8(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(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTimeLine_Delete(QTimeLine* self) { delete self; }