miqt/qt/gen_qradiobutton.cpp

108 lines
3.6 KiB
C++
Raw Normal View History

#include <QMetaObject>
#include <QRadioButton>
#include <QSize>
#include <QString>
2024-08-29 07:01:51 +00:00
#include <QByteArray>
#include <cstring>
#include <QWidget>
2024-08-29 07:01:51 +00:00
#include "qradiobutton.h"
2024-08-29 07:01:51 +00:00
#include "gen_qradiobutton.h"
extern "C" {
extern void miqt_exec_callback(void* cb, int argc, void* argv);
}
QRadioButton* QRadioButton_new() {
return new QRadioButton();
}
QRadioButton* QRadioButton_new2(const char* text, size_t text_Strlen) {
QString text_QString = QString::fromUtf8(text, text_Strlen);
return new QRadioButton(text_QString);
}
QRadioButton* QRadioButton_new3(QWidget* parent) {
return new QRadioButton(parent);
}
QRadioButton* QRadioButton_new4(const char* text, size_t text_Strlen, QWidget* parent) {
QString text_QString = QString::fromUtf8(text, text_Strlen);
return new QRadioButton(text_QString, parent);
}
QMetaObject* QRadioButton_MetaObject(QRadioButton* self) {
2024-08-29 07:01:51 +00:00
return (QMetaObject*) const_cast<const QRadioButton*>(self)->metaObject();
}
2024-08-29 07:01:51 +00:00
void QRadioButton_Tr(const char* s, char** _out, int* _out_Strlen) {
QString ret = QRadioButton::tr(s);
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray b = ret.toUtf8();
*_out = static_cast<char*>(malloc(b.length()));
memcpy(*_out, b.data(), b.length());
*_out_Strlen = b.length();
}
2024-08-29 07:01:51 +00:00
void QRadioButton_TrUtf8(const char* s, char** _out, int* _out_Strlen) {
QString ret = QRadioButton::trUtf8(s);
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray b = ret.toUtf8();
*_out = static_cast<char*>(malloc(b.length()));
memcpy(*_out, b.data(), b.length());
*_out_Strlen = b.length();
}
QSize* QRadioButton_SizeHint(QRadioButton* self) {
2024-08-29 07:01:51 +00:00
QSize ret = const_cast<const QRadioButton*>(self)->sizeHint();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QSize*>(new QSize(ret));
}
QSize* QRadioButton_MinimumSizeHint(QRadioButton* self) {
2024-08-29 07:01:51 +00:00
QSize ret = const_cast<const QRadioButton*>(self)->minimumSizeHint();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QSize*>(new QSize(ret));
}
2024-08-29 07:01:51 +00:00
void QRadioButton_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen) {
QString ret = QRadioButton::tr(s, c);
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray b = ret.toUtf8();
*_out = static_cast<char*>(malloc(b.length()));
memcpy(*_out, b.data(), b.length());
*_out_Strlen = b.length();
}
2024-08-29 07:01:51 +00:00
void QRadioButton_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen) {
QString ret = QRadioButton::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();
*_out = static_cast<char*>(malloc(b.length()));
memcpy(*_out, b.data(), b.length());
*_out_Strlen = b.length();
}
2024-08-29 07:01:51 +00:00
void QRadioButton_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen) {
QString ret = QRadioButton::trUtf8(s, c);
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray b = ret.toUtf8();
*_out = static_cast<char*>(malloc(b.length()));
memcpy(*_out, b.data(), b.length());
*_out_Strlen = b.length();
}
2024-08-29 07:01:51 +00:00
void QRadioButton_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen) {
QString ret = QRadioButton::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();
*_out = static_cast<char*>(malloc(b.length()));
memcpy(*_out, b.data(), b.length());
*_out_Strlen = b.length();
}
void QRadioButton_Delete(QRadioButton* self) {
delete self;
}