#include #include #include #include #include #include #include #include "qdialog.h" #include "gen_qdialog.h" #include "_cgo_export.h" QDialog* QDialog_new() { return new QDialog(); } QDialog* QDialog_new2(QWidget* parent) { return new QDialog(parent); } QDialog* QDialog_new3(QWidget* parent, int f) { return new QDialog(parent, static_cast(f)); } QMetaObject* QDialog_MetaObject(const QDialog* self) { return (QMetaObject*) self->metaObject(); } struct miqt_string* QDialog_Tr(const char* s) { QString _ret = QDialog::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* QDialog_TrUtf8(const char* s) { QString _ret = QDialog::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()); } int QDialog_Result(const QDialog* self) { return self->result(); } void QDialog_SetVisible(QDialog* self, bool visible) { self->setVisible(visible); } void QDialog_SetOrientation(QDialog* self, uintptr_t orientation) { self->setOrientation(static_cast(orientation)); } uintptr_t QDialog_Orientation(const QDialog* self) { Qt::Orientation _ret = self->orientation(); return static_cast(_ret); } void QDialog_SetExtension(QDialog* self, QWidget* extension) { self->setExtension(extension); } QWidget* QDialog_Extension(const QDialog* self) { return self->extension(); } QSize* QDialog_SizeHint(const QDialog* self) { QSize _ret = self->sizeHint(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(_ret)); } QSize* QDialog_MinimumSizeHint(const QDialog* self) { QSize _ret = self->minimumSizeHint(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(_ret)); } void QDialog_SetSizeGripEnabled(QDialog* self, bool sizeGripEnabled) { self->setSizeGripEnabled(sizeGripEnabled); } bool QDialog_IsSizeGripEnabled(const QDialog* self) { return self->isSizeGripEnabled(); } void QDialog_SetModal(QDialog* self, bool modal) { self->setModal(modal); } void QDialog_SetResult(QDialog* self, int r) { self->setResult(static_cast(r)); } void QDialog_Finished(QDialog* self, int result) { self->finished(static_cast(result)); } void QDialog_connect_Finished(QDialog* self, void* slot) { QDialog::connect(self, static_cast(&QDialog::finished), self, [=](int result) { int sigval1 = result; miqt_exec_callback_QDialog_Finished(slot, sigval1); }); } void QDialog_Accepted(QDialog* self) { self->accepted(); } void QDialog_connect_Accepted(QDialog* self, void* slot) { QDialog::connect(self, static_cast(&QDialog::accepted), self, [=]() { miqt_exec_callback_QDialog_Accepted(slot); }); } void QDialog_Rejected(QDialog* self) { self->rejected(); } void QDialog_connect_Rejected(QDialog* self, void* slot) { QDialog::connect(self, static_cast(&QDialog::rejected), self, [=]() { miqt_exec_callback_QDialog_Rejected(slot); }); } void QDialog_Open(QDialog* self) { self->open(); } int QDialog_Exec(QDialog* self) { return self->exec(); } void QDialog_Done(QDialog* self, int param1) { self->done(static_cast(param1)); } void QDialog_Accept(QDialog* self) { self->accept(); } void QDialog_Reject(QDialog* self) { self->reject(); } void QDialog_ShowExtension(QDialog* self, bool param1) { self->showExtension(param1); } struct miqt_string* QDialog_Tr2(const char* s, const char* c) { QString _ret = QDialog::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* QDialog_Tr3(const char* s, const char* c, int n) { QString _ret = QDialog::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(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_string* QDialog_TrUtf82(const char* s, const char* c) { QString _ret = QDialog::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* QDialog_TrUtf83(const char* s, const char* c, int n) { QString _ret = QDialog::trUtf8(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(); return miqt_strdup(_b.data(), _b.length()); } void QDialog_Delete(QDialog* self) { delete self; }