mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
75 lines
3.6 KiB
C++
75 lines
3.6 KiB
C++
#ifndef GEN_QGRAPHICSITEMANIMATION_H
|
|
#define GEN_QGRAPHICSITEMANIMATION_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 QGraphicsItem;
|
|
class QGraphicsItemAnimation;
|
|
class QMatrix;
|
|
class QMetaObject;
|
|
class QObject;
|
|
class QPointF;
|
|
class QTimeLine;
|
|
class QTransform;
|
|
#else
|
|
typedef struct QGraphicsItem QGraphicsItem;
|
|
typedef struct QGraphicsItemAnimation QGraphicsItemAnimation;
|
|
typedef struct QMatrix QMatrix;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QObject QObject;
|
|
typedef struct QPointF QPointF;
|
|
typedef struct QTimeLine QTimeLine;
|
|
typedef struct QTransform QTransform;
|
|
#endif
|
|
|
|
QGraphicsItemAnimation* QGraphicsItemAnimation_new();
|
|
QGraphicsItemAnimation* QGraphicsItemAnimation_new2(QObject* parent);
|
|
QMetaObject* QGraphicsItemAnimation_MetaObject(const QGraphicsItemAnimation* self);
|
|
void* QGraphicsItemAnimation_Metacast(QGraphicsItemAnimation* self, const char* param1);
|
|
struct miqt_string* QGraphicsItemAnimation_Tr(const char* s);
|
|
struct miqt_string* QGraphicsItemAnimation_TrUtf8(const char* s);
|
|
QGraphicsItem* QGraphicsItemAnimation_Item(const QGraphicsItemAnimation* self);
|
|
void QGraphicsItemAnimation_SetItem(QGraphicsItemAnimation* self, QGraphicsItem* item);
|
|
QTimeLine* QGraphicsItemAnimation_TimeLine(const QGraphicsItemAnimation* self);
|
|
void QGraphicsItemAnimation_SetTimeLine(QGraphicsItemAnimation* self, QTimeLine* timeLine);
|
|
QPointF* QGraphicsItemAnimation_PosAt(const QGraphicsItemAnimation* self, double step);
|
|
void QGraphicsItemAnimation_SetPosAt(QGraphicsItemAnimation* self, double step, QPointF* pos);
|
|
QMatrix* QGraphicsItemAnimation_MatrixAt(const QGraphicsItemAnimation* self, double step);
|
|
QTransform* QGraphicsItemAnimation_TransformAt(const QGraphicsItemAnimation* self, double step);
|
|
double QGraphicsItemAnimation_RotationAt(const QGraphicsItemAnimation* self, double step);
|
|
void QGraphicsItemAnimation_SetRotationAt(QGraphicsItemAnimation* self, double step, double angle);
|
|
double QGraphicsItemAnimation_XTranslationAt(const QGraphicsItemAnimation* self, double step);
|
|
double QGraphicsItemAnimation_YTranslationAt(const QGraphicsItemAnimation* self, double step);
|
|
void QGraphicsItemAnimation_SetTranslationAt(QGraphicsItemAnimation* self, double step, double dx, double dy);
|
|
double QGraphicsItemAnimation_VerticalScaleAt(const QGraphicsItemAnimation* self, double step);
|
|
double QGraphicsItemAnimation_HorizontalScaleAt(const QGraphicsItemAnimation* self, double step);
|
|
void QGraphicsItemAnimation_SetScaleAt(QGraphicsItemAnimation* self, double step, double sx, double sy);
|
|
double QGraphicsItemAnimation_VerticalShearAt(const QGraphicsItemAnimation* self, double step);
|
|
double QGraphicsItemAnimation_HorizontalShearAt(const QGraphicsItemAnimation* self, double step);
|
|
void QGraphicsItemAnimation_SetShearAt(QGraphicsItemAnimation* self, double step, double sh, double sv);
|
|
void QGraphicsItemAnimation_Clear(QGraphicsItemAnimation* self);
|
|
void QGraphicsItemAnimation_SetStep(QGraphicsItemAnimation* self, double x);
|
|
void QGraphicsItemAnimation_Reset(QGraphicsItemAnimation* self);
|
|
struct miqt_string* QGraphicsItemAnimation_Tr2(const char* s, const char* c);
|
|
struct miqt_string* QGraphicsItemAnimation_Tr3(const char* s, const char* c, int n);
|
|
struct miqt_string* QGraphicsItemAnimation_TrUtf82(const char* s, const char* c);
|
|
struct miqt_string* QGraphicsItemAnimation_TrUtf83(const char* s, const char* c, int n);
|
|
void QGraphicsItemAnimation_Delete(QGraphicsItemAnimation* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|