miqt/qt/gen_qsizegrip.cpp

92 lines
3.0 KiB
C++
Raw Normal View History

#include <QMetaObject>
#include <QSize>
#include <QSizeGrip>
#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 "qsizegrip.h"
2024-08-29 07:01:51 +00:00
#include "gen_qsizegrip.h"
extern "C" {
extern void miqt_exec_callback(void* cb, int argc, void* argv);
}
QSizeGrip* QSizeGrip_new(QWidget* parent) {
return new QSizeGrip(parent);
}
QMetaObject* QSizeGrip_MetaObject(QSizeGrip* self) {
2024-08-29 07:01:51 +00:00
return (QMetaObject*) const_cast<const QSizeGrip*>(self)->metaObject();
}
2024-08-29 07:01:51 +00:00
void QSizeGrip_Tr(const char* s, char** _out, int* _out_Strlen) {
QString ret = QSizeGrip::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 QSizeGrip_TrUtf8(const char* s, char** _out, int* _out_Strlen) {
QString ret = QSizeGrip::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* QSizeGrip_SizeHint(QSizeGrip* self) {
2024-08-29 07:01:51 +00:00
QSize ret = const_cast<const QSizeGrip*>(self)->sizeHint();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QSize*>(new QSize(ret));
}
void QSizeGrip_SetVisible(QSizeGrip* self, bool visible) {
self->setVisible(visible);
}
2024-08-29 07:01:51 +00:00
void QSizeGrip_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen) {
QString ret = QSizeGrip::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 QSizeGrip_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen) {
QString ret = QSizeGrip::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 QSizeGrip_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen) {
QString ret = QSizeGrip::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 QSizeGrip_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen) {
QString ret = QSizeGrip::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 QSizeGrip_Delete(QSizeGrip* self) {
delete self;
}