mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
107 lines
5.1 KiB
C++
107 lines
5.1 KiB
C++
#ifndef GEN_QGRAPHICSTRANSFORM_H
|
|
#define GEN_QGRAPHICSTRANSFORM_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#include "binding.h"
|
|
|
|
#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
|
|
|
|
QMetaObject* QGraphicsTransform_MetaObject(const QGraphicsTransform* self);
|
|
void* QGraphicsTransform_Metacast(QGraphicsTransform* self, const char* param1);
|
|
struct miqt_string* QGraphicsTransform_Tr(const char* s);
|
|
struct miqt_string* QGraphicsTransform_TrUtf8(const char* s);
|
|
void QGraphicsTransform_ApplyTo(const QGraphicsTransform* self, QMatrix4x4* matrix);
|
|
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);
|
|
void QGraphicsTransform_Delete(QGraphicsTransform* self);
|
|
|
|
QGraphicsScale* QGraphicsScale_new();
|
|
QGraphicsScale* QGraphicsScale_new2(QObject* parent);
|
|
QMetaObject* QGraphicsScale_MetaObject(const QGraphicsScale* self);
|
|
void* QGraphicsScale_Metacast(QGraphicsScale* self, const char* param1);
|
|
struct miqt_string* QGraphicsScale_Tr(const char* s);
|
|
struct miqt_string* QGraphicsScale_TrUtf8(const char* s);
|
|
QVector3D* QGraphicsScale_Origin(const QGraphicsScale* self);
|
|
void QGraphicsScale_SetOrigin(QGraphicsScale* self, QVector3D* point);
|
|
double QGraphicsScale_XScale(const QGraphicsScale* self);
|
|
void QGraphicsScale_SetXScale(QGraphicsScale* self, double xScale);
|
|
double QGraphicsScale_YScale(const QGraphicsScale* self);
|
|
void QGraphicsScale_SetYScale(QGraphicsScale* self, double yScale);
|
|
double QGraphicsScale_ZScale(const QGraphicsScale* self);
|
|
void QGraphicsScale_SetZScale(QGraphicsScale* self, double zScale);
|
|
void QGraphicsScale_ApplyTo(const QGraphicsScale* self, QMatrix4x4* matrix);
|
|
void QGraphicsScale_OriginChanged(QGraphicsScale* self);
|
|
void QGraphicsScale_connect_OriginChanged(QGraphicsScale* self, void* slot);
|
|
void QGraphicsScale_XScaleChanged(QGraphicsScale* self);
|
|
void QGraphicsScale_connect_XScaleChanged(QGraphicsScale* self, void* slot);
|
|
void QGraphicsScale_YScaleChanged(QGraphicsScale* self);
|
|
void QGraphicsScale_connect_YScaleChanged(QGraphicsScale* self, void* slot);
|
|
void QGraphicsScale_ZScaleChanged(QGraphicsScale* self);
|
|
void QGraphicsScale_connect_ZScaleChanged(QGraphicsScale* self, void* slot);
|
|
void QGraphicsScale_ScaleChanged(QGraphicsScale* self);
|
|
void QGraphicsScale_connect_ScaleChanged(QGraphicsScale* self, void* slot);
|
|
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);
|
|
void QGraphicsScale_Delete(QGraphicsScale* self);
|
|
|
|
QGraphicsRotation* QGraphicsRotation_new();
|
|
QGraphicsRotation* QGraphicsRotation_new2(QObject* parent);
|
|
QMetaObject* QGraphicsRotation_MetaObject(const QGraphicsRotation* self);
|
|
void* QGraphicsRotation_Metacast(QGraphicsRotation* self, const char* param1);
|
|
struct miqt_string* QGraphicsRotation_Tr(const char* s);
|
|
struct miqt_string* QGraphicsRotation_TrUtf8(const char* s);
|
|
QVector3D* QGraphicsRotation_Origin(const QGraphicsRotation* self);
|
|
void QGraphicsRotation_SetOrigin(QGraphicsRotation* self, QVector3D* point);
|
|
double QGraphicsRotation_Angle(const QGraphicsRotation* self);
|
|
void QGraphicsRotation_SetAngle(QGraphicsRotation* self, double angle);
|
|
QVector3D* QGraphicsRotation_Axis(const QGraphicsRotation* self);
|
|
void QGraphicsRotation_SetAxis(QGraphicsRotation* self, QVector3D* axis);
|
|
void QGraphicsRotation_SetAxisWithAxis(QGraphicsRotation* self, int axis);
|
|
void QGraphicsRotation_ApplyTo(const QGraphicsRotation* self, QMatrix4x4* matrix);
|
|
void QGraphicsRotation_OriginChanged(QGraphicsRotation* self);
|
|
void QGraphicsRotation_connect_OriginChanged(QGraphicsRotation* self, void* slot);
|
|
void QGraphicsRotation_AngleChanged(QGraphicsRotation* self);
|
|
void QGraphicsRotation_connect_AngleChanged(QGraphicsRotation* self, void* slot);
|
|
void QGraphicsRotation_AxisChanged(QGraphicsRotation* self);
|
|
void QGraphicsRotation_connect_AxisChanged(QGraphicsRotation* self, void* slot);
|
|
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);
|
|
void QGraphicsRotation_Delete(QGraphicsRotation* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|