2024-11-17 19:21:37 +13:00
|
|
|
#pragma once
|
|
|
|
#ifndef MIQT_QT_GEN_QFINALSTATE_H
|
|
|
|
#define MIQT_QT_GEN_QFINALSTATE_H
|
2024-08-25 16:08:24 +12:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
2024-10-16 18:07:56 +13:00
|
|
|
#include "../libmiqt/libmiqt.h"
|
2024-09-15 10:29:05 +12:00
|
|
|
|
2024-08-25 16:08:24 +12:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2024-11-19 19:29:06 +13:00
|
|
|
class QAbstractState;
|
2025-01-19 16:39:11 +13:00
|
|
|
class QChildEvent;
|
2024-11-19 19:29:06 +13:00
|
|
|
class QEvent;
|
2024-08-25 16:08:24 +12:00
|
|
|
class QFinalState;
|
2025-01-19 16:39:11 +13:00
|
|
|
class QMetaMethod;
|
2024-08-25 16:08:24 +12:00
|
|
|
class QMetaObject;
|
2024-11-19 19:29:06 +13:00
|
|
|
class QObject;
|
2024-08-25 16:08:24 +12:00
|
|
|
class QState;
|
2025-01-19 16:39:11 +13:00
|
|
|
class QTimerEvent;
|
2024-08-25 16:08:24 +12:00
|
|
|
#else
|
2024-11-19 19:29:06 +13:00
|
|
|
typedef struct QAbstractState QAbstractState;
|
2025-01-19 16:39:11 +13:00
|
|
|
typedef struct QChildEvent QChildEvent;
|
2024-11-19 19:29:06 +13:00
|
|
|
typedef struct QEvent QEvent;
|
2024-08-25 16:08:24 +12:00
|
|
|
typedef struct QFinalState QFinalState;
|
2025-01-19 16:39:11 +13:00
|
|
|
typedef struct QMetaMethod QMetaMethod;
|
2024-08-25 16:08:24 +12:00
|
|
|
typedef struct QMetaObject QMetaObject;
|
2024-11-19 19:29:06 +13:00
|
|
|
typedef struct QObject QObject;
|
2024-08-25 16:08:24 +12:00
|
|
|
typedef struct QState QState;
|
2025-01-19 16:39:11 +13:00
|
|
|
typedef struct QTimerEvent QTimerEvent;
|
2024-08-25 16:08:24 +12:00
|
|
|
#endif
|
|
|
|
|
2024-12-07 17:15:57 +13:00
|
|
|
QFinalState* QFinalState_new();
|
|
|
|
QFinalState* QFinalState_new2(QState* parent);
|
|
|
|
void QFinalState_virtbase(QFinalState* src, QAbstractState** outptr_QAbstractState);
|
2025-02-01 13:45:16 +13:00
|
|
|
QMetaObject* QFinalState_metaObject(const QFinalState* self);
|
|
|
|
void* QFinalState_metacast(QFinalState* self, const char* param1);
|
|
|
|
struct miqt_string QFinalState_tr(const char* s);
|
|
|
|
struct miqt_string QFinalState_trUtf8(const char* s);
|
|
|
|
void QFinalState_onEntry(QFinalState* self, QEvent* event);
|
|
|
|
void QFinalState_onExit(QFinalState* self, QEvent* event);
|
|
|
|
bool QFinalState_event(QFinalState* self, QEvent* e);
|
|
|
|
struct miqt_string QFinalState_tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QFinalState_tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QFinalState_trUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QFinalState_trUtf83(const char* s, const char* c, int n);
|
|
|
|
bool QFinalState_override_virtual_onEntry(void* self, intptr_t slot);
|
|
|
|
void QFinalState_virtualbase_onEntry(void* self, QEvent* event);
|
|
|
|
bool QFinalState_override_virtual_onExit(void* self, intptr_t slot);
|
|
|
|
void QFinalState_virtualbase_onExit(void* self, QEvent* event);
|
|
|
|
bool QFinalState_override_virtual_event(void* self, intptr_t slot);
|
|
|
|
bool QFinalState_virtualbase_event(void* self, QEvent* e);
|
|
|
|
bool QFinalState_override_virtual_eventFilter(void* self, intptr_t slot);
|
|
|
|
bool QFinalState_virtualbase_eventFilter(void* self, QObject* watched, QEvent* event);
|
|
|
|
bool QFinalState_override_virtual_timerEvent(void* self, intptr_t slot);
|
|
|
|
void QFinalState_virtualbase_timerEvent(void* self, QTimerEvent* event);
|
|
|
|
bool QFinalState_override_virtual_childEvent(void* self, intptr_t slot);
|
|
|
|
void QFinalState_virtualbase_childEvent(void* self, QChildEvent* event);
|
|
|
|
bool QFinalState_override_virtual_customEvent(void* self, intptr_t slot);
|
|
|
|
void QFinalState_virtualbase_customEvent(void* self, QEvent* event);
|
|
|
|
bool QFinalState_override_virtual_connectNotify(void* self, intptr_t slot);
|
|
|
|
void QFinalState_virtualbase_connectNotify(void* self, QMetaMethod* signal);
|
|
|
|
bool QFinalState_override_virtual_disconnectNotify(void* self, intptr_t slot);
|
|
|
|
void QFinalState_virtualbase_disconnectNotify(void* self, QMetaMethod* signal);
|
|
|
|
void QFinalState_delete(QFinalState* self);
|
2024-08-25 16:08:24 +12:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
2025-02-01 13:45:16 +13:00
|
|
|
#endif
|
2024-08-25 16:08:24 +12:00
|
|
|
|
|
|
|
#endif
|