2024-11-17 19:21:37 +13:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT6_GEN_QPROPERTYANIMATION_H
|
|
|
|
#define MIQT_QT6_GEN_QPROPERTYANIMATION_H
|
2024-10-20 18:21:03 +13:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
|
|
|
#include "../libmiqt/libmiqt.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2024-11-19 19:29:06 +13:00
|
|
|
class QAbstractAnimation;
|
2025-01-19 16:39:11 +13:00
|
|
|
class QChildEvent;
|
2024-11-19 19:29:06 +13:00
|
|
|
class QEvent;
|
2025-01-19 16:39:11 +13:00
|
|
|
class QMetaMethod;
|
2024-10-20 18:21:03 +13:00
|
|
|
class QMetaObject;
|
|
|
|
class QObject;
|
|
|
|
class QPropertyAnimation;
|
2025-01-19 16:39:11 +13:00
|
|
|
class QTimerEvent;
|
2024-11-19 19:29:06 +13:00
|
|
|
class QVariant;
|
|
|
|
class QVariantAnimation;
|
2024-10-20 18:21:03 +13:00
|
|
|
#else
|
2024-11-19 19:29:06 +13:00
|
|
|
typedef struct QAbstractAnimation QAbstractAnimation;
|
2025-01-19 16:39:11 +13:00
|
|
|
typedef struct QChildEvent QChildEvent;
|
2024-11-19 19:29:06 +13:00
|
|
|
typedef struct QEvent QEvent;
|
2025-01-19 16:39:11 +13:00
|
|
|
typedef struct QMetaMethod QMetaMethod;
|
2024-10-20 18:21:03 +13:00
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
typedef struct QObject QObject;
|
|
|
|
typedef struct QPropertyAnimation QPropertyAnimation;
|
2025-01-19 16:39:11 +13:00
|
|
|
typedef struct QTimerEvent QTimerEvent;
|
2024-11-19 19:29:06 +13:00
|
|
|
typedef struct QVariant QVariant;
|
|
|
|
typedef struct QVariantAnimation QVariantAnimation;
|
2024-10-20 18:21:03 +13:00
|
|
|
#endif
|
|
|
|
|
2024-12-07 17:15:57 +13:00
|
|
|
QPropertyAnimation* QPropertyAnimation_new();
|
|
|
|
QPropertyAnimation* QPropertyAnimation_new2(QObject* target, struct miqt_string propertyName);
|
|
|
|
QPropertyAnimation* QPropertyAnimation_new3(QObject* parent);
|
|
|
|
QPropertyAnimation* QPropertyAnimation_new4(QObject* target, struct miqt_string propertyName, QObject* parent);
|
|
|
|
void QPropertyAnimation_virtbase(QPropertyAnimation* src, QVariantAnimation** outptr_QVariantAnimation);
|
2024-10-20 18:21:03 +13:00
|
|
|
QMetaObject* QPropertyAnimation_MetaObject(const QPropertyAnimation* self);
|
|
|
|
void* QPropertyAnimation_Metacast(QPropertyAnimation* self, const char* param1);
|
|
|
|
struct miqt_string QPropertyAnimation_Tr(const char* s);
|
|
|
|
QObject* QPropertyAnimation_TargetObject(const QPropertyAnimation* self);
|
|
|
|
void QPropertyAnimation_SetTargetObject(QPropertyAnimation* self, QObject* target);
|
|
|
|
struct miqt_string QPropertyAnimation_PropertyName(const QPropertyAnimation* self);
|
|
|
|
void QPropertyAnimation_SetPropertyName(QPropertyAnimation* self, struct miqt_string propertyName);
|
2024-11-19 19:29:06 +13:00
|
|
|
bool QPropertyAnimation_Event(QPropertyAnimation* self, QEvent* event);
|
|
|
|
void QPropertyAnimation_UpdateCurrentValue(QPropertyAnimation* self, QVariant* value);
|
|
|
|
void QPropertyAnimation_UpdateState(QPropertyAnimation* self, int newState, int oldState);
|
2024-10-20 18:21:03 +13:00
|
|
|
struct miqt_string QPropertyAnimation_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QPropertyAnimation_Tr3(const char* s, const char* c, int n);
|
2025-01-18 17:57:48 +13:00
|
|
|
bool QPropertyAnimation_override_virtual_Event(void* self, intptr_t slot);
|
2024-11-19 19:29:06 +13:00
|
|
|
bool QPropertyAnimation_virtualbase_Event(void* self, QEvent* event);
|
2025-01-18 17:57:48 +13:00
|
|
|
bool QPropertyAnimation_override_virtual_UpdateCurrentValue(void* self, intptr_t slot);
|
2024-11-19 19:29:06 +13:00
|
|
|
void QPropertyAnimation_virtualbase_UpdateCurrentValue(void* self, QVariant* value);
|
2025-01-18 17:57:48 +13:00
|
|
|
bool QPropertyAnimation_override_virtual_UpdateState(void* self, intptr_t slot);
|
2024-11-19 19:29:06 +13:00
|
|
|
void QPropertyAnimation_virtualbase_UpdateState(void* self, int newState, int oldState);
|
2025-01-18 17:57:48 +13:00
|
|
|
bool QPropertyAnimation_override_virtual_Duration(void* self, intptr_t slot);
|
2024-11-19 19:29:06 +13:00
|
|
|
int QPropertyAnimation_virtualbase_Duration(const void* self);
|
2025-01-18 17:57:48 +13:00
|
|
|
bool QPropertyAnimation_override_virtual_UpdateCurrentTime(void* self, intptr_t slot);
|
2024-11-19 19:29:06 +13:00
|
|
|
void QPropertyAnimation_virtualbase_UpdateCurrentTime(void* self, int param1);
|
2025-01-18 17:57:48 +13:00
|
|
|
bool QPropertyAnimation_override_virtual_Interpolated(void* self, intptr_t slot);
|
2024-11-19 19:29:06 +13:00
|
|
|
QVariant* QPropertyAnimation_virtualbase_Interpolated(const void* self, QVariant* from, QVariant* to, double progress);
|
2025-01-19 16:39:11 +13:00
|
|
|
bool QPropertyAnimation_override_virtual_UpdateDirection(void* self, intptr_t slot);
|
|
|
|
void QPropertyAnimation_virtualbase_UpdateDirection(void* self, int direction);
|
|
|
|
bool QPropertyAnimation_override_virtual_EventFilter(void* self, intptr_t slot);
|
|
|
|
bool QPropertyAnimation_virtualbase_EventFilter(void* self, QObject* watched, QEvent* event);
|
|
|
|
bool QPropertyAnimation_override_virtual_TimerEvent(void* self, intptr_t slot);
|
|
|
|
void QPropertyAnimation_virtualbase_TimerEvent(void* self, QTimerEvent* event);
|
|
|
|
bool QPropertyAnimation_override_virtual_ChildEvent(void* self, intptr_t slot);
|
|
|
|
void QPropertyAnimation_virtualbase_ChildEvent(void* self, QChildEvent* event);
|
|
|
|
bool QPropertyAnimation_override_virtual_CustomEvent(void* self, intptr_t slot);
|
|
|
|
void QPropertyAnimation_virtualbase_CustomEvent(void* self, QEvent* event);
|
|
|
|
bool QPropertyAnimation_override_virtual_ConnectNotify(void* self, intptr_t slot);
|
|
|
|
void QPropertyAnimation_virtualbase_ConnectNotify(void* self, QMetaMethod* signal);
|
|
|
|
bool QPropertyAnimation_override_virtual_DisconnectNotify(void* self, intptr_t slot);
|
|
|
|
void QPropertyAnimation_virtualbase_DisconnectNotify(void* self, QMetaMethod* signal);
|
2025-01-18 17:42:41 +13:00
|
|
|
void QPropertyAnimation_Delete(QPropertyAnimation* self);
|
2024-10-20 18:21:03 +13:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|