mirror of
https://github.com/mappu/miqt.git
synced 2025-02-01 19:10:21 +00:00
427 lines
11 KiB
C++
427 lines
11 KiB
C++
#include <QChildEvent>
|
|
#include <QEvent>
|
|
#include <QEventLoop>
|
|
#include <QEventLoopLocker>
|
|
#include <QMetaMethod>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QThread>
|
|
#include <QTimerEvent>
|
|
#include <qeventloop.h>
|
|
#include "gen_qeventloop.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool miqt_exec_callback_QEventLoop_event(QEventLoop*, intptr_t, QEvent*);
|
|
bool miqt_exec_callback_QEventLoop_eventFilter(QEventLoop*, intptr_t, QObject*, QEvent*);
|
|
void miqt_exec_callback_QEventLoop_timerEvent(QEventLoop*, intptr_t, QTimerEvent*);
|
|
void miqt_exec_callback_QEventLoop_childEvent(QEventLoop*, intptr_t, QChildEvent*);
|
|
void miqt_exec_callback_QEventLoop_customEvent(QEventLoop*, intptr_t, QEvent*);
|
|
void miqt_exec_callback_QEventLoop_connectNotify(QEventLoop*, intptr_t, QMetaMethod*);
|
|
void miqt_exec_callback_QEventLoop_disconnectNotify(QEventLoop*, intptr_t, QMetaMethod*);
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
class MiqtVirtualQEventLoop final : public QEventLoop {
|
|
public:
|
|
|
|
MiqtVirtualQEventLoop(): QEventLoop() {};
|
|
MiqtVirtualQEventLoop(QObject* parent): QEventLoop(parent) {};
|
|
|
|
virtual ~MiqtVirtualQEventLoop() override = default;
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__event = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual bool event(QEvent* event) override {
|
|
if (handle__event == 0) {
|
|
return QEventLoop::event(event);
|
|
}
|
|
|
|
QEvent* sigval1 = event;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QEventLoop_event(this, handle__event, sigval1);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_event(QEvent* event) {
|
|
|
|
return QEventLoop::event(event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__eventFilter = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual bool eventFilter(QObject* watched, QEvent* event) override {
|
|
if (handle__eventFilter == 0) {
|
|
return QEventLoop::eventFilter(watched, event);
|
|
}
|
|
|
|
QObject* sigval1 = watched;
|
|
QEvent* sigval2 = event;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QEventLoop_eventFilter(this, handle__eventFilter, sigval1, sigval2);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_eventFilter(QObject* watched, QEvent* event) {
|
|
|
|
return QEventLoop::eventFilter(watched, event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__timerEvent = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void timerEvent(QTimerEvent* event) override {
|
|
if (handle__timerEvent == 0) {
|
|
QEventLoop::timerEvent(event);
|
|
return;
|
|
}
|
|
|
|
QTimerEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QEventLoop_timerEvent(this, handle__timerEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_timerEvent(QTimerEvent* event) {
|
|
|
|
QEventLoop::timerEvent(event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__childEvent = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void childEvent(QChildEvent* event) override {
|
|
if (handle__childEvent == 0) {
|
|
QEventLoop::childEvent(event);
|
|
return;
|
|
}
|
|
|
|
QChildEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QEventLoop_childEvent(this, handle__childEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_childEvent(QChildEvent* event) {
|
|
|
|
QEventLoop::childEvent(event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__customEvent = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void customEvent(QEvent* event) override {
|
|
if (handle__customEvent == 0) {
|
|
QEventLoop::customEvent(event);
|
|
return;
|
|
}
|
|
|
|
QEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QEventLoop_customEvent(this, handle__customEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_customEvent(QEvent* event) {
|
|
|
|
QEventLoop::customEvent(event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__connectNotify = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void connectNotify(const QMetaMethod& signal) override {
|
|
if (handle__connectNotify == 0) {
|
|
QEventLoop::connectNotify(signal);
|
|
return;
|
|
}
|
|
|
|
const QMetaMethod& signal_ret = signal;
|
|
// Cast returned reference into pointer
|
|
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
|
|
|
|
miqt_exec_callback_QEventLoop_connectNotify(this, handle__connectNotify, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_connectNotify(QMetaMethod* signal) {
|
|
|
|
QEventLoop::connectNotify(*signal);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__disconnectNotify = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void disconnectNotify(const QMetaMethod& signal) override {
|
|
if (handle__disconnectNotify == 0) {
|
|
QEventLoop::disconnectNotify(signal);
|
|
return;
|
|
}
|
|
|
|
const QMetaMethod& signal_ret = signal;
|
|
// Cast returned reference into pointer
|
|
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
|
|
|
|
miqt_exec_callback_QEventLoop_disconnectNotify(this, handle__disconnectNotify, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_disconnectNotify(QMetaMethod* signal) {
|
|
|
|
QEventLoop::disconnectNotify(*signal);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
QEventLoop* QEventLoop_new() {
|
|
return new MiqtVirtualQEventLoop();
|
|
}
|
|
|
|
QEventLoop* QEventLoop_new2(QObject* parent) {
|
|
return new MiqtVirtualQEventLoop(parent);
|
|
}
|
|
|
|
void QEventLoop_virtbase(QEventLoop* src, QObject** outptr_QObject) {
|
|
*outptr_QObject = static_cast<QObject*>(src);
|
|
}
|
|
|
|
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();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
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();
|
|
}
|
|
|
|
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_exit(QEventLoop* self) {
|
|
self->exit();
|
|
}
|
|
|
|
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();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
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();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
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));
|
|
}
|
|
|
|
bool QEventLoop_override_virtual_event(void* self, intptr_t slot) {
|
|
MiqtVirtualQEventLoop* self_cast = dynamic_cast<MiqtVirtualQEventLoop*>( (QEventLoop*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__event = slot;
|
|
return true;
|
|
}
|
|
|
|
bool QEventLoop_virtualbase_event(void* self, QEvent* event) {
|
|
return ( (MiqtVirtualQEventLoop*)(self) )->virtualbase_event(event);
|
|
}
|
|
|
|
bool QEventLoop_override_virtual_eventFilter(void* self, intptr_t slot) {
|
|
MiqtVirtualQEventLoop* self_cast = dynamic_cast<MiqtVirtualQEventLoop*>( (QEventLoop*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__eventFilter = slot;
|
|
return true;
|
|
}
|
|
|
|
bool QEventLoop_virtualbase_eventFilter(void* self, QObject* watched, QEvent* event) {
|
|
return ( (MiqtVirtualQEventLoop*)(self) )->virtualbase_eventFilter(watched, event);
|
|
}
|
|
|
|
bool QEventLoop_override_virtual_timerEvent(void* self, intptr_t slot) {
|
|
MiqtVirtualQEventLoop* self_cast = dynamic_cast<MiqtVirtualQEventLoop*>( (QEventLoop*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__timerEvent = slot;
|
|
return true;
|
|
}
|
|
|
|
void QEventLoop_virtualbase_timerEvent(void* self, QTimerEvent* event) {
|
|
( (MiqtVirtualQEventLoop*)(self) )->virtualbase_timerEvent(event);
|
|
}
|
|
|
|
bool QEventLoop_override_virtual_childEvent(void* self, intptr_t slot) {
|
|
MiqtVirtualQEventLoop* self_cast = dynamic_cast<MiqtVirtualQEventLoop*>( (QEventLoop*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__childEvent = slot;
|
|
return true;
|
|
}
|
|
|
|
void QEventLoop_virtualbase_childEvent(void* self, QChildEvent* event) {
|
|
( (MiqtVirtualQEventLoop*)(self) )->virtualbase_childEvent(event);
|
|
}
|
|
|
|
bool QEventLoop_override_virtual_customEvent(void* self, intptr_t slot) {
|
|
MiqtVirtualQEventLoop* self_cast = dynamic_cast<MiqtVirtualQEventLoop*>( (QEventLoop*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__customEvent = slot;
|
|
return true;
|
|
}
|
|
|
|
void QEventLoop_virtualbase_customEvent(void* self, QEvent* event) {
|
|
( (MiqtVirtualQEventLoop*)(self) )->virtualbase_customEvent(event);
|
|
}
|
|
|
|
bool QEventLoop_override_virtual_connectNotify(void* self, intptr_t slot) {
|
|
MiqtVirtualQEventLoop* self_cast = dynamic_cast<MiqtVirtualQEventLoop*>( (QEventLoop*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__connectNotify = slot;
|
|
return true;
|
|
}
|
|
|
|
void QEventLoop_virtualbase_connectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQEventLoop*)(self) )->virtualbase_connectNotify(signal);
|
|
}
|
|
|
|
bool QEventLoop_override_virtual_disconnectNotify(void* self, intptr_t slot) {
|
|
MiqtVirtualQEventLoop* self_cast = dynamic_cast<MiqtVirtualQEventLoop*>( (QEventLoop*)(self) );
|
|
if (self_cast == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
self_cast->handle__disconnectNotify = slot;
|
|
return true;
|
|
}
|
|
|
|
void QEventLoop_virtualbase_disconnectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQEventLoop*)(self) )->virtualbase_disconnectNotify(signal);
|
|
}
|
|
|
|
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;
|
|
}
|
|
|