mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
136 lines
3.7 KiB
C++
136 lines
3.7 KiB
C++
#include <QEvent>
|
|
#include <QEventLoop>
|
|
#include <QEventLoopLocker>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QThread>
|
|
#include "qeventloop.h"
|
|
#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<QEventLoop::ProcessEventsFlags>(flags), static_cast<int>(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<int>(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<int>(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<QEventLoop::ProcessEventsFlags>(flags));
|
|
}
|
|
|
|
int QEventLoop_Exec1(QEventLoop* self, int flags) {
|
|
return self->exec(static_cast<QEventLoop::ProcessEventsFlags>(flags));
|
|
}
|
|
|
|
void QEventLoop_Exit1(QEventLoop* self, int returnCode) {
|
|
self->exit(static_cast<int>(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;
|
|
}
|
|
|