#include #include #include #include #include #include #include #include "qtimeline.h" #include "gen_qtimeline.h" #include "_cgo_export.h" 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(const QTimeLine* self) { return (QMetaObject*) self->metaObject(); } void* QTimeLine_Metacast(QTimeLine* self, const char* param1) { return self->qt_metacast(param1); } struct miqt_string* QTimeLine_Tr(const char* s) { 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(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_string* QTimeLine_TrUtf8(const char* s) { 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(); return miqt_strdup(_b.data(), _b.length()); } int QTimeLine_State(const QTimeLine* self) { QTimeLine::State _ret = self->state(); return static_cast(_ret); } int QTimeLine_LoopCount(const QTimeLine* self) { return self->loopCount(); } void QTimeLine_SetLoopCount(QTimeLine* self, int count) { self->setLoopCount(static_cast(count)); } int QTimeLine_Direction(const QTimeLine* self) { QTimeLine::Direction _ret = self->direction(); return static_cast(_ret); } void QTimeLine_SetDirection(QTimeLine* self, int direction) { self->setDirection(static_cast(direction)); } int QTimeLine_Duration(const QTimeLine* self) { return self->duration(); } void QTimeLine_SetDuration(QTimeLine* self, int duration) { self->setDuration(static_cast(duration)); } int QTimeLine_StartFrame(const QTimeLine* self) { return self->startFrame(); } void QTimeLine_SetStartFrame(QTimeLine* self, int frame) { self->setStartFrame(static_cast(frame)); } int QTimeLine_EndFrame(const QTimeLine* self) { return 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(const QTimeLine* self) { return self->updateInterval(); } void QTimeLine_SetUpdateInterval(QTimeLine* self, int interval) { self->setUpdateInterval(static_cast(interval)); } int QTimeLine_CurveShape(const QTimeLine* self) { QTimeLine::CurveShape _ret = self->curveShape(); return static_cast(_ret); } void QTimeLine_SetCurveShape(QTimeLine* self, int shape) { self->setCurveShape(static_cast(shape)); } QEasingCurve* QTimeLine_EasingCurve(const QTimeLine* self) { return new QEasingCurve(self->easingCurve()); } void QTimeLine_SetEasingCurve(QTimeLine* self, QEasingCurve* curve) { self->setEasingCurve(*curve); } int QTimeLine_CurrentTime(const QTimeLine* self) { return self->currentTime(); } int QTimeLine_CurrentFrame(const QTimeLine* self) { return self->currentFrame(); } double QTimeLine_CurrentValue(const QTimeLine* self) { qreal _ret = self->currentValue(); return static_cast(_ret); } int QTimeLine_FrameForTime(const QTimeLine* self, int msec) { return self->frameForTime(static_cast(msec)); } double QTimeLine_ValueForTime(const QTimeLine* self, int msec) { qreal _ret = self->valueForTime(static_cast(msec)); return static_cast(_ret); } 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(); } struct miqt_string* QTimeLine_Tr2(const char* s, const char* c) { 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(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_string* QTimeLine_Tr3(const char* s, const char* c, int n) { 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(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_string* QTimeLine_TrUtf82(const char* s, const char* c) { 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(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_string* QTimeLine_TrUtf83(const char* s, const char* c, int n) { 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(); return miqt_strdup(_b.data(), _b.length()); } void QTimeLine_Delete(QTimeLine* self) { delete self; }