mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
425 lines
13 KiB
C++
425 lines
13 KiB
C++
#include <QChildEvent>
|
|
#include <QEvent>
|
|
#include <QMap>
|
|
#include <QMetaMethod>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QTimerEvent>
|
|
#include <QWebChannel>
|
|
#include <QWebChannelAbstractTransport>
|
|
#include <qwebchannel.h>
|
|
#include "gen_qwebchannel.h"
|
|
|
|
#ifndef _Bool
|
|
#define _Bool bool
|
|
#endif
|
|
#include "_cgo_export.h"
|
|
|
|
class MiqtVirtualQWebChannel : public virtual QWebChannel {
|
|
public:
|
|
|
|
MiqtVirtualQWebChannel(): QWebChannel() {};
|
|
MiqtVirtualQWebChannel(QObject* parent): QWebChannel(parent) {};
|
|
|
|
virtual ~MiqtVirtualQWebChannel() = 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 QWebChannel::event(event);
|
|
}
|
|
|
|
QEvent* sigval1 = event;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QWebChannel_Event(this, handle__Event, sigval1);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_Event(QEvent* event) {
|
|
|
|
return QWebChannel::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 QWebChannel::eventFilter(watched, event);
|
|
}
|
|
|
|
QObject* sigval1 = watched;
|
|
QEvent* sigval2 = event;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QWebChannel_EventFilter(this, handle__EventFilter, sigval1, sigval2);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_EventFilter(QObject* watched, QEvent* event) {
|
|
|
|
return QWebChannel::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) {
|
|
QWebChannel::timerEvent(event);
|
|
return;
|
|
}
|
|
|
|
QTimerEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QWebChannel_TimerEvent(this, handle__TimerEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_TimerEvent(QTimerEvent* event) {
|
|
|
|
QWebChannel::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) {
|
|
QWebChannel::childEvent(event);
|
|
return;
|
|
}
|
|
|
|
QChildEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QWebChannel_ChildEvent(this, handle__ChildEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_ChildEvent(QChildEvent* event) {
|
|
|
|
QWebChannel::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) {
|
|
QWebChannel::customEvent(event);
|
|
return;
|
|
}
|
|
|
|
QEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QWebChannel_CustomEvent(this, handle__CustomEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_CustomEvent(QEvent* event) {
|
|
|
|
QWebChannel::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) {
|
|
QWebChannel::connectNotify(signal);
|
|
return;
|
|
}
|
|
|
|
const QMetaMethod& signal_ret = signal;
|
|
// Cast returned reference into pointer
|
|
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
|
|
|
|
miqt_exec_callback_QWebChannel_ConnectNotify(this, handle__ConnectNotify, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_ConnectNotify(QMetaMethod* signal) {
|
|
|
|
QWebChannel::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) {
|
|
QWebChannel::disconnectNotify(signal);
|
|
return;
|
|
}
|
|
|
|
const QMetaMethod& signal_ret = signal;
|
|
// Cast returned reference into pointer
|
|
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
|
|
|
|
miqt_exec_callback_QWebChannel_DisconnectNotify(this, handle__DisconnectNotify, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_DisconnectNotify(QMetaMethod* signal) {
|
|
|
|
QWebChannel::disconnectNotify(*signal);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
QWebChannel* QWebChannel_new() {
|
|
return new MiqtVirtualQWebChannel();
|
|
}
|
|
|
|
QWebChannel* QWebChannel_new2(QObject* parent) {
|
|
return new MiqtVirtualQWebChannel(parent);
|
|
}
|
|
|
|
void QWebChannel_virtbase(QWebChannel* src, QObject** outptr_QObject) {
|
|
*outptr_QObject = static_cast<QObject*>(src);
|
|
}
|
|
|
|
QMetaObject* QWebChannel_MetaObject(const QWebChannel* self) {
|
|
return (QMetaObject*) self->metaObject();
|
|
}
|
|
|
|
void* QWebChannel_Metacast(QWebChannel* self, const char* param1) {
|
|
return self->qt_metacast(param1);
|
|
}
|
|
|
|
struct miqt_string QWebChannel_Tr(const char* s) {
|
|
QString _ret = QWebChannel::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;
|
|
}
|
|
|
|
struct miqt_string QWebChannel_TrUtf8(const char* s) {
|
|
QString _ret = QWebChannel::trUtf8(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;
|
|
}
|
|
|
|
void QWebChannel_RegisterObjects(QWebChannel* self, struct miqt_map /* of struct miqt_string to QObject* */ objects) {
|
|
QHash<QString, QObject *> objects_QMap;
|
|
objects_QMap.reserve(objects.len);
|
|
struct miqt_string* objects_karr = static_cast<struct miqt_string*>(objects.keys);
|
|
QObject** objects_varr = static_cast<QObject**>(objects.values);
|
|
for(size_t i = 0; i < objects.len; ++i) {
|
|
QString objects_karr_i_QString = QString::fromUtf8(objects_karr[i].data, objects_karr[i].len);
|
|
objects_QMap[objects_karr_i_QString] = objects_varr[i];
|
|
}
|
|
self->registerObjects(objects_QMap);
|
|
}
|
|
|
|
struct miqt_map /* of struct miqt_string to QObject* */ QWebChannel_RegisteredObjects(const QWebChannel* self) {
|
|
QHash<QString, QObject *> _ret = self->registeredObjects();
|
|
// Convert QMap<> from C++ memory to manually-managed C memory
|
|
struct miqt_string* _karr = static_cast<struct miqt_string*>(malloc(sizeof(struct miqt_string) * _ret.size()));
|
|
QObject** _varr = static_cast<QObject**>(malloc(sizeof(QObject*) * _ret.size()));
|
|
int _ctr = 0;
|
|
for (auto _itr = _ret.keyValueBegin(); _itr != _ret.keyValueEnd(); ++_itr) {
|
|
QString _hashkey_ret = _itr->first;
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _hashkey_b = _hashkey_ret.toUtf8();
|
|
struct miqt_string _hashkey_ms;
|
|
_hashkey_ms.len = _hashkey_b.length();
|
|
_hashkey_ms.data = static_cast<char*>(malloc(_hashkey_ms.len));
|
|
memcpy(_hashkey_ms.data, _hashkey_b.data(), _hashkey_ms.len);
|
|
_karr[_ctr] = _hashkey_ms;
|
|
_varr[_ctr] = _itr->second;
|
|
_ctr++;
|
|
}
|
|
struct miqt_map _out;
|
|
_out.len = _ret.size();
|
|
_out.keys = static_cast<void*>(_karr);
|
|
_out.values = static_cast<void*>(_varr);
|
|
return _out;
|
|
}
|
|
|
|
void QWebChannel_RegisterObject(QWebChannel* self, struct miqt_string id, QObject* object) {
|
|
QString id_QString = QString::fromUtf8(id.data, id.len);
|
|
self->registerObject(id_QString, object);
|
|
}
|
|
|
|
void QWebChannel_DeregisterObject(QWebChannel* self, QObject* object) {
|
|
self->deregisterObject(object);
|
|
}
|
|
|
|
bool QWebChannel_BlockUpdates(const QWebChannel* self) {
|
|
return self->blockUpdates();
|
|
}
|
|
|
|
void QWebChannel_SetBlockUpdates(QWebChannel* self, bool block) {
|
|
self->setBlockUpdates(block);
|
|
}
|
|
|
|
void QWebChannel_BlockUpdatesChanged(QWebChannel* self, bool block) {
|
|
self->blockUpdatesChanged(block);
|
|
}
|
|
|
|
void QWebChannel_connect_BlockUpdatesChanged(QWebChannel* self, intptr_t slot) {
|
|
MiqtVirtualQWebChannel::connect(self, static_cast<void (QWebChannel::*)(bool)>(&QWebChannel::blockUpdatesChanged), self, [=](bool block) {
|
|
bool sigval1 = block;
|
|
miqt_exec_callback_QWebChannel_BlockUpdatesChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QWebChannel_ConnectTo(QWebChannel* self, QWebChannelAbstractTransport* transport) {
|
|
self->connectTo(transport);
|
|
}
|
|
|
|
void QWebChannel_DisconnectFrom(QWebChannel* self, QWebChannelAbstractTransport* transport) {
|
|
self->disconnectFrom(transport);
|
|
}
|
|
|
|
struct miqt_string QWebChannel_Tr2(const char* s, const char* c) {
|
|
QString _ret = QWebChannel::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 QWebChannel_Tr3(const char* s, const char* c, int n) {
|
|
QString _ret = QWebChannel::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;
|
|
}
|
|
|
|
struct miqt_string QWebChannel_TrUtf82(const char* s, const char* c) {
|
|
QString _ret = QWebChannel::trUtf8(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 QWebChannel_TrUtf83(const char* s, const char* c, int n) {
|
|
QString _ret = QWebChannel::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();
|
|
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;
|
|
}
|
|
|
|
void QWebChannel_override_virtual_Event(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQWebChannel*>( (QWebChannel*)(self) )->handle__Event = slot;
|
|
}
|
|
|
|
bool QWebChannel_virtualbase_Event(void* self, QEvent* event) {
|
|
return ( (MiqtVirtualQWebChannel*)(self) )->virtualbase_Event(event);
|
|
}
|
|
|
|
void QWebChannel_override_virtual_EventFilter(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQWebChannel*>( (QWebChannel*)(self) )->handle__EventFilter = slot;
|
|
}
|
|
|
|
bool QWebChannel_virtualbase_EventFilter(void* self, QObject* watched, QEvent* event) {
|
|
return ( (MiqtVirtualQWebChannel*)(self) )->virtualbase_EventFilter(watched, event);
|
|
}
|
|
|
|
void QWebChannel_override_virtual_TimerEvent(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQWebChannel*>( (QWebChannel*)(self) )->handle__TimerEvent = slot;
|
|
}
|
|
|
|
void QWebChannel_virtualbase_TimerEvent(void* self, QTimerEvent* event) {
|
|
( (MiqtVirtualQWebChannel*)(self) )->virtualbase_TimerEvent(event);
|
|
}
|
|
|
|
void QWebChannel_override_virtual_ChildEvent(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQWebChannel*>( (QWebChannel*)(self) )->handle__ChildEvent = slot;
|
|
}
|
|
|
|
void QWebChannel_virtualbase_ChildEvent(void* self, QChildEvent* event) {
|
|
( (MiqtVirtualQWebChannel*)(self) )->virtualbase_ChildEvent(event);
|
|
}
|
|
|
|
void QWebChannel_override_virtual_CustomEvent(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQWebChannel*>( (QWebChannel*)(self) )->handle__CustomEvent = slot;
|
|
}
|
|
|
|
void QWebChannel_virtualbase_CustomEvent(void* self, QEvent* event) {
|
|
( (MiqtVirtualQWebChannel*)(self) )->virtualbase_CustomEvent(event);
|
|
}
|
|
|
|
void QWebChannel_override_virtual_ConnectNotify(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQWebChannel*>( (QWebChannel*)(self) )->handle__ConnectNotify = slot;
|
|
}
|
|
|
|
void QWebChannel_virtualbase_ConnectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQWebChannel*)(self) )->virtualbase_ConnectNotify(signal);
|
|
}
|
|
|
|
void QWebChannel_override_virtual_DisconnectNotify(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQWebChannel*>( (QWebChannel*)(self) )->handle__DisconnectNotify = slot;
|
|
}
|
|
|
|
void QWebChannel_virtualbase_DisconnectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQWebChannel*)(self) )->virtualbase_DisconnectNotify(signal);
|
|
}
|
|
|
|
void QWebChannel_Delete(QWebChannel* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<MiqtVirtualQWebChannel*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|