mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
143 lines
4.5 KiB
C++
143 lines
4.5 KiB
C++
#include "gen_qoffscreensurface.h"
|
|
#include "qoffscreensurface.h"
|
|
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QOffscreenSurface>
|
|
#include <QScreen>
|
|
#include <QSize>
|
|
#include <QString>
|
|
#include <QSurfaceFormat>
|
|
|
|
|
|
extern "C" {
|
|
extern void miqt_exec_callback(void* cb, int argc, void* argv);
|
|
}
|
|
|
|
QOffscreenSurface* QOffscreenSurface_new(QScreen* screen, QObject* parent) {
|
|
return new QOffscreenSurface(screen, parent);
|
|
}
|
|
|
|
QOffscreenSurface* QOffscreenSurface_new2() {
|
|
return new QOffscreenSurface();
|
|
}
|
|
|
|
QOffscreenSurface* QOffscreenSurface_new3(QScreen* screen) {
|
|
return new QOffscreenSurface(screen);
|
|
}
|
|
|
|
QMetaObject* QOffscreenSurface_MetaObject(QOffscreenSurface* self) {
|
|
return (QMetaObject*) self->metaObject();
|
|
}
|
|
|
|
void QOffscreenSurface_Tr(char* s, char** _out, int* _out_Strlen) {
|
|
QString ret = QOffscreenSurface::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();
|
|
}
|
|
|
|
void QOffscreenSurface_TrUtf8(char* s, char** _out, int* _out_Strlen) {
|
|
QString ret = QOffscreenSurface::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();
|
|
}
|
|
|
|
void QOffscreenSurface_Create(QOffscreenSurface* self) {
|
|
self->create();
|
|
}
|
|
|
|
void QOffscreenSurface_Destroy(QOffscreenSurface* self) {
|
|
self->destroy();
|
|
}
|
|
|
|
bool QOffscreenSurface_IsValid(QOffscreenSurface* self) {
|
|
return self->isValid();
|
|
}
|
|
|
|
void QOffscreenSurface_SetFormat(QOffscreenSurface* self, QSurfaceFormat* format) {
|
|
self->setFormat(*format);
|
|
}
|
|
|
|
QSurfaceFormat* QOffscreenSurface_Format(QOffscreenSurface* self) {
|
|
QSurfaceFormat ret = self->format();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QSurfaceFormat*>(new QSurfaceFormat(ret));
|
|
}
|
|
|
|
QSurfaceFormat* QOffscreenSurface_RequestedFormat(QOffscreenSurface* self) {
|
|
QSurfaceFormat ret = self->requestedFormat();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QSurfaceFormat*>(new QSurfaceFormat(ret));
|
|
}
|
|
|
|
QSize* QOffscreenSurface_Size(QOffscreenSurface* self) {
|
|
QSize ret = self->size();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QSize*>(new QSize(ret));
|
|
}
|
|
|
|
QScreen* QOffscreenSurface_Screen(QOffscreenSurface* self) {
|
|
return self->screen();
|
|
}
|
|
|
|
void QOffscreenSurface_SetScreen(QOffscreenSurface* self, QScreen* screen) {
|
|
self->setScreen(screen);
|
|
}
|
|
|
|
void QOffscreenSurface_ScreenChanged(QOffscreenSurface* self, QScreen* screen) {
|
|
self->screenChanged(screen);
|
|
}
|
|
|
|
void QOffscreenSurface_connect_ScreenChanged(QOffscreenSurface* self, void* slot) {
|
|
QOffscreenSurface::connect(self, static_cast<void (QOffscreenSurface::*)(QScreen*)>(&QOffscreenSurface::screenChanged), self, [=](QScreen* screen) {
|
|
miqt_exec_callback(slot, 0, nullptr);
|
|
});
|
|
}
|
|
|
|
void QOffscreenSurface_Tr2(char* s, char* c, char** _out, int* _out_Strlen) {
|
|
QString ret = QOffscreenSurface::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();
|
|
}
|
|
|
|
void QOffscreenSurface_Tr3(char* s, char* c, int n, char** _out, int* _out_Strlen) {
|
|
QString ret = QOffscreenSurface::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();
|
|
}
|
|
|
|
void QOffscreenSurface_TrUtf82(char* s, char* c, char** _out, int* _out_Strlen) {
|
|
QString ret = QOffscreenSurface::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();
|
|
}
|
|
|
|
void QOffscreenSurface_TrUtf83(char* s, char* c, int n, char** _out, int* _out_Strlen) {
|
|
QString ret = QOffscreenSurface::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 QOffscreenSurface_Delete(QOffscreenSurface* self) {
|
|
delete self;
|
|
}
|
|
|