miqt/qt/gen_qtouchdevice.cpp

54 lines
1.5 KiB
C++

#include "gen_qtouchdevice.h"
#include "qtouchdevice.h"
#include <QList>
#include <QString>
#include <QTouchDevice>
extern "C" {
extern void miqt_exec_callback(void* cb, int argc, void* argv);
}
QTouchDevice* QTouchDevice_new() {
return new QTouchDevice();
}
void QTouchDevice_Devices(QTouchDevice*** _out, size_t* _out_len) {
QList<const QTouchDevice *> ret = QTouchDevice::devices();
// Convert QList<> from C++ memory to manually-managed C memory
QTouchDevice** __out = static_cast<QTouchDevice**>(malloc(sizeof(QTouchDevice*) * ret.length()));
for (size_t i = 0, e = ret.length(); i < e; ++i) {
__out[i] = const_cast<QTouchDevice*>(ret[i]);
}
*_out = __out;
*_out_len = ret.length();
}
void QTouchDevice_Name(QTouchDevice* self, char** _out, int* _out_Strlen) {
QString ret = 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<char*>(malloc(b.length()));
memcpy(*_out, b.data(), b.length());
*_out_Strlen = b.length();
}
int QTouchDevice_MaximumTouchPoints(QTouchDevice* self) {
return self->maximumTouchPoints();
}
void QTouchDevice_SetName(QTouchDevice* self, const char* name, size_t name_Strlen) {
QString name_QString = QString::fromUtf8(name, name_Strlen);
self->setName(name_QString);
}
void QTouchDevice_SetMaximumTouchPoints(QTouchDevice* self, int max) {
self->setMaximumTouchPoints(static_cast<int>(max));
}
void QTouchDevice_Delete(QTouchDevice* self) {
delete self;
}