mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
56 lines
1.5 KiB
C++
56 lines
1.5 KiB
C++
#ifndef GEN_QDRAG_H
|
|
#define GEN_QDRAG_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QDrag;
|
|
class QMetaObject;
|
|
class QMimeData;
|
|
class QObject;
|
|
class QPixmap;
|
|
class QPoint;
|
|
#else
|
|
typedef struct QDrag QDrag;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QMimeData QMimeData;
|
|
typedef struct QObject QObject;
|
|
typedef struct QPixmap QPixmap;
|
|
typedef struct QPoint QPoint;
|
|
#endif
|
|
|
|
QDrag* QDrag_new(QObject* dragSource);
|
|
QMetaObject* QDrag_MetaObject(QDrag* self);
|
|
void QDrag_Tr(char* s, char** _out, int* _out_Strlen);
|
|
void QDrag_TrUtf8(char* s, char** _out, int* _out_Strlen);
|
|
void QDrag_SetMimeData(QDrag* self, QMimeData* data);
|
|
QMimeData* QDrag_MimeData(QDrag* self);
|
|
void QDrag_SetPixmap(QDrag* self, QPixmap* pixmap);
|
|
QPixmap* QDrag_Pixmap(QDrag* self);
|
|
void QDrag_SetHotSpot(QDrag* self, QPoint* hotspot);
|
|
QPoint* QDrag_HotSpot(QDrag* self);
|
|
QObject* QDrag_Source(QDrag* self);
|
|
QObject* QDrag_Target(QDrag* self);
|
|
void QDrag_Cancel();
|
|
void QDrag_TargetChanged(QDrag* self, QObject* newTarget);
|
|
void QDrag_connect_TargetChanged(QDrag* self, void* slot);
|
|
void QDrag_Tr2(char* s, char* c, char** _out, int* _out_Strlen);
|
|
void QDrag_Tr3(char* s, char* c, int n, char** _out, int* _out_Strlen);
|
|
void QDrag_TrUtf82(char* s, char* c, char** _out, int* _out_Strlen);
|
|
void QDrag_TrUtf83(char* s, char* c, int n, char** _out, int* _out_Strlen);
|
|
void QDrag_Delete(QDrag* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|