#include #include #include #include #include #include #include "qpauseanimation.h" #include "gen_qpauseanimation.h" #include "_cgo_export.h" QPauseAnimation* QPauseAnimation_new() { return new QPauseAnimation(); } QPauseAnimation* QPauseAnimation_new2(int msecs) { return new QPauseAnimation(static_cast(msecs)); } QPauseAnimation* QPauseAnimation_new3(QObject* parent) { return new QPauseAnimation(parent); } QPauseAnimation* QPauseAnimation_new4(int msecs, QObject* parent) { return new QPauseAnimation(static_cast(msecs), parent); } QMetaObject* QPauseAnimation_MetaObject(const QPauseAnimation* self) { return (QMetaObject*) self->metaObject(); } void* QPauseAnimation_Metacast(QPauseAnimation* self, const char* param1) { return self->qt_metacast(param1); } struct miqt_string* QPauseAnimation_Tr(const char* s) { QString _ret = QPauseAnimation::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* QPauseAnimation_TrUtf8(const char* s) { QString _ret = QPauseAnimation::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 QPauseAnimation_Duration(const QPauseAnimation* self) { return self->duration(); } void QPauseAnimation_SetDuration(QPauseAnimation* self, int msecs) { self->setDuration(static_cast(msecs)); } struct miqt_string* QPauseAnimation_Tr2(const char* s, const char* c) { QString _ret = QPauseAnimation::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* QPauseAnimation_Tr3(const char* s, const char* c, int n) { QString _ret = QPauseAnimation::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* QPauseAnimation_TrUtf82(const char* s, const char* c) { QString _ret = QPauseAnimation::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* QPauseAnimation_TrUtf83(const char* s, const char* c, int n) { QString _ret = QPauseAnimation::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 QPauseAnimation_Delete(QPauseAnimation* self) { delete self; }