miqt/qt/gen_qdrag.cpp

189 lines
5.6 KiB
C++
Raw Normal View History

#include <QDrag>
#include <QMetaObject>
#include <QMimeData>
#include <QObject>
#include <QPixmap>
#include <QPoint>
#include <QString>
2024-08-29 07:01:51 +00:00
#include <QByteArray>
#include <cstring>
#include "qdrag.h"
2024-08-29 07:01:51 +00:00
#include "gen_qdrag.h"
extern "C" {
extern void miqt_exec_callback(void* cb, int argc, void* argv);
}
QDrag* QDrag_new(QObject* dragSource) {
return new QDrag(dragSource);
}
QMetaObject* QDrag_MetaObject(const QDrag* self) {
return (QMetaObject*) self->metaObject();
}
2024-08-29 07:01:51 +00:00
void QDrag_Tr(const char* s, char** _out, int* _out_Strlen) {
QString ret = QDrag::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 QDrag_TrUtf8(const char* s, char** _out, int* _out_Strlen) {
QString ret = QDrag::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 QDrag_SetMimeData(QDrag* self, QMimeData* data) {
self->setMimeData(data);
}
QMimeData* QDrag_MimeData(const QDrag* self) {
return self->mimeData();
}
void QDrag_SetPixmap(QDrag* self, QPixmap* pixmap) {
self->setPixmap(*pixmap);
}
QPixmap* QDrag_Pixmap(const QDrag* self) {
QPixmap ret = self->pixmap();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QPixmap*>(new QPixmap(ret));
}
void QDrag_SetHotSpot(QDrag* self, QPoint* hotspot) {
self->setHotSpot(*hotspot);
}
QPoint* QDrag_HotSpot(const QDrag* self) {
QPoint ret = self->hotSpot();
// Copy-construct value returned type into heap-allocated copy
return static_cast<QPoint*>(new QPoint(ret));
}
QObject* QDrag_Source(const QDrag* self) {
return self->source();
}
QObject* QDrag_Target(const QDrag* self) {
return self->target();
2024-08-29 07:01:51 +00:00
}
uintptr_t QDrag_Start(QDrag* self) {
Qt::DropAction ret = self->start();
return static_cast<uintptr_t>(ret);
}
uintptr_t QDrag_Exec(QDrag* self) {
Qt::DropAction ret = self->exec();
return static_cast<uintptr_t>(ret);
}
uintptr_t QDrag_Exec2(QDrag* self, int supportedActions, uintptr_t defaultAction) {
Qt::DropAction ret = self->exec(static_cast<Qt::DropActions>(supportedActions), static_cast<Qt::DropAction>(defaultAction));
return static_cast<uintptr_t>(ret);
}
void QDrag_SetDragCursor(QDrag* self, QPixmap* cursor, uintptr_t action) {
self->setDragCursor(*cursor, static_cast<Qt::DropAction>(action));
}
QPixmap* QDrag_DragCursor(const QDrag* self, uintptr_t action) {
QPixmap ret = self->dragCursor(static_cast<Qt::DropAction>(action));
2024-08-29 07:01:51 +00:00
// Copy-construct value returned type into heap-allocated copy
return static_cast<QPixmap*>(new QPixmap(ret));
}
int QDrag_SupportedActions(const QDrag* self) {
Qt::DropActions ret = self->supportedActions();
2024-08-29 07:01:51 +00:00
return static_cast<int>(ret);
}
uintptr_t QDrag_DefaultAction(const QDrag* self) {
Qt::DropAction ret = self->defaultAction();
2024-08-29 07:01:51 +00:00
return static_cast<uintptr_t>(ret);
}
void QDrag_Cancel() {
QDrag::cancel();
}
2024-08-29 07:01:51 +00:00
void QDrag_ActionChanged(QDrag* self, uintptr_t action) {
self->actionChanged(static_cast<Qt::DropAction>(action));
}
void QDrag_connect_ActionChanged(QDrag* self, void* slot) {
QDrag::connect(self, static_cast<void (QDrag::*)(Qt::DropAction)>(&QDrag::actionChanged), self, [=](Qt::DropAction action) {
miqt_exec_callback(slot, 0, nullptr);
});
}
void QDrag_TargetChanged(QDrag* self, QObject* newTarget) {
self->targetChanged(newTarget);
}
void QDrag_connect_TargetChanged(QDrag* self, void* slot) {
QDrag::connect(self, static_cast<void (QDrag::*)(QObject*)>(&QDrag::targetChanged), self, [=](QObject* newTarget) {
miqt_exec_callback(slot, 0, nullptr);
});
}
2024-08-29 07:01:51 +00:00
void QDrag_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen) {
QString ret = QDrag::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 QDrag_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen) {
QString ret = QDrag::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 QDrag_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen) {
QString ret = QDrag::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 QDrag_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen) {
QString ret = QDrag::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();
}
2024-08-29 07:01:51 +00:00
uintptr_t QDrag_Start1(QDrag* self, int supportedActions) {
Qt::DropAction ret = self->start(static_cast<Qt::DropActions>(supportedActions));
return static_cast<uintptr_t>(ret);
}
uintptr_t QDrag_Exec1(QDrag* self, int supportedActions) {
Qt::DropAction ret = self->exec(static_cast<Qt::DropActions>(supportedActions));
return static_cast<uintptr_t>(ret);
}
void QDrag_Delete(QDrag* self) {
delete self;
}