#include #include #include #include #include #include #include #include #include #include #include #include #include "qscreen.h" #include "gen_qscreen.h" extern "C" { extern void miqt_exec_callback(void* cb, int argc, void* argv); } QMetaObject* QScreen_MetaObject(QScreen* self) { return (QMetaObject*) const_cast(self)->metaObject(); } void QScreen_Tr(const char* s, char** _out, int* _out_Strlen) { QString ret = QScreen::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(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QScreen_TrUtf8(const char* s, char** _out, int* _out_Strlen) { QString ret = QScreen::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(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QScreen_Name(QScreen* self, char** _out, int* _out_Strlen) { QString ret = const_cast(self)->name(); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QScreen_Manufacturer(QScreen* self, char** _out, int* _out_Strlen) { QString ret = const_cast(self)->manufacturer(); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QScreen_Model(QScreen* self, char** _out, int* _out_Strlen) { QString ret = const_cast(self)->model(); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QScreen_SerialNumber(QScreen* self, char** _out, int* _out_Strlen) { QString ret = const_cast(self)->serialNumber(); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } int QScreen_Depth(QScreen* self) { return const_cast(self)->depth(); } QSize* QScreen_Size(QScreen* self) { QSize ret = const_cast(self)->size(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(ret)); } QRect* QScreen_Geometry(QScreen* self) { QRect ret = const_cast(self)->geometry(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } QSizeF* QScreen_PhysicalSize(QScreen* self) { QSizeF ret = const_cast(self)->physicalSize(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSizeF(ret)); } double QScreen_PhysicalDotsPerInchX(QScreen* self) { return const_cast(self)->physicalDotsPerInchX(); } double QScreen_PhysicalDotsPerInchY(QScreen* self) { return const_cast(self)->physicalDotsPerInchY(); } double QScreen_PhysicalDotsPerInch(QScreen* self) { return const_cast(self)->physicalDotsPerInch(); } double QScreen_LogicalDotsPerInchX(QScreen* self) { return const_cast(self)->logicalDotsPerInchX(); } double QScreen_LogicalDotsPerInchY(QScreen* self) { return const_cast(self)->logicalDotsPerInchY(); } double QScreen_LogicalDotsPerInch(QScreen* self) { return const_cast(self)->logicalDotsPerInch(); } double QScreen_DevicePixelRatio(QScreen* self) { return const_cast(self)->devicePixelRatio(); } QSize* QScreen_AvailableSize(QScreen* self) { QSize ret = const_cast(self)->availableSize(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(ret)); } QRect* QScreen_AvailableGeometry(QScreen* self) { QRect ret = const_cast(self)->availableGeometry(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } void QScreen_VirtualSiblings(QScreen* self, QScreen*** _out, size_t* _out_len) { QList ret = const_cast(self)->virtualSiblings(); // Convert QList<> from C++ memory to manually-managed C memory QScreen** __out = static_cast(malloc(sizeof(QScreen*) * ret.length())); for (size_t i = 0, e = ret.length(); i < e; ++i) { __out[i] = ret[i]; } *_out = __out; *_out_len = ret.length(); } QScreen* QScreen_VirtualSiblingAt(QScreen* self, QPoint* point) { return self->virtualSiblingAt(*point); } QSize* QScreen_VirtualSize(QScreen* self) { QSize ret = const_cast(self)->virtualSize(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(ret)); } QRect* QScreen_VirtualGeometry(QScreen* self) { QRect ret = const_cast(self)->virtualGeometry(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } QSize* QScreen_AvailableVirtualSize(QScreen* self) { QSize ret = const_cast(self)->availableVirtualSize(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSize(ret)); } QRect* QScreen_AvailableVirtualGeometry(QScreen* self) { QRect ret = const_cast(self)->availableVirtualGeometry(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } uintptr_t QScreen_PrimaryOrientation(QScreen* self) { Qt::ScreenOrientation ret = const_cast(self)->primaryOrientation(); return static_cast(ret); } uintptr_t QScreen_Orientation(QScreen* self) { Qt::ScreenOrientation ret = const_cast(self)->orientation(); return static_cast(ret); } uintptr_t QScreen_NativeOrientation(QScreen* self) { Qt::ScreenOrientation ret = const_cast(self)->nativeOrientation(); return static_cast(ret); } int QScreen_OrientationUpdateMask(QScreen* self) { Qt::ScreenOrientations ret = const_cast(self)->orientationUpdateMask(); return static_cast(ret); } void QScreen_SetOrientationUpdateMask(QScreen* self, int mask) { self->setOrientationUpdateMask(static_cast(mask)); } int QScreen_AngleBetween(QScreen* self, uintptr_t a, uintptr_t b) { return const_cast(self)->angleBetween(static_cast(a), static_cast(b)); } QTransform* QScreen_TransformBetween(QScreen* self, uintptr_t a, uintptr_t b, QRect* target) { QTransform ret = const_cast(self)->transformBetween(static_cast(a), static_cast(b), *target); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTransform(ret)); } QRect* QScreen_MapBetween(QScreen* self, uintptr_t a, uintptr_t b, QRect* rect) { QRect ret = const_cast(self)->mapBetween(static_cast(a), static_cast(b), *rect); // Copy-construct value returned type into heap-allocated copy return static_cast(new QRect(ret)); } bool QScreen_IsPortrait(QScreen* self, uintptr_t orientation) { return const_cast(self)->isPortrait(static_cast(orientation)); } bool QScreen_IsLandscape(QScreen* self, uintptr_t orientation) { return const_cast(self)->isLandscape(static_cast(orientation)); } QPixmap* QScreen_GrabWindow(QScreen* self, uintptr_t window) { QPixmap ret = self->grabWindow(static_cast(window)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } double QScreen_RefreshRate(QScreen* self) { return const_cast(self)->refreshRate(); } void QScreen_GeometryChanged(QScreen* self, QRect* geometry) { self->geometryChanged(*geometry); } void QScreen_connect_GeometryChanged(QScreen* self, void* slot) { QScreen::connect(self, static_cast(&QScreen::geometryChanged), self, [=](const QRect& geometry) { miqt_exec_callback(slot, 0, nullptr); }); } void QScreen_AvailableGeometryChanged(QScreen* self, QRect* geometry) { self->availableGeometryChanged(*geometry); } void QScreen_connect_AvailableGeometryChanged(QScreen* self, void* slot) { QScreen::connect(self, static_cast(&QScreen::availableGeometryChanged), self, [=](const QRect& geometry) { miqt_exec_callback(slot, 0, nullptr); }); } void QScreen_PhysicalSizeChanged(QScreen* self, QSizeF* size) { self->physicalSizeChanged(*size); } void QScreen_connect_PhysicalSizeChanged(QScreen* self, void* slot) { QScreen::connect(self, static_cast(&QScreen::physicalSizeChanged), self, [=](const QSizeF& size) { miqt_exec_callback(slot, 0, nullptr); }); } void QScreen_PhysicalDotsPerInchChanged(QScreen* self, double dpi) { self->physicalDotsPerInchChanged(static_cast(dpi)); } void QScreen_connect_PhysicalDotsPerInchChanged(QScreen* self, void* slot) { QScreen::connect(self, static_cast(&QScreen::physicalDotsPerInchChanged), self, [=](qreal dpi) { miqt_exec_callback(slot, 0, nullptr); }); } void QScreen_LogicalDotsPerInchChanged(QScreen* self, double dpi) { self->logicalDotsPerInchChanged(static_cast(dpi)); } void QScreen_connect_LogicalDotsPerInchChanged(QScreen* self, void* slot) { QScreen::connect(self, static_cast(&QScreen::logicalDotsPerInchChanged), self, [=](qreal dpi) { miqt_exec_callback(slot, 0, nullptr); }); } void QScreen_VirtualGeometryChanged(QScreen* self, QRect* rect) { self->virtualGeometryChanged(*rect); } void QScreen_connect_VirtualGeometryChanged(QScreen* self, void* slot) { QScreen::connect(self, static_cast(&QScreen::virtualGeometryChanged), self, [=](const QRect& rect) { miqt_exec_callback(slot, 0, nullptr); }); } void QScreen_PrimaryOrientationChanged(QScreen* self, uintptr_t orientation) { self->primaryOrientationChanged(static_cast(orientation)); } void QScreen_connect_PrimaryOrientationChanged(QScreen* self, void* slot) { QScreen::connect(self, static_cast(&QScreen::primaryOrientationChanged), self, [=](Qt::ScreenOrientation orientation) { miqt_exec_callback(slot, 0, nullptr); }); } void QScreen_OrientationChanged(QScreen* self, uintptr_t orientation) { self->orientationChanged(static_cast(orientation)); } void QScreen_connect_OrientationChanged(QScreen* self, void* slot) { QScreen::connect(self, static_cast(&QScreen::orientationChanged), self, [=](Qt::ScreenOrientation orientation) { miqt_exec_callback(slot, 0, nullptr); }); } void QScreen_RefreshRateChanged(QScreen* self, double refreshRate) { self->refreshRateChanged(static_cast(refreshRate)); } void QScreen_connect_RefreshRateChanged(QScreen* self, void* slot) { QScreen::connect(self, static_cast(&QScreen::refreshRateChanged), self, [=](qreal refreshRate) { miqt_exec_callback(slot, 0, nullptr); }); } void QScreen_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen) { QString ret = QScreen::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(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QScreen_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen) { QString ret = QScreen::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(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QScreen_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen) { QString ret = QScreen::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(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QScreen_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen) { QString ret = QScreen::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(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } QPixmap* QScreen_GrabWindow2(QScreen* self, uintptr_t window, int x) { QPixmap ret = self->grabWindow(static_cast(window), static_cast(x)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QScreen_GrabWindow3(QScreen* self, uintptr_t window, int x, int y) { QPixmap ret = self->grabWindow(static_cast(window), static_cast(x), static_cast(y)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QScreen_GrabWindow4(QScreen* self, uintptr_t window, int x, int y, int w) { QPixmap ret = self->grabWindow(static_cast(window), static_cast(x), static_cast(y), static_cast(w)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } QPixmap* QScreen_GrabWindow5(QScreen* self, uintptr_t window, int x, int y, int w, int h) { QPixmap ret = self->grabWindow(static_cast(window), static_cast(x), static_cast(y), static_cast(w), static_cast(h)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QPixmap(ret)); } void QScreen_Delete(QScreen* self) { delete self; }