mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
101 lines
3.2 KiB
C++
101 lines
3.2 KiB
C++
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QPauseAnimation>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include "qpauseanimation.h"
|
|
|
|
#include "gen_qpauseanimation.h"
|
|
|
|
extern "C" {
|
|
extern void miqt_exec_callback(void* cb, int argc, void* argv);
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
QMetaObject* QPauseAnimation_MetaObject(const QPauseAnimation* self) {
|
|
return (QMetaObject*) self->metaObject();
|
|
}
|
|
|
|
void QPauseAnimation_Tr(const char* s, char** _out, int* _out_Strlen) {
|
|
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();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QPauseAnimation_TrUtf8(const char* s, char** _out, int* _out_Strlen) {
|
|
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();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
int QPauseAnimation_Duration(const QPauseAnimation* self) {
|
|
return self->duration();
|
|
}
|
|
|
|
void QPauseAnimation_SetDuration(QPauseAnimation* self, int msecs) {
|
|
self->setDuration(static_cast<int>(msecs));
|
|
}
|
|
|
|
void QPauseAnimation_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen) {
|
|
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();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QPauseAnimation_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen) {
|
|
QString ret = QPauseAnimation::tr(s, c, static_cast<int>(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<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QPauseAnimation_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen) {
|
|
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();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QPauseAnimation_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen) {
|
|
QString ret = QPauseAnimation::trUtf8(s, c, static_cast<int>(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<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QPauseAnimation_Delete(QPauseAnimation* self) {
|
|
delete self;
|
|
}
|
|
|