mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
1082 lines
36 KiB
C++
1082 lines
36 KiB
C++
#include <QChildEvent>
|
|
#include <QDoubleValidator>
|
|
#include <QEvent>
|
|
#include <QIntValidator>
|
|
#include <QLocale>
|
|
#include <QMetaMethod>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QRegularExpression>
|
|
#include <QRegularExpressionValidator>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QTimerEvent>
|
|
#include <QValidator>
|
|
#include <qvalidator.h>
|
|
#include "gen_qvalidator.h"
|
|
|
|
#ifndef _Bool
|
|
#define _Bool bool
|
|
#endif
|
|
#include "_cgo_export.h"
|
|
|
|
class MiqtVirtualQValidator : public virtual QValidator {
|
|
public:
|
|
|
|
MiqtVirtualQValidator(): QValidator() {};
|
|
MiqtVirtualQValidator(QObject* parent): QValidator(parent) {};
|
|
|
|
virtual ~MiqtVirtualQValidator() = default;
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Validate = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual QValidator::State validate(QString& param1, int& param2) const override {
|
|
if (handle__Validate == 0) {
|
|
return (QValidator::State)(0); // Pure virtual, there is no base we can call
|
|
}
|
|
|
|
QString param1_ret = param1;
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray param1_b = param1_ret.toUtf8();
|
|
struct miqt_string param1_ms;
|
|
param1_ms.len = param1_b.length();
|
|
param1_ms.data = static_cast<char*>(malloc(param1_ms.len));
|
|
memcpy(param1_ms.data, param1_b.data(), param1_ms.len);
|
|
struct miqt_string sigval1 = param1_ms;
|
|
int* sigval2 = ¶m2;
|
|
|
|
int callback_return_value = miqt_exec_callback_QValidator_Validate(const_cast<MiqtVirtualQValidator*>(this), handle__Validate, sigval1, sigval2);
|
|
|
|
return static_cast<QValidator::State>(callback_return_value);
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Fixup = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void fixup(QString& param1) const override {
|
|
if (handle__Fixup == 0) {
|
|
QValidator::fixup(param1);
|
|
return;
|
|
}
|
|
|
|
QString param1_ret = param1;
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray param1_b = param1_ret.toUtf8();
|
|
struct miqt_string param1_ms;
|
|
param1_ms.len = param1_b.length();
|
|
param1_ms.data = static_cast<char*>(malloc(param1_ms.len));
|
|
memcpy(param1_ms.data, param1_b.data(), param1_ms.len);
|
|
struct miqt_string sigval1 = param1_ms;
|
|
|
|
miqt_exec_callback_QValidator_Fixup(const_cast<MiqtVirtualQValidator*>(this), handle__Fixup, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_Fixup(struct miqt_string param1) const {
|
|
QString param1_QString = QString::fromUtf8(param1.data, param1.len);
|
|
|
|
QValidator::fixup(param1_QString);
|
|
|
|
}
|
|
|
|
// 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 QValidator::event(event);
|
|
}
|
|
|
|
QEvent* sigval1 = event;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QValidator_Event(this, handle__Event, sigval1);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_Event(QEvent* event) {
|
|
|
|
return QValidator::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 QValidator::eventFilter(watched, event);
|
|
}
|
|
|
|
QObject* sigval1 = watched;
|
|
QEvent* sigval2 = event;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QValidator_EventFilter(this, handle__EventFilter, sigval1, sigval2);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_EventFilter(QObject* watched, QEvent* event) {
|
|
|
|
return QValidator::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) {
|
|
QValidator::timerEvent(event);
|
|
return;
|
|
}
|
|
|
|
QTimerEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QValidator_TimerEvent(this, handle__TimerEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_TimerEvent(QTimerEvent* event) {
|
|
|
|
QValidator::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) {
|
|
QValidator::childEvent(event);
|
|
return;
|
|
}
|
|
|
|
QChildEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QValidator_ChildEvent(this, handle__ChildEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_ChildEvent(QChildEvent* event) {
|
|
|
|
QValidator::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) {
|
|
QValidator::customEvent(event);
|
|
return;
|
|
}
|
|
|
|
QEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QValidator_CustomEvent(this, handle__CustomEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_CustomEvent(QEvent* event) {
|
|
|
|
QValidator::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) {
|
|
QValidator::connectNotify(signal);
|
|
return;
|
|
}
|
|
|
|
const QMetaMethod& signal_ret = signal;
|
|
// Cast returned reference into pointer
|
|
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
|
|
|
|
miqt_exec_callback_QValidator_ConnectNotify(this, handle__ConnectNotify, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_ConnectNotify(QMetaMethod* signal) {
|
|
|
|
QValidator::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) {
|
|
QValidator::disconnectNotify(signal);
|
|
return;
|
|
}
|
|
|
|
const QMetaMethod& signal_ret = signal;
|
|
// Cast returned reference into pointer
|
|
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
|
|
|
|
miqt_exec_callback_QValidator_DisconnectNotify(this, handle__DisconnectNotify, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_DisconnectNotify(QMetaMethod* signal) {
|
|
|
|
QValidator::disconnectNotify(*signal);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
QValidator* QValidator_new() {
|
|
return new MiqtVirtualQValidator();
|
|
}
|
|
|
|
QValidator* QValidator_new2(QObject* parent) {
|
|
return new MiqtVirtualQValidator(parent);
|
|
}
|
|
|
|
void QValidator_virtbase(QValidator* src, QObject** outptr_QObject) {
|
|
*outptr_QObject = static_cast<QObject*>(src);
|
|
}
|
|
|
|
QMetaObject* QValidator_MetaObject(const QValidator* self) {
|
|
return (QMetaObject*) self->metaObject();
|
|
}
|
|
|
|
void* QValidator_Metacast(QValidator* self, const char* param1) {
|
|
return self->qt_metacast(param1);
|
|
}
|
|
|
|
struct miqt_string QValidator_Tr(const char* s) {
|
|
QString _ret = QValidator::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;
|
|
}
|
|
|
|
void QValidator_SetLocale(QValidator* self, QLocale* locale) {
|
|
self->setLocale(*locale);
|
|
}
|
|
|
|
QLocale* QValidator_Locale(const QValidator* self) {
|
|
return new QLocale(self->locale());
|
|
}
|
|
|
|
int QValidator_Validate(const QValidator* self, struct miqt_string param1, int* param2) {
|
|
QString param1_QString = QString::fromUtf8(param1.data, param1.len);
|
|
QValidator::State _ret = self->validate(param1_QString, static_cast<int&>(*param2));
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
void QValidator_Fixup(const QValidator* self, struct miqt_string param1) {
|
|
QString param1_QString = QString::fromUtf8(param1.data, param1.len);
|
|
self->fixup(param1_QString);
|
|
}
|
|
|
|
void QValidator_Changed(QValidator* self) {
|
|
self->changed();
|
|
}
|
|
|
|
void QValidator_connect_Changed(QValidator* self, intptr_t slot) {
|
|
MiqtVirtualQValidator::connect(self, static_cast<void (QValidator::*)()>(&QValidator::changed), self, [=]() {
|
|
miqt_exec_callback_QValidator_Changed(slot);
|
|
});
|
|
}
|
|
|
|
struct miqt_string QValidator_Tr2(const char* s, const char* c) {
|
|
QString _ret = QValidator::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 QValidator_Tr3(const char* s, const char* c, int n) {
|
|
QString _ret = QValidator::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;
|
|
}
|
|
|
|
void QValidator_override_virtual_Validate(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQValidator*>( (QValidator*)(self) )->handle__Validate = slot;
|
|
}
|
|
|
|
void QValidator_override_virtual_Fixup(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQValidator*>( (QValidator*)(self) )->handle__Fixup = slot;
|
|
}
|
|
|
|
void QValidator_virtualbase_Fixup(const void* self, struct miqt_string param1) {
|
|
( (const MiqtVirtualQValidator*)(self) )->virtualbase_Fixup(param1);
|
|
}
|
|
|
|
void QValidator_override_virtual_Event(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQValidator*>( (QValidator*)(self) )->handle__Event = slot;
|
|
}
|
|
|
|
bool QValidator_virtualbase_Event(void* self, QEvent* event) {
|
|
return ( (MiqtVirtualQValidator*)(self) )->virtualbase_Event(event);
|
|
}
|
|
|
|
void QValidator_override_virtual_EventFilter(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQValidator*>( (QValidator*)(self) )->handle__EventFilter = slot;
|
|
}
|
|
|
|
bool QValidator_virtualbase_EventFilter(void* self, QObject* watched, QEvent* event) {
|
|
return ( (MiqtVirtualQValidator*)(self) )->virtualbase_EventFilter(watched, event);
|
|
}
|
|
|
|
void QValidator_override_virtual_TimerEvent(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQValidator*>( (QValidator*)(self) )->handle__TimerEvent = slot;
|
|
}
|
|
|
|
void QValidator_virtualbase_TimerEvent(void* self, QTimerEvent* event) {
|
|
( (MiqtVirtualQValidator*)(self) )->virtualbase_TimerEvent(event);
|
|
}
|
|
|
|
void QValidator_override_virtual_ChildEvent(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQValidator*>( (QValidator*)(self) )->handle__ChildEvent = slot;
|
|
}
|
|
|
|
void QValidator_virtualbase_ChildEvent(void* self, QChildEvent* event) {
|
|
( (MiqtVirtualQValidator*)(self) )->virtualbase_ChildEvent(event);
|
|
}
|
|
|
|
void QValidator_override_virtual_CustomEvent(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQValidator*>( (QValidator*)(self) )->handle__CustomEvent = slot;
|
|
}
|
|
|
|
void QValidator_virtualbase_CustomEvent(void* self, QEvent* event) {
|
|
( (MiqtVirtualQValidator*)(self) )->virtualbase_CustomEvent(event);
|
|
}
|
|
|
|
void QValidator_override_virtual_ConnectNotify(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQValidator*>( (QValidator*)(self) )->handle__ConnectNotify = slot;
|
|
}
|
|
|
|
void QValidator_virtualbase_ConnectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQValidator*)(self) )->virtualbase_ConnectNotify(signal);
|
|
}
|
|
|
|
void QValidator_override_virtual_DisconnectNotify(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQValidator*>( (QValidator*)(self) )->handle__DisconnectNotify = slot;
|
|
}
|
|
|
|
void QValidator_virtualbase_DisconnectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQValidator*)(self) )->virtualbase_DisconnectNotify(signal);
|
|
}
|
|
|
|
void QValidator_Delete(QValidator* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<MiqtVirtualQValidator*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|
|
class MiqtVirtualQIntValidator : public virtual QIntValidator {
|
|
public:
|
|
|
|
MiqtVirtualQIntValidator(): QIntValidator() {};
|
|
MiqtVirtualQIntValidator(int bottom, int top): QIntValidator(bottom, top) {};
|
|
MiqtVirtualQIntValidator(QObject* parent): QIntValidator(parent) {};
|
|
MiqtVirtualQIntValidator(int bottom, int top, QObject* parent): QIntValidator(bottom, top, parent) {};
|
|
|
|
virtual ~MiqtVirtualQIntValidator() = default;
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Validate = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual QValidator::State validate(QString& param1, int& param2) const override {
|
|
if (handle__Validate == 0) {
|
|
return QIntValidator::validate(param1, param2);
|
|
}
|
|
|
|
QString param1_ret = param1;
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray param1_b = param1_ret.toUtf8();
|
|
struct miqt_string param1_ms;
|
|
param1_ms.len = param1_b.length();
|
|
param1_ms.data = static_cast<char*>(malloc(param1_ms.len));
|
|
memcpy(param1_ms.data, param1_b.data(), param1_ms.len);
|
|
struct miqt_string sigval1 = param1_ms;
|
|
int* sigval2 = ¶m2;
|
|
|
|
int callback_return_value = miqt_exec_callback_QIntValidator_Validate(const_cast<MiqtVirtualQIntValidator*>(this), handle__Validate, sigval1, sigval2);
|
|
|
|
return static_cast<QValidator::State>(callback_return_value);
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
int virtualbase_Validate(struct miqt_string param1, int* param2) const {
|
|
QString param1_QString = QString::fromUtf8(param1.data, param1.len);
|
|
|
|
QValidator::State _ret = QIntValidator::validate(param1_QString, static_cast<int&>(*param2));
|
|
return static_cast<int>(_ret);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Fixup = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void fixup(QString& input) const override {
|
|
if (handle__Fixup == 0) {
|
|
QIntValidator::fixup(input);
|
|
return;
|
|
}
|
|
|
|
QString input_ret = input;
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray input_b = input_ret.toUtf8();
|
|
struct miqt_string input_ms;
|
|
input_ms.len = input_b.length();
|
|
input_ms.data = static_cast<char*>(malloc(input_ms.len));
|
|
memcpy(input_ms.data, input_b.data(), input_ms.len);
|
|
struct miqt_string sigval1 = input_ms;
|
|
|
|
miqt_exec_callback_QIntValidator_Fixup(const_cast<MiqtVirtualQIntValidator*>(this), handle__Fixup, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_Fixup(struct miqt_string input) const {
|
|
QString input_QString = QString::fromUtf8(input.data, input.len);
|
|
|
|
QIntValidator::fixup(input_QString);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
QIntValidator* QIntValidator_new() {
|
|
return new MiqtVirtualQIntValidator();
|
|
}
|
|
|
|
QIntValidator* QIntValidator_new2(int bottom, int top) {
|
|
return new MiqtVirtualQIntValidator(static_cast<int>(bottom), static_cast<int>(top));
|
|
}
|
|
|
|
QIntValidator* QIntValidator_new3(QObject* parent) {
|
|
return new MiqtVirtualQIntValidator(parent);
|
|
}
|
|
|
|
QIntValidator* QIntValidator_new4(int bottom, int top, QObject* parent) {
|
|
return new MiqtVirtualQIntValidator(static_cast<int>(bottom), static_cast<int>(top), parent);
|
|
}
|
|
|
|
void QIntValidator_virtbase(QIntValidator* src, QValidator** outptr_QValidator) {
|
|
*outptr_QValidator = static_cast<QValidator*>(src);
|
|
}
|
|
|
|
QMetaObject* QIntValidator_MetaObject(const QIntValidator* self) {
|
|
return (QMetaObject*) self->metaObject();
|
|
}
|
|
|
|
void* QIntValidator_Metacast(QIntValidator* self, const char* param1) {
|
|
return self->qt_metacast(param1);
|
|
}
|
|
|
|
struct miqt_string QIntValidator_Tr(const char* s) {
|
|
QString _ret = QIntValidator::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;
|
|
}
|
|
|
|
int QIntValidator_Validate(const QIntValidator* self, struct miqt_string param1, int* param2) {
|
|
QString param1_QString = QString::fromUtf8(param1.data, param1.len);
|
|
QValidator::State _ret = self->validate(param1_QString, static_cast<int&>(*param2));
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
void QIntValidator_Fixup(const QIntValidator* self, struct miqt_string input) {
|
|
QString input_QString = QString::fromUtf8(input.data, input.len);
|
|
self->fixup(input_QString);
|
|
}
|
|
|
|
void QIntValidator_SetBottom(QIntValidator* self, int bottom) {
|
|
self->setBottom(static_cast<int>(bottom));
|
|
}
|
|
|
|
void QIntValidator_SetTop(QIntValidator* self, int top) {
|
|
self->setTop(static_cast<int>(top));
|
|
}
|
|
|
|
void QIntValidator_SetRange(QIntValidator* self, int bottom, int top) {
|
|
self->setRange(static_cast<int>(bottom), static_cast<int>(top));
|
|
}
|
|
|
|
int QIntValidator_Bottom(const QIntValidator* self) {
|
|
return self->bottom();
|
|
}
|
|
|
|
int QIntValidator_Top(const QIntValidator* self) {
|
|
return self->top();
|
|
}
|
|
|
|
void QIntValidator_BottomChanged(QIntValidator* self, int bottom) {
|
|
self->bottomChanged(static_cast<int>(bottom));
|
|
}
|
|
|
|
void QIntValidator_connect_BottomChanged(QIntValidator* self, intptr_t slot) {
|
|
MiqtVirtualQIntValidator::connect(self, static_cast<void (QIntValidator::*)(int)>(&QIntValidator::bottomChanged), self, [=](int bottom) {
|
|
int sigval1 = bottom;
|
|
miqt_exec_callback_QIntValidator_BottomChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QIntValidator_TopChanged(QIntValidator* self, int top) {
|
|
self->topChanged(static_cast<int>(top));
|
|
}
|
|
|
|
void QIntValidator_connect_TopChanged(QIntValidator* self, intptr_t slot) {
|
|
MiqtVirtualQIntValidator::connect(self, static_cast<void (QIntValidator::*)(int)>(&QIntValidator::topChanged), self, [=](int top) {
|
|
int sigval1 = top;
|
|
miqt_exec_callback_QIntValidator_TopChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
struct miqt_string QIntValidator_Tr2(const char* s, const char* c) {
|
|
QString _ret = QIntValidator::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 QIntValidator_Tr3(const char* s, const char* c, int n) {
|
|
QString _ret = QIntValidator::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;
|
|
}
|
|
|
|
void QIntValidator_override_virtual_Validate(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQIntValidator*>( (QIntValidator*)(self) )->handle__Validate = slot;
|
|
}
|
|
|
|
int QIntValidator_virtualbase_Validate(const void* self, struct miqt_string param1, int* param2) {
|
|
return ( (const MiqtVirtualQIntValidator*)(self) )->virtualbase_Validate(param1, param2);
|
|
}
|
|
|
|
void QIntValidator_override_virtual_Fixup(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQIntValidator*>( (QIntValidator*)(self) )->handle__Fixup = slot;
|
|
}
|
|
|
|
void QIntValidator_virtualbase_Fixup(const void* self, struct miqt_string input) {
|
|
( (const MiqtVirtualQIntValidator*)(self) )->virtualbase_Fixup(input);
|
|
}
|
|
|
|
void QIntValidator_Delete(QIntValidator* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<MiqtVirtualQIntValidator*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|
|
class MiqtVirtualQDoubleValidator : public virtual QDoubleValidator {
|
|
public:
|
|
|
|
MiqtVirtualQDoubleValidator(): QDoubleValidator() {};
|
|
MiqtVirtualQDoubleValidator(double bottom, double top, int decimals): QDoubleValidator(bottom, top, decimals) {};
|
|
MiqtVirtualQDoubleValidator(QObject* parent): QDoubleValidator(parent) {};
|
|
MiqtVirtualQDoubleValidator(double bottom, double top, int decimals, QObject* parent): QDoubleValidator(bottom, top, decimals, parent) {};
|
|
|
|
virtual ~MiqtVirtualQDoubleValidator() = default;
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Validate = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual QValidator::State validate(QString& param1, int& param2) const override {
|
|
if (handle__Validate == 0) {
|
|
return QDoubleValidator::validate(param1, param2);
|
|
}
|
|
|
|
QString param1_ret = param1;
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray param1_b = param1_ret.toUtf8();
|
|
struct miqt_string param1_ms;
|
|
param1_ms.len = param1_b.length();
|
|
param1_ms.data = static_cast<char*>(malloc(param1_ms.len));
|
|
memcpy(param1_ms.data, param1_b.data(), param1_ms.len);
|
|
struct miqt_string sigval1 = param1_ms;
|
|
int* sigval2 = ¶m2;
|
|
|
|
int callback_return_value = miqt_exec_callback_QDoubleValidator_Validate(const_cast<MiqtVirtualQDoubleValidator*>(this), handle__Validate, sigval1, sigval2);
|
|
|
|
return static_cast<QValidator::State>(callback_return_value);
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
int virtualbase_Validate(struct miqt_string param1, int* param2) const {
|
|
QString param1_QString = QString::fromUtf8(param1.data, param1.len);
|
|
|
|
QValidator::State _ret = QDoubleValidator::validate(param1_QString, static_cast<int&>(*param2));
|
|
return static_cast<int>(_ret);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Fixup = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void fixup(QString& input) const override {
|
|
if (handle__Fixup == 0) {
|
|
QDoubleValidator::fixup(input);
|
|
return;
|
|
}
|
|
|
|
QString input_ret = input;
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray input_b = input_ret.toUtf8();
|
|
struct miqt_string input_ms;
|
|
input_ms.len = input_b.length();
|
|
input_ms.data = static_cast<char*>(malloc(input_ms.len));
|
|
memcpy(input_ms.data, input_b.data(), input_ms.len);
|
|
struct miqt_string sigval1 = input_ms;
|
|
|
|
miqt_exec_callback_QDoubleValidator_Fixup(const_cast<MiqtVirtualQDoubleValidator*>(this), handle__Fixup, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_Fixup(struct miqt_string input) const {
|
|
QString input_QString = QString::fromUtf8(input.data, input.len);
|
|
|
|
QDoubleValidator::fixup(input_QString);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
QDoubleValidator* QDoubleValidator_new() {
|
|
return new MiqtVirtualQDoubleValidator();
|
|
}
|
|
|
|
QDoubleValidator* QDoubleValidator_new2(double bottom, double top, int decimals) {
|
|
return new MiqtVirtualQDoubleValidator(static_cast<double>(bottom), static_cast<double>(top), static_cast<int>(decimals));
|
|
}
|
|
|
|
QDoubleValidator* QDoubleValidator_new3(QObject* parent) {
|
|
return new MiqtVirtualQDoubleValidator(parent);
|
|
}
|
|
|
|
QDoubleValidator* QDoubleValidator_new4(double bottom, double top, int decimals, QObject* parent) {
|
|
return new MiqtVirtualQDoubleValidator(static_cast<double>(bottom), static_cast<double>(top), static_cast<int>(decimals), parent);
|
|
}
|
|
|
|
void QDoubleValidator_virtbase(QDoubleValidator* src, QValidator** outptr_QValidator) {
|
|
*outptr_QValidator = static_cast<QValidator*>(src);
|
|
}
|
|
|
|
QMetaObject* QDoubleValidator_MetaObject(const QDoubleValidator* self) {
|
|
return (QMetaObject*) self->metaObject();
|
|
}
|
|
|
|
void* QDoubleValidator_Metacast(QDoubleValidator* self, const char* param1) {
|
|
return self->qt_metacast(param1);
|
|
}
|
|
|
|
struct miqt_string QDoubleValidator_Tr(const char* s) {
|
|
QString _ret = QDoubleValidator::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;
|
|
}
|
|
|
|
int QDoubleValidator_Validate(const QDoubleValidator* self, struct miqt_string param1, int* param2) {
|
|
QString param1_QString = QString::fromUtf8(param1.data, param1.len);
|
|
QValidator::State _ret = self->validate(param1_QString, static_cast<int&>(*param2));
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
void QDoubleValidator_Fixup(const QDoubleValidator* self, struct miqt_string input) {
|
|
QString input_QString = QString::fromUtf8(input.data, input.len);
|
|
self->fixup(input_QString);
|
|
}
|
|
|
|
void QDoubleValidator_SetRange(QDoubleValidator* self, double bottom, double top, int decimals) {
|
|
self->setRange(static_cast<double>(bottom), static_cast<double>(top), static_cast<int>(decimals));
|
|
}
|
|
|
|
void QDoubleValidator_SetRange2(QDoubleValidator* self, double bottom, double top) {
|
|
self->setRange(static_cast<double>(bottom), static_cast<double>(top));
|
|
}
|
|
|
|
void QDoubleValidator_SetBottom(QDoubleValidator* self, double bottom) {
|
|
self->setBottom(static_cast<double>(bottom));
|
|
}
|
|
|
|
void QDoubleValidator_SetTop(QDoubleValidator* self, double top) {
|
|
self->setTop(static_cast<double>(top));
|
|
}
|
|
|
|
void QDoubleValidator_SetDecimals(QDoubleValidator* self, int decimals) {
|
|
self->setDecimals(static_cast<int>(decimals));
|
|
}
|
|
|
|
void QDoubleValidator_SetNotation(QDoubleValidator* self, int notation) {
|
|
self->setNotation(static_cast<QDoubleValidator::Notation>(notation));
|
|
}
|
|
|
|
double QDoubleValidator_Bottom(const QDoubleValidator* self) {
|
|
return self->bottom();
|
|
}
|
|
|
|
double QDoubleValidator_Top(const QDoubleValidator* self) {
|
|
return self->top();
|
|
}
|
|
|
|
int QDoubleValidator_Decimals(const QDoubleValidator* self) {
|
|
return self->decimals();
|
|
}
|
|
|
|
int QDoubleValidator_Notation(const QDoubleValidator* self) {
|
|
QDoubleValidator::Notation _ret = self->notation();
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
void QDoubleValidator_BottomChanged(QDoubleValidator* self, double bottom) {
|
|
self->bottomChanged(static_cast<double>(bottom));
|
|
}
|
|
|
|
void QDoubleValidator_connect_BottomChanged(QDoubleValidator* self, intptr_t slot) {
|
|
MiqtVirtualQDoubleValidator::connect(self, static_cast<void (QDoubleValidator::*)(double)>(&QDoubleValidator::bottomChanged), self, [=](double bottom) {
|
|
double sigval1 = bottom;
|
|
miqt_exec_callback_QDoubleValidator_BottomChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QDoubleValidator_TopChanged(QDoubleValidator* self, double top) {
|
|
self->topChanged(static_cast<double>(top));
|
|
}
|
|
|
|
void QDoubleValidator_connect_TopChanged(QDoubleValidator* self, intptr_t slot) {
|
|
MiqtVirtualQDoubleValidator::connect(self, static_cast<void (QDoubleValidator::*)(double)>(&QDoubleValidator::topChanged), self, [=](double top) {
|
|
double sigval1 = top;
|
|
miqt_exec_callback_QDoubleValidator_TopChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QDoubleValidator_DecimalsChanged(QDoubleValidator* self, int decimals) {
|
|
self->decimalsChanged(static_cast<int>(decimals));
|
|
}
|
|
|
|
void QDoubleValidator_connect_DecimalsChanged(QDoubleValidator* self, intptr_t slot) {
|
|
MiqtVirtualQDoubleValidator::connect(self, static_cast<void (QDoubleValidator::*)(int)>(&QDoubleValidator::decimalsChanged), self, [=](int decimals) {
|
|
int sigval1 = decimals;
|
|
miqt_exec_callback_QDoubleValidator_DecimalsChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QDoubleValidator_NotationChanged(QDoubleValidator* self, int notation) {
|
|
self->notationChanged(static_cast<QDoubleValidator::Notation>(notation));
|
|
}
|
|
|
|
void QDoubleValidator_connect_NotationChanged(QDoubleValidator* self, intptr_t slot) {
|
|
MiqtVirtualQDoubleValidator::connect(self, static_cast<void (QDoubleValidator::*)(QDoubleValidator::Notation)>(&QDoubleValidator::notationChanged), self, [=](QDoubleValidator::Notation notation) {
|
|
QDoubleValidator::Notation notation_ret = notation;
|
|
int sigval1 = static_cast<int>(notation_ret);
|
|
miqt_exec_callback_QDoubleValidator_NotationChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
struct miqt_string QDoubleValidator_Tr2(const char* s, const char* c) {
|
|
QString _ret = QDoubleValidator::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 QDoubleValidator_Tr3(const char* s, const char* c, int n) {
|
|
QString _ret = QDoubleValidator::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;
|
|
}
|
|
|
|
void QDoubleValidator_override_virtual_Validate(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQDoubleValidator*>( (QDoubleValidator*)(self) )->handle__Validate = slot;
|
|
}
|
|
|
|
int QDoubleValidator_virtualbase_Validate(const void* self, struct miqt_string param1, int* param2) {
|
|
return ( (const MiqtVirtualQDoubleValidator*)(self) )->virtualbase_Validate(param1, param2);
|
|
}
|
|
|
|
void QDoubleValidator_override_virtual_Fixup(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQDoubleValidator*>( (QDoubleValidator*)(self) )->handle__Fixup = slot;
|
|
}
|
|
|
|
void QDoubleValidator_virtualbase_Fixup(const void* self, struct miqt_string input) {
|
|
( (const MiqtVirtualQDoubleValidator*)(self) )->virtualbase_Fixup(input);
|
|
}
|
|
|
|
void QDoubleValidator_Delete(QDoubleValidator* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<MiqtVirtualQDoubleValidator*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|
|
class MiqtVirtualQRegularExpressionValidator : public virtual QRegularExpressionValidator {
|
|
public:
|
|
|
|
MiqtVirtualQRegularExpressionValidator(): QRegularExpressionValidator() {};
|
|
MiqtVirtualQRegularExpressionValidator(const QRegularExpression& re): QRegularExpressionValidator(re) {};
|
|
MiqtVirtualQRegularExpressionValidator(QObject* parent): QRegularExpressionValidator(parent) {};
|
|
MiqtVirtualQRegularExpressionValidator(const QRegularExpression& re, QObject* parent): QRegularExpressionValidator(re, parent) {};
|
|
|
|
virtual ~MiqtVirtualQRegularExpressionValidator() = default;
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Validate = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual QValidator::State validate(QString& input, int& pos) const override {
|
|
if (handle__Validate == 0) {
|
|
return QRegularExpressionValidator::validate(input, pos);
|
|
}
|
|
|
|
QString input_ret = input;
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray input_b = input_ret.toUtf8();
|
|
struct miqt_string input_ms;
|
|
input_ms.len = input_b.length();
|
|
input_ms.data = static_cast<char*>(malloc(input_ms.len));
|
|
memcpy(input_ms.data, input_b.data(), input_ms.len);
|
|
struct miqt_string sigval1 = input_ms;
|
|
int* sigval2 = &pos;
|
|
|
|
int callback_return_value = miqt_exec_callback_QRegularExpressionValidator_Validate(const_cast<MiqtVirtualQRegularExpressionValidator*>(this), handle__Validate, sigval1, sigval2);
|
|
|
|
return static_cast<QValidator::State>(callback_return_value);
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
int virtualbase_Validate(struct miqt_string input, int* pos) const {
|
|
QString input_QString = QString::fromUtf8(input.data, input.len);
|
|
|
|
QValidator::State _ret = QRegularExpressionValidator::validate(input_QString, static_cast<int&>(*pos));
|
|
return static_cast<int>(_ret);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Fixup = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void fixup(QString& param1) const override {
|
|
if (handle__Fixup == 0) {
|
|
QRegularExpressionValidator::fixup(param1);
|
|
return;
|
|
}
|
|
|
|
QString param1_ret = param1;
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray param1_b = param1_ret.toUtf8();
|
|
struct miqt_string param1_ms;
|
|
param1_ms.len = param1_b.length();
|
|
param1_ms.data = static_cast<char*>(malloc(param1_ms.len));
|
|
memcpy(param1_ms.data, param1_b.data(), param1_ms.len);
|
|
struct miqt_string sigval1 = param1_ms;
|
|
|
|
miqt_exec_callback_QRegularExpressionValidator_Fixup(const_cast<MiqtVirtualQRegularExpressionValidator*>(this), handle__Fixup, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_Fixup(struct miqt_string param1) const {
|
|
QString param1_QString = QString::fromUtf8(param1.data, param1.len);
|
|
|
|
QRegularExpressionValidator::fixup(param1_QString);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
QRegularExpressionValidator* QRegularExpressionValidator_new() {
|
|
return new MiqtVirtualQRegularExpressionValidator();
|
|
}
|
|
|
|
QRegularExpressionValidator* QRegularExpressionValidator_new2(QRegularExpression* re) {
|
|
return new MiqtVirtualQRegularExpressionValidator(*re);
|
|
}
|
|
|
|
QRegularExpressionValidator* QRegularExpressionValidator_new3(QObject* parent) {
|
|
return new MiqtVirtualQRegularExpressionValidator(parent);
|
|
}
|
|
|
|
QRegularExpressionValidator* QRegularExpressionValidator_new4(QRegularExpression* re, QObject* parent) {
|
|
return new MiqtVirtualQRegularExpressionValidator(*re, parent);
|
|
}
|
|
|
|
void QRegularExpressionValidator_virtbase(QRegularExpressionValidator* src, QValidator** outptr_QValidator) {
|
|
*outptr_QValidator = static_cast<QValidator*>(src);
|
|
}
|
|
|
|
QMetaObject* QRegularExpressionValidator_MetaObject(const QRegularExpressionValidator* self) {
|
|
return (QMetaObject*) self->metaObject();
|
|
}
|
|
|
|
void* QRegularExpressionValidator_Metacast(QRegularExpressionValidator* self, const char* param1) {
|
|
return self->qt_metacast(param1);
|
|
}
|
|
|
|
struct miqt_string QRegularExpressionValidator_Tr(const char* s) {
|
|
QString _ret = QRegularExpressionValidator::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;
|
|
}
|
|
|
|
int QRegularExpressionValidator_Validate(const QRegularExpressionValidator* self, struct miqt_string input, int* pos) {
|
|
QString input_QString = QString::fromUtf8(input.data, input.len);
|
|
QValidator::State _ret = self->validate(input_QString, static_cast<int&>(*pos));
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
QRegularExpression* QRegularExpressionValidator_RegularExpression(const QRegularExpressionValidator* self) {
|
|
return new QRegularExpression(self->regularExpression());
|
|
}
|
|
|
|
void QRegularExpressionValidator_SetRegularExpression(QRegularExpressionValidator* self, QRegularExpression* re) {
|
|
self->setRegularExpression(*re);
|
|
}
|
|
|
|
void QRegularExpressionValidator_RegularExpressionChanged(QRegularExpressionValidator* self, QRegularExpression* re) {
|
|
self->regularExpressionChanged(*re);
|
|
}
|
|
|
|
void QRegularExpressionValidator_connect_RegularExpressionChanged(QRegularExpressionValidator* self, intptr_t slot) {
|
|
MiqtVirtualQRegularExpressionValidator::connect(self, static_cast<void (QRegularExpressionValidator::*)(const QRegularExpression&)>(&QRegularExpressionValidator::regularExpressionChanged), self, [=](const QRegularExpression& re) {
|
|
const QRegularExpression& re_ret = re;
|
|
// Cast returned reference into pointer
|
|
QRegularExpression* sigval1 = const_cast<QRegularExpression*>(&re_ret);
|
|
miqt_exec_callback_QRegularExpressionValidator_RegularExpressionChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
struct miqt_string QRegularExpressionValidator_Tr2(const char* s, const char* c) {
|
|
QString _ret = QRegularExpressionValidator::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 QRegularExpressionValidator_Tr3(const char* s, const char* c, int n) {
|
|
QString _ret = QRegularExpressionValidator::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;
|
|
}
|
|
|
|
void QRegularExpressionValidator_override_virtual_Validate(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQRegularExpressionValidator*>( (QRegularExpressionValidator*)(self) )->handle__Validate = slot;
|
|
}
|
|
|
|
int QRegularExpressionValidator_virtualbase_Validate(const void* self, struct miqt_string input, int* pos) {
|
|
return ( (const MiqtVirtualQRegularExpressionValidator*)(self) )->virtualbase_Validate(input, pos);
|
|
}
|
|
|
|
void QRegularExpressionValidator_override_virtual_Fixup(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQRegularExpressionValidator*>( (QRegularExpressionValidator*)(self) )->handle__Fixup = slot;
|
|
}
|
|
|
|
void QRegularExpressionValidator_virtualbase_Fixup(const void* self, struct miqt_string param1) {
|
|
( (const MiqtVirtualQRegularExpressionValidator*)(self) )->virtualbase_Fixup(param1);
|
|
}
|
|
|
|
void QRegularExpressionValidator_Delete(QRegularExpressionValidator* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<MiqtVirtualQRegularExpressionValidator*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|