#include #include #include #include #include #include #include #include #include #include #include #include #include #include "gen_qinputdevice.h" #ifndef _Bool #define _Bool bool #endif #include "_cgo_export.h" class MiqtVirtualQInputDevice : public virtual QInputDevice { public: MiqtVirtualQInputDevice(): QInputDevice() {}; MiqtVirtualQInputDevice(const QString& name, qint64 systemId, QInputDevice::DeviceType typeVal): QInputDevice(name, systemId, typeVal) {}; MiqtVirtualQInputDevice(QObject* parent): QInputDevice(parent) {}; MiqtVirtualQInputDevice(const QString& name, qint64 systemId, QInputDevice::DeviceType typeVal, const QString& seatName): QInputDevice(name, systemId, typeVal, seatName) {}; MiqtVirtualQInputDevice(const QString& name, qint64 systemId, QInputDevice::DeviceType typeVal, const QString& seatName, QObject* parent): QInputDevice(name, systemId, typeVal, seatName, parent) {}; virtual ~MiqtVirtualQInputDevice() = 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 QInputDevice::event(event); } QEvent* sigval1 = event; bool callback_return_value = miqt_exec_callback_QInputDevice_Event(this, handle__Event, sigval1); return callback_return_value; } // Wrapper to allow calling protected method bool virtualbase_Event(QEvent* event) { return QInputDevice::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 QInputDevice::eventFilter(watched, event); } QObject* sigval1 = watched; QEvent* sigval2 = event; bool callback_return_value = miqt_exec_callback_QInputDevice_EventFilter(this, handle__EventFilter, sigval1, sigval2); return callback_return_value; } // Wrapper to allow calling protected method bool virtualbase_EventFilter(QObject* watched, QEvent* event) { return QInputDevice::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) { QInputDevice::timerEvent(event); return; } QTimerEvent* sigval1 = event; miqt_exec_callback_QInputDevice_TimerEvent(this, handle__TimerEvent, sigval1); } // Wrapper to allow calling protected method void virtualbase_TimerEvent(QTimerEvent* event) { QInputDevice::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) { QInputDevice::childEvent(event); return; } QChildEvent* sigval1 = event; miqt_exec_callback_QInputDevice_ChildEvent(this, handle__ChildEvent, sigval1); } // Wrapper to allow calling protected method void virtualbase_ChildEvent(QChildEvent* event) { QInputDevice::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) { QInputDevice::customEvent(event); return; } QEvent* sigval1 = event; miqt_exec_callback_QInputDevice_CustomEvent(this, handle__CustomEvent, sigval1); } // Wrapper to allow calling protected method void virtualbase_CustomEvent(QEvent* event) { QInputDevice::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) { QInputDevice::connectNotify(signal); return; } const QMetaMethod& signal_ret = signal; // Cast returned reference into pointer QMetaMethod* sigval1 = const_cast(&signal_ret); miqt_exec_callback_QInputDevice_ConnectNotify(this, handle__ConnectNotify, sigval1); } // Wrapper to allow calling protected method void virtualbase_ConnectNotify(QMetaMethod* signal) { QInputDevice::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) { QInputDevice::disconnectNotify(signal); return; } const QMetaMethod& signal_ret = signal; // Cast returned reference into pointer QMetaMethod* sigval1 = const_cast(&signal_ret); miqt_exec_callback_QInputDevice_DisconnectNotify(this, handle__DisconnectNotify, sigval1); } // Wrapper to allow calling protected method void virtualbase_DisconnectNotify(QMetaMethod* signal) { QInputDevice::disconnectNotify(*signal); } }; QInputDevice* QInputDevice_new() { return new MiqtVirtualQInputDevice(); } QInputDevice* QInputDevice_new2(struct miqt_string name, long long systemId, int typeVal) { QString name_QString = QString::fromUtf8(name.data, name.len); return new MiqtVirtualQInputDevice(name_QString, static_cast(systemId), static_cast(typeVal)); } QInputDevice* QInputDevice_new3(QObject* parent) { return new MiqtVirtualQInputDevice(parent); } QInputDevice* QInputDevice_new4(struct miqt_string name, long long systemId, int typeVal, struct miqt_string seatName) { QString name_QString = QString::fromUtf8(name.data, name.len); QString seatName_QString = QString::fromUtf8(seatName.data, seatName.len); return new MiqtVirtualQInputDevice(name_QString, static_cast(systemId), static_cast(typeVal), seatName_QString); } QInputDevice* QInputDevice_new5(struct miqt_string name, long long systemId, int typeVal, struct miqt_string seatName, QObject* parent) { QString name_QString = QString::fromUtf8(name.data, name.len); QString seatName_QString = QString::fromUtf8(seatName.data, seatName.len); return new MiqtVirtualQInputDevice(name_QString, static_cast(systemId), static_cast(typeVal), seatName_QString, parent); } void QInputDevice_virtbase(QInputDevice* src, QObject** outptr_QObject) { *outptr_QObject = static_cast(src); } QMetaObject* QInputDevice_MetaObject(const QInputDevice* self) { return (QMetaObject*) self->metaObject(); } void* QInputDevice_Metacast(QInputDevice* self, const char* param1) { return self->qt_metacast(param1); } struct miqt_string QInputDevice_Tr(const char* s) { QString _ret = QInputDevice::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(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } struct miqt_string QInputDevice_Name(const QInputDevice* self) { QString _ret = self->name(); // 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(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } int QInputDevice_Type(const QInputDevice* self) { QInputDevice::DeviceType _ret = self->type(); return static_cast(_ret); } int QInputDevice_Capabilities(const QInputDevice* self) { QInputDevice::Capabilities _ret = self->capabilities(); return static_cast(_ret); } bool QInputDevice_HasCapability(const QInputDevice* self, int cap) { return self->hasCapability(static_cast(cap)); } long long QInputDevice_SystemId(const QInputDevice* self) { qint64 _ret = self->systemId(); return static_cast(_ret); } struct miqt_string QInputDevice_SeatName(const QInputDevice* self) { QString _ret = self->seatName(); // 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(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } QRect* QInputDevice_AvailableVirtualGeometry(const QInputDevice* self) { return new QRect(self->availableVirtualGeometry()); } struct miqt_array /* of struct miqt_string */ QInputDevice_SeatNames() { QStringList _ret = QInputDevice::seatNames(); // Convert QList<> from C++ memory to manually-managed C memory struct miqt_string* _arr = static_cast(malloc(sizeof(struct miqt_string) * _ret.length())); for (size_t i = 0, e = _ret.length(); i < e; ++i) { QString _lv_ret = _ret[i]; // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _lv_b = _lv_ret.toUtf8(); struct miqt_string _lv_ms; _lv_ms.len = _lv_b.length(); _lv_ms.data = static_cast(malloc(_lv_ms.len)); memcpy(_lv_ms.data, _lv_b.data(), _lv_ms.len); _arr[i] = _lv_ms; } struct miqt_array _out; _out.len = _ret.length(); _out.data = static_cast(_arr); return _out; } struct miqt_array /* of QInputDevice* */ QInputDevice_Devices() { QList _ret = QInputDevice::devices(); // Convert QList<> from C++ memory to manually-managed C memory QInputDevice** _arr = static_cast(malloc(sizeof(QInputDevice*) * _ret.length())); for (size_t i = 0, e = _ret.length(); i < e; ++i) { _arr[i] = (QInputDevice*) _ret[i]; } struct miqt_array _out; _out.len = _ret.length(); _out.data = static_cast(_arr); return _out; } QInputDevice* QInputDevice_PrimaryKeyboard() { return (QInputDevice*) QInputDevice::primaryKeyboard(); } bool QInputDevice_OperatorEqual(const QInputDevice* self, QInputDevice* other) { return (*self == *other); } void QInputDevice_AvailableVirtualGeometryChanged(QInputDevice* self, QRect* area) { self->availableVirtualGeometryChanged(*area); } void QInputDevice_connect_AvailableVirtualGeometryChanged(QInputDevice* self, intptr_t slot) { MiqtVirtualQInputDevice::connect(self, static_cast(&QInputDevice::availableVirtualGeometryChanged), self, [=](QRect area) { QRect* sigval1 = new QRect(area); miqt_exec_callback_QInputDevice_AvailableVirtualGeometryChanged(slot, sigval1); }); } struct miqt_string QInputDevice_Tr2(const char* s, const char* c) { QString _ret = QInputDevice::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(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } struct miqt_string QInputDevice_Tr3(const char* s, const char* c, int n) { QString _ret = QInputDevice::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(); struct miqt_string _ms; _ms.len = _b.length(); _ms.data = static_cast(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } QInputDevice* QInputDevice_PrimaryKeyboard1(struct miqt_string seatName) { QString seatName_QString = QString::fromUtf8(seatName.data, seatName.len); return (QInputDevice*) QInputDevice::primaryKeyboard(seatName_QString); } void QInputDevice_override_virtual_Event(void* self, intptr_t slot) { dynamic_cast( (QInputDevice*)(self) )->handle__Event = slot; } bool QInputDevice_virtualbase_Event(void* self, QEvent* event) { return ( (MiqtVirtualQInputDevice*)(self) )->virtualbase_Event(event); } void QInputDevice_override_virtual_EventFilter(void* self, intptr_t slot) { dynamic_cast( (QInputDevice*)(self) )->handle__EventFilter = slot; } bool QInputDevice_virtualbase_EventFilter(void* self, QObject* watched, QEvent* event) { return ( (MiqtVirtualQInputDevice*)(self) )->virtualbase_EventFilter(watched, event); } void QInputDevice_override_virtual_TimerEvent(void* self, intptr_t slot) { dynamic_cast( (QInputDevice*)(self) )->handle__TimerEvent = slot; } void QInputDevice_virtualbase_TimerEvent(void* self, QTimerEvent* event) { ( (MiqtVirtualQInputDevice*)(self) )->virtualbase_TimerEvent(event); } void QInputDevice_override_virtual_ChildEvent(void* self, intptr_t slot) { dynamic_cast( (QInputDevice*)(self) )->handle__ChildEvent = slot; } void QInputDevice_virtualbase_ChildEvent(void* self, QChildEvent* event) { ( (MiqtVirtualQInputDevice*)(self) )->virtualbase_ChildEvent(event); } void QInputDevice_override_virtual_CustomEvent(void* self, intptr_t slot) { dynamic_cast( (QInputDevice*)(self) )->handle__CustomEvent = slot; } void QInputDevice_virtualbase_CustomEvent(void* self, QEvent* event) { ( (MiqtVirtualQInputDevice*)(self) )->virtualbase_CustomEvent(event); } void QInputDevice_override_virtual_ConnectNotify(void* self, intptr_t slot) { dynamic_cast( (QInputDevice*)(self) )->handle__ConnectNotify = slot; } void QInputDevice_virtualbase_ConnectNotify(void* self, QMetaMethod* signal) { ( (MiqtVirtualQInputDevice*)(self) )->virtualbase_ConnectNotify(signal); } void QInputDevice_override_virtual_DisconnectNotify(void* self, intptr_t slot) { dynamic_cast( (QInputDevice*)(self) )->handle__DisconnectNotify = slot; } void QInputDevice_virtualbase_DisconnectNotify(void* self, QMetaMethod* signal) { ( (MiqtVirtualQInputDevice*)(self) )->virtualbase_DisconnectNotify(signal); } void QInputDevice_Delete(QInputDevice* self, bool isSubclass) { if (isSubclass) { delete dynamic_cast( self ); } else { delete self; } }