2024-08-25 04:08:24 +00:00
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QPauseAnimation>
|
|
|
|
#include <QString>
|
2024-08-29 07:01:51 +00:00
|
|
|
#include <QByteArray>
|
|
|
|
#include <cstring>
|
2024-10-16 05:07:56 +00:00
|
|
|
#include <qpauseanimation.h>
|
2024-08-29 07:01:51 +00:00
|
|
|
#include "gen_qpauseanimation.h"
|
2024-09-14 22:29:05 +00:00
|
|
|
#include "_cgo_export.h"
|
2024-08-25 04:08:24 +00:00
|
|
|
|
|
|
|
QPauseAnimation* QPauseAnimation_new() {
|
|
|
|
return new QPauseAnimation();
|
|
|
|
}
|
|
|
|
|
|
|
|
QPauseAnimation* QPauseAnimation_new2(int msecs) {
|
|
|
|
return new QPauseAnimation(static_cast<int>(msecs));
|
|
|
|
}
|
|
|
|
|
|
|
|
QPauseAnimation* QPauseAnimation_new3(QObject* parent) {
|
|
|
|
return new QPauseAnimation(parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
QPauseAnimation* QPauseAnimation_new4(int msecs, QObject* parent) {
|
|
|
|
return new QPauseAnimation(static_cast<int>(msecs), parent);
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QPauseAnimation_MetaObject(const QPauseAnimation* self) {
|
|
|
|
return (QMetaObject*) self->metaObject();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QPauseAnimation_Metacast(QPauseAnimation* self, const char* param1) {
|
|
|
|
return self->qt_metacast(param1);
|
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QPauseAnimation_Tr(const char* s) {
|
|
|
|
QString _ret = QPauseAnimation::tr(s);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
return miqt_strdup(_b.data(), _b.length());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QPauseAnimation_TrUtf8(const char* s) {
|
|
|
|
QString _ret = QPauseAnimation::trUtf8(s);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
return miqt_strdup(_b.data(), _b.length());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QPauseAnimation_Duration(const QPauseAnimation* self) {
|
|
|
|
return self->duration();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QPauseAnimation_SetDuration(QPauseAnimation* self, int msecs) {
|
|
|
|
self->setDuration(static_cast<int>(msecs));
|
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QPauseAnimation_Tr2(const char* s, const char* c) {
|
|
|
|
QString _ret = QPauseAnimation::tr(s, c);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
return miqt_strdup(_b.data(), _b.length());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QPauseAnimation_Tr3(const char* s, const char* c, int n) {
|
|
|
|
QString _ret = QPauseAnimation::tr(s, c, static_cast<int>(n));
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
return miqt_strdup(_b.data(), _b.length());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QPauseAnimation_TrUtf82(const char* s, const char* c) {
|
|
|
|
QString _ret = QPauseAnimation::trUtf8(s, c);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
return miqt_strdup(_b.data(), _b.length());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QPauseAnimation_TrUtf83(const char* s, const char* c, int n) {
|
|
|
|
QString _ret = QPauseAnimation::trUtf8(s, c, static_cast<int>(n));
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
|
|
|
return miqt_strdup(_b.data(), _b.length());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QPauseAnimation_Delete(QPauseAnimation* self) {
|
|
|
|
delete self;
|
|
|
|
}
|
|
|
|
|