#include #include #include #include #include #include #include #include #include #include #include "gen_qeventloop.h" #include "_cgo_export.h" QEventLoop* QEventLoop_new() { return new QEventLoop(); } QEventLoop* QEventLoop_new2(QObject* parent) { return new QEventLoop(parent); } QMetaObject* QEventLoop_MetaObject(const QEventLoop* self) { return (QMetaObject*) self->metaObject(); } void* QEventLoop_Metacast(QEventLoop* self, const char* param1) { return self->qt_metacast(param1); } struct miqt_string* QEventLoop_Tr(const char* s) { QString _ret = QEventLoop::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* QEventLoop_TrUtf8(const char* s) { QString _ret = QEventLoop::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()); } bool QEventLoop_ProcessEvents(QEventLoop* self) { return self->processEvents(); } void QEventLoop_ProcessEvents2(QEventLoop* self, int flags, int maximumTime) { self->processEvents(static_cast(flags), static_cast(maximumTime)); } int QEventLoop_Exec(QEventLoop* self) { return self->exec(); } void QEventLoop_Exit(QEventLoop* self) { self->exit(); } bool QEventLoop_IsRunning(const QEventLoop* self) { return self->isRunning(); } void QEventLoop_WakeUp(QEventLoop* self) { self->wakeUp(); } bool QEventLoop_Event(QEventLoop* self, QEvent* event) { return self->event(event); } void QEventLoop_Quit(QEventLoop* self) { self->quit(); } struct miqt_string* QEventLoop_Tr2(const char* s, const char* c) { QString _ret = QEventLoop::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* QEventLoop_Tr3(const char* s, const char* c, int n) { QString _ret = QEventLoop::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* QEventLoop_TrUtf82(const char* s, const char* c) { QString _ret = QEventLoop::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* QEventLoop_TrUtf83(const char* s, const char* c, int n) { QString _ret = QEventLoop::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()); } bool QEventLoop_ProcessEvents1(QEventLoop* self, int flags) { return self->processEvents(static_cast(flags)); } int QEventLoop_Exec1(QEventLoop* self, int flags) { return self->exec(static_cast(flags)); } void QEventLoop_Exit1(QEventLoop* self, int returnCode) { self->exit(static_cast(returnCode)); } void QEventLoop_Delete(QEventLoop* self) { delete self; } QEventLoopLocker* QEventLoopLocker_new() { return new QEventLoopLocker(); } QEventLoopLocker* QEventLoopLocker_new2(QEventLoop* loop) { return new QEventLoopLocker(loop); } QEventLoopLocker* QEventLoopLocker_new3(QThread* thread) { return new QEventLoopLocker(thread); } void QEventLoopLocker_Delete(QEventLoopLocker* self) { delete self; }