2024-08-25 04:08:24 +00:00
|
|
|
#include <QLabel>
|
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QProgressBar>
|
|
|
|
#include <QProgressDialog>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QSize>
|
|
|
|
#include <QString>
|
2024-08-29 07:01:51 +00:00
|
|
|
#include <QByteArray>
|
|
|
|
#include <cstring>
|
|
|
|
#include <QWidget>
|
2024-10-16 05:07:56 +00:00
|
|
|
#include <qprogressdialog.h>
|
2024-08-29 07:01:51 +00:00
|
|
|
#include "gen_qprogressdialog.h"
|
2024-09-14 22:29:05 +00:00
|
|
|
#include "_cgo_export.h"
|
2024-08-25 04:08:24 +00:00
|
|
|
|
2024-10-26 00:46:42 +00:00
|
|
|
QProgressDialog* QProgressDialog_new(QWidget* parent) {
|
|
|
|
return new QProgressDialog(parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
QProgressDialog* QProgressDialog_new2() {
|
2024-08-29 07:01:51 +00:00
|
|
|
return new QProgressDialog();
|
|
|
|
}
|
|
|
|
|
2024-10-26 00:46:42 +00:00
|
|
|
QProgressDialog* QProgressDialog_new3(struct miqt_string labelText, struct miqt_string cancelButtonText, int minimum, int maximum) {
|
2024-10-18 23:53:33 +00:00
|
|
|
QString labelText_QString = QString::fromUtf8(labelText.data, labelText.len);
|
|
|
|
QString cancelButtonText_QString = QString::fromUtf8(cancelButtonText.data, cancelButtonText.len);
|
2024-08-29 07:01:51 +00:00
|
|
|
return new QProgressDialog(labelText_QString, cancelButtonText_QString, static_cast<int>(minimum), static_cast<int>(maximum));
|
|
|
|
}
|
|
|
|
|
|
|
|
QProgressDialog* QProgressDialog_new4(QWidget* parent, int flags) {
|
|
|
|
return new QProgressDialog(parent, static_cast<Qt::WindowFlags>(flags));
|
|
|
|
}
|
|
|
|
|
2024-10-18 23:53:33 +00:00
|
|
|
QProgressDialog* QProgressDialog_new5(struct miqt_string labelText, struct miqt_string cancelButtonText, int minimum, int maximum, QWidget* parent) {
|
|
|
|
QString labelText_QString = QString::fromUtf8(labelText.data, labelText.len);
|
|
|
|
QString cancelButtonText_QString = QString::fromUtf8(cancelButtonText.data, cancelButtonText.len);
|
2024-08-29 07:01:51 +00:00
|
|
|
return new QProgressDialog(labelText_QString, cancelButtonText_QString, static_cast<int>(minimum), static_cast<int>(maximum), parent);
|
|
|
|
}
|
|
|
|
|
2024-10-18 23:53:33 +00:00
|
|
|
QProgressDialog* QProgressDialog_new6(struct miqt_string labelText, struct miqt_string cancelButtonText, int minimum, int maximum, QWidget* parent, int flags) {
|
|
|
|
QString labelText_QString = QString::fromUtf8(labelText.data, labelText.len);
|
|
|
|
QString cancelButtonText_QString = QString::fromUtf8(cancelButtonText.data, cancelButtonText.len);
|
2024-08-29 07:01:51 +00:00
|
|
|
return new QProgressDialog(labelText_QString, cancelButtonText_QString, static_cast<int>(minimum), static_cast<int>(maximum), parent, static_cast<Qt::WindowFlags>(flags));
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QProgressDialog_MetaObject(const QProgressDialog* self) {
|
|
|
|
return (QMetaObject*) self->metaObject();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QProgressDialog_Metacast(QProgressDialog* self, const char* param1) {
|
|
|
|
return self->qt_metacast(param1);
|
|
|
|
}
|
|
|
|
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QProgressDialog_Tr(const char* s) {
|
2024-09-14 22:29:05 +00:00
|
|
|
QString _ret = QProgressDialog::tr(s);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
2024-10-18 23:53:33 +00:00
|
|
|
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;
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QProgressDialog_TrUtf8(const char* s) {
|
2024-09-14 22:29:05 +00:00
|
|
|
QString _ret = QProgressDialog::trUtf8(s);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
2024-10-18 23:53:33 +00:00
|
|
|
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;
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QProgressDialog_SetLabel(QProgressDialog* self, QLabel* label) {
|
|
|
|
self->setLabel(label);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QProgressDialog_SetCancelButton(QProgressDialog* self, QPushButton* button) {
|
|
|
|
self->setCancelButton(button);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QProgressDialog_SetBar(QProgressDialog* self, QProgressBar* bar) {
|
|
|
|
self->setBar(bar);
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QProgressDialog_WasCanceled(const QProgressDialog* self) {
|
|
|
|
return self->wasCanceled();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QProgressDialog_Minimum(const QProgressDialog* self) {
|
|
|
|
return self->minimum();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QProgressDialog_Maximum(const QProgressDialog* self) {
|
|
|
|
return self->maximum();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QProgressDialog_Value(const QProgressDialog* self) {
|
|
|
|
return self->value();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QSize* QProgressDialog_SizeHint(const QProgressDialog* self) {
|
2024-09-17 06:29:11 +00:00
|
|
|
return new QSize(self->sizeHint());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QProgressDialog_LabelText(const QProgressDialog* self) {
|
2024-09-14 22:29:05 +00:00
|
|
|
QString _ret = self->labelText();
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
2024-10-18 23:53:33 +00:00
|
|
|
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;
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
int QProgressDialog_MinimumDuration(const QProgressDialog* self) {
|
|
|
|
return self->minimumDuration();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QProgressDialog_SetAutoReset(QProgressDialog* self, bool reset) {
|
|
|
|
self->setAutoReset(reset);
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QProgressDialog_AutoReset(const QProgressDialog* self) {
|
|
|
|
return self->autoReset();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QProgressDialog_SetAutoClose(QProgressDialog* self, bool close) {
|
|
|
|
self->setAutoClose(close);
|
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QProgressDialog_AutoClose(const QProgressDialog* self) {
|
|
|
|
return self->autoClose();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QProgressDialog_Cancel(QProgressDialog* self) {
|
|
|
|
self->cancel();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QProgressDialog_Reset(QProgressDialog* self) {
|
|
|
|
self->reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QProgressDialog_SetMaximum(QProgressDialog* self, int maximum) {
|
|
|
|
self->setMaximum(static_cast<int>(maximum));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QProgressDialog_SetMinimum(QProgressDialog* self, int minimum) {
|
|
|
|
self->setMinimum(static_cast<int>(minimum));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QProgressDialog_SetRange(QProgressDialog* self, int minimum, int maximum) {
|
|
|
|
self->setRange(static_cast<int>(minimum), static_cast<int>(maximum));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QProgressDialog_SetValue(QProgressDialog* self, int progress) {
|
|
|
|
self->setValue(static_cast<int>(progress));
|
|
|
|
}
|
|
|
|
|
2024-10-18 23:53:33 +00:00
|
|
|
void QProgressDialog_SetLabelText(QProgressDialog* self, struct miqt_string text) {
|
|
|
|
QString text_QString = QString::fromUtf8(text.data, text.len);
|
2024-08-25 04:08:24 +00:00
|
|
|
self->setLabelText(text_QString);
|
|
|
|
}
|
|
|
|
|
2024-10-18 23:53:33 +00:00
|
|
|
void QProgressDialog_SetCancelButtonText(QProgressDialog* self, struct miqt_string text) {
|
|
|
|
QString text_QString = QString::fromUtf8(text.data, text.len);
|
2024-08-25 04:08:24 +00:00
|
|
|
self->setCancelButtonText(text_QString);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QProgressDialog_SetMinimumDuration(QProgressDialog* self, int ms) {
|
|
|
|
self->setMinimumDuration(static_cast<int>(ms));
|
|
|
|
}
|
|
|
|
|
|
|
|
void QProgressDialog_Canceled(QProgressDialog* self) {
|
|
|
|
self->canceled();
|
|
|
|
}
|
|
|
|
|
2024-10-13 06:06:06 +00:00
|
|
|
void QProgressDialog_connect_Canceled(QProgressDialog* self, intptr_t slot) {
|
2024-08-25 04:08:24 +00:00
|
|
|
QProgressDialog::connect(self, static_cast<void (QProgressDialog::*)()>(&QProgressDialog::canceled), self, [=]() {
|
2024-09-14 22:29:05 +00:00
|
|
|
miqt_exec_callback_QProgressDialog_Canceled(slot);
|
2024-08-25 04:08:24 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QProgressDialog_Tr2(const char* s, const char* c) {
|
2024-09-14 22:29:05 +00:00
|
|
|
QString _ret = QProgressDialog::tr(s, c);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
2024-10-18 23:53:33 +00:00
|
|
|
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;
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QProgressDialog_Tr3(const char* s, const char* c, int n) {
|
2024-09-14 22:29:05 +00:00
|
|
|
QString _ret = QProgressDialog::tr(s, c, static_cast<int>(n));
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
2024-10-18 23:53:33 +00:00
|
|
|
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;
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QProgressDialog_TrUtf82(const char* s, const char* c) {
|
2024-09-14 22:29:05 +00:00
|
|
|
QString _ret = QProgressDialog::trUtf8(s, c);
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
2024-10-18 23:53:33 +00:00
|
|
|
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;
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QProgressDialog_TrUtf83(const char* s, const char* c, int n) {
|
2024-09-14 22:29:05 +00:00
|
|
|
QString _ret = QProgressDialog::trUtf8(s, c, static_cast<int>(n));
|
2024-08-25 04:08:24 +00:00
|
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
2024-09-14 22:29:05 +00:00
|
|
|
QByteArray _b = _ret.toUtf8();
|
2024-10-18 23:53:33 +00:00
|
|
|
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;
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QProgressDialog_Delete(QProgressDialog* self) {
|
|
|
|
delete self;
|
|
|
|
}
|
|
|
|
|