2024-11-17 06:21:37 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT_GEN_QGRAPHICSTRANSFORM_H
|
|
|
|
#define MIQT_QT_GEN_QGRAPHICSTRANSFORM_H
|
2024-08-25 04:08:24 +00:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
2024-10-16 05:07:56 +00:00
|
|
|
#include "../libmiqt/libmiqt.h"
|
2024-09-14 22:29:05 +00:00
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class QGraphicsRotation;
|
|
|
|
class QGraphicsScale;
|
|
|
|
class QGraphicsTransform;
|
|
|
|
class QMatrix4x4;
|
|
|
|
class QMetaObject;
|
|
|
|
class QObject;
|
|
|
|
class QVector3D;
|
|
|
|
#else
|
|
|
|
typedef struct QGraphicsRotation QGraphicsRotation;
|
|
|
|
typedef struct QGraphicsScale QGraphicsScale;
|
|
|
|
typedef struct QGraphicsTransform QGraphicsTransform;
|
|
|
|
typedef struct QMatrix4x4 QMatrix4x4;
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
typedef struct QObject QObject;
|
|
|
|
typedef struct QVector3D QVector3D;
|
|
|
|
#endif
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QGraphicsTransform_MetaObject(const QGraphicsTransform* self);
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QGraphicsTransform_Metacast(QGraphicsTransform* self, const char* param1);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QGraphicsTransform_Tr(const char* s);
|
|
|
|
struct miqt_string QGraphicsTransform_TrUtf8(const char* s);
|
2024-09-11 05:41:09 +00:00
|
|
|
void QGraphicsTransform_ApplyTo(const QGraphicsTransform* self, QMatrix4x4* matrix);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QGraphicsTransform_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QGraphicsTransform_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QGraphicsTransform_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QGraphicsTransform_TrUtf83(const char* s, const char* c, int n);
|
2024-11-19 06:29:06 +00:00
|
|
|
void QGraphicsTransform_Delete(QGraphicsTransform* self, bool isSubclass);
|
2024-08-25 04:08:24 +00:00
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
void QGraphicsScale_new(QGraphicsScale** outptr_QGraphicsScale, QGraphicsTransform** outptr_QGraphicsTransform, QObject** outptr_QObject);
|
|
|
|
void QGraphicsScale_new2(QObject* parent, QGraphicsScale** outptr_QGraphicsScale, QGraphicsTransform** outptr_QGraphicsTransform, QObject** outptr_QObject);
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QGraphicsScale_MetaObject(const QGraphicsScale* self);
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QGraphicsScale_Metacast(QGraphicsScale* self, const char* param1);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QGraphicsScale_Tr(const char* s);
|
|
|
|
struct miqt_string QGraphicsScale_TrUtf8(const char* s);
|
2024-09-11 05:41:09 +00:00
|
|
|
QVector3D* QGraphicsScale_Origin(const QGraphicsScale* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGraphicsScale_SetOrigin(QGraphicsScale* self, QVector3D* point);
|
2024-09-11 05:41:09 +00:00
|
|
|
double QGraphicsScale_XScale(const QGraphicsScale* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGraphicsScale_SetXScale(QGraphicsScale* self, double xScale);
|
2024-09-11 05:41:09 +00:00
|
|
|
double QGraphicsScale_YScale(const QGraphicsScale* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGraphicsScale_SetYScale(QGraphicsScale* self, double yScale);
|
2024-09-11 05:41:09 +00:00
|
|
|
double QGraphicsScale_ZScale(const QGraphicsScale* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGraphicsScale_SetZScale(QGraphicsScale* self, double zScale);
|
2024-09-11 05:41:09 +00:00
|
|
|
void QGraphicsScale_ApplyTo(const QGraphicsScale* self, QMatrix4x4* matrix);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGraphicsScale_OriginChanged(QGraphicsScale* self);
|
2024-10-13 06:06:06 +00:00
|
|
|
void QGraphicsScale_connect_OriginChanged(QGraphicsScale* self, intptr_t slot);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGraphicsScale_XScaleChanged(QGraphicsScale* self);
|
2024-10-13 06:06:06 +00:00
|
|
|
void QGraphicsScale_connect_XScaleChanged(QGraphicsScale* self, intptr_t slot);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGraphicsScale_YScaleChanged(QGraphicsScale* self);
|
2024-10-13 06:06:06 +00:00
|
|
|
void QGraphicsScale_connect_YScaleChanged(QGraphicsScale* self, intptr_t slot);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGraphicsScale_ZScaleChanged(QGraphicsScale* self);
|
2024-10-13 06:06:06 +00:00
|
|
|
void QGraphicsScale_connect_ZScaleChanged(QGraphicsScale* self, intptr_t slot);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGraphicsScale_ScaleChanged(QGraphicsScale* self);
|
2024-10-13 06:06:06 +00:00
|
|
|
void QGraphicsScale_connect_ScaleChanged(QGraphicsScale* self, intptr_t slot);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QGraphicsScale_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QGraphicsScale_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QGraphicsScale_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QGraphicsScale_TrUtf83(const char* s, const char* c, int n);
|
2024-11-19 06:29:06 +00:00
|
|
|
void QGraphicsScale_override_virtual_ApplyTo(void* self, intptr_t slot);
|
|
|
|
void QGraphicsScale_virtualbase_ApplyTo(const void* self, QMatrix4x4* matrix);
|
|
|
|
void QGraphicsScale_Delete(QGraphicsScale* self, bool isSubclass);
|
2024-08-25 04:08:24 +00:00
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
void QGraphicsRotation_new(QGraphicsRotation** outptr_QGraphicsRotation, QGraphicsTransform** outptr_QGraphicsTransform, QObject** outptr_QObject);
|
|
|
|
void QGraphicsRotation_new2(QObject* parent, QGraphicsRotation** outptr_QGraphicsRotation, QGraphicsTransform** outptr_QGraphicsTransform, QObject** outptr_QObject);
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QGraphicsRotation_MetaObject(const QGraphicsRotation* self);
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QGraphicsRotation_Metacast(QGraphicsRotation* self, const char* param1);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QGraphicsRotation_Tr(const char* s);
|
|
|
|
struct miqt_string QGraphicsRotation_TrUtf8(const char* s);
|
2024-09-11 05:41:09 +00:00
|
|
|
QVector3D* QGraphicsRotation_Origin(const QGraphicsRotation* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGraphicsRotation_SetOrigin(QGraphicsRotation* self, QVector3D* point);
|
2024-09-11 05:41:09 +00:00
|
|
|
double QGraphicsRotation_Angle(const QGraphicsRotation* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGraphicsRotation_SetAngle(QGraphicsRotation* self, double angle);
|
2024-09-11 05:41:09 +00:00
|
|
|
QVector3D* QGraphicsRotation_Axis(const QGraphicsRotation* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGraphicsRotation_SetAxis(QGraphicsRotation* self, QVector3D* axis);
|
2024-09-18 00:12:02 +00:00
|
|
|
void QGraphicsRotation_SetAxisWithAxis(QGraphicsRotation* self, int axis);
|
2024-09-11 05:41:09 +00:00
|
|
|
void QGraphicsRotation_ApplyTo(const QGraphicsRotation* self, QMatrix4x4* matrix);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGraphicsRotation_OriginChanged(QGraphicsRotation* self);
|
2024-10-13 06:06:06 +00:00
|
|
|
void QGraphicsRotation_connect_OriginChanged(QGraphicsRotation* self, intptr_t slot);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGraphicsRotation_AngleChanged(QGraphicsRotation* self);
|
2024-10-13 06:06:06 +00:00
|
|
|
void QGraphicsRotation_connect_AngleChanged(QGraphicsRotation* self, intptr_t slot);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QGraphicsRotation_AxisChanged(QGraphicsRotation* self);
|
2024-10-13 06:06:06 +00:00
|
|
|
void QGraphicsRotation_connect_AxisChanged(QGraphicsRotation* self, intptr_t slot);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QGraphicsRotation_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QGraphicsRotation_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QGraphicsRotation_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QGraphicsRotation_TrUtf83(const char* s, const char* c, int n);
|
2024-11-19 06:29:06 +00:00
|
|
|
void QGraphicsRotation_override_virtual_ApplyTo(void* self, intptr_t slot);
|
|
|
|
void QGraphicsRotation_virtualbase_ApplyTo(const void* self, QMatrix4x4* matrix);
|
|
|
|
void QGraphicsRotation_Delete(QGraphicsRotation* self, bool isSubclass);
|
2024-08-25 04:08:24 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|