miqt/qt/gen_qabstractanimation.h

81 lines
3.7 KiB
C++

#ifndef GEN_QABSTRACTANIMATION_H
#define GEN_QABSTRACTANIMATION_H
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
class QAbstractAnimation;
class QAnimationDriver;
class QAnimationGroup;
class QMetaObject;
class QObject;
#else
typedef struct QAbstractAnimation QAbstractAnimation;
typedef struct QAnimationDriver QAnimationDriver;
typedef struct QAnimationGroup QAnimationGroup;
typedef struct QMetaObject QMetaObject;
typedef struct QObject QObject;
#endif
QMetaObject* QAbstractAnimation_MetaObject(QAbstractAnimation* self);
void QAbstractAnimation_Tr(char* s, char** _out, int* _out_Strlen);
void QAbstractAnimation_TrUtf8(char* s, char** _out, int* _out_Strlen);
QAnimationGroup* QAbstractAnimation_Group(QAbstractAnimation* self);
int QAbstractAnimation_CurrentTime(QAbstractAnimation* self);
int QAbstractAnimation_CurrentLoopTime(QAbstractAnimation* self);
int QAbstractAnimation_LoopCount(QAbstractAnimation* self);
void QAbstractAnimation_SetLoopCount(QAbstractAnimation* self, int loopCount);
int QAbstractAnimation_CurrentLoop(QAbstractAnimation* self);
int QAbstractAnimation_Duration(QAbstractAnimation* self);
int QAbstractAnimation_TotalDuration(QAbstractAnimation* self);
void QAbstractAnimation_Finished(QAbstractAnimation* self);
void QAbstractAnimation_connect_Finished(QAbstractAnimation* self, void* slot);
void QAbstractAnimation_CurrentLoopChanged(QAbstractAnimation* self, int currentLoop);
void QAbstractAnimation_connect_CurrentLoopChanged(QAbstractAnimation* self, void* slot);
void QAbstractAnimation_Pause(QAbstractAnimation* self);
void QAbstractAnimation_Resume(QAbstractAnimation* self);
void QAbstractAnimation_SetPaused(QAbstractAnimation* self, bool paused);
void QAbstractAnimation_Stop(QAbstractAnimation* self);
void QAbstractAnimation_SetCurrentTime(QAbstractAnimation* self, int msecs);
void QAbstractAnimation_Tr2(char* s, char* c, char** _out, int* _out_Strlen);
void QAbstractAnimation_Tr3(char* s, char* c, int n, char** _out, int* _out_Strlen);
void QAbstractAnimation_TrUtf82(char* s, char* c, char** _out, int* _out_Strlen);
void QAbstractAnimation_TrUtf83(char* s, char* c, int n, char** _out, int* _out_Strlen);
void QAbstractAnimation_Delete(QAbstractAnimation* self);
QAnimationDriver* QAnimationDriver_new();
QAnimationDriver* QAnimationDriver_new2(QObject* parent);
QMetaObject* QAnimationDriver_MetaObject(QAnimationDriver* self);
void QAnimationDriver_Tr(char* s, char** _out, int* _out_Strlen);
void QAnimationDriver_TrUtf8(char* s, char** _out, int* _out_Strlen);
void QAnimationDriver_Advance(QAnimationDriver* self);
void QAnimationDriver_Install(QAnimationDriver* self);
void QAnimationDriver_Uninstall(QAnimationDriver* self);
bool QAnimationDriver_IsRunning(QAnimationDriver* self);
int64_t QAnimationDriver_Elapsed(QAnimationDriver* self);
void QAnimationDriver_SetStartTime(QAnimationDriver* self, int64_t startTime);
int64_t QAnimationDriver_StartTime(QAnimationDriver* self);
void QAnimationDriver_Started(QAnimationDriver* self);
void QAnimationDriver_connect_Started(QAnimationDriver* self, void* slot);
void QAnimationDriver_Stopped(QAnimationDriver* self);
void QAnimationDriver_connect_Stopped(QAnimationDriver* self, void* slot);
void QAnimationDriver_Tr2(char* s, char* c, char** _out, int* _out_Strlen);
void QAnimationDriver_Tr3(char* s, char* c, int n, char** _out, int* _out_Strlen);
void QAnimationDriver_TrUtf82(char* s, char* c, char** _out, int* _out_Strlen);
void QAnimationDriver_TrUtf83(char* s, char* c, int n, char** _out, int* _out_Strlen);
void QAnimationDriver_Delete(QAnimationDriver* self);
#ifdef __cplusplus
} /* extern C */
#endif
#endif