miqt/qt6/gen_qeventloop.h

84 lines
3.1 KiB
C
Raw Permalink Normal View History

#pragma once
#ifndef MIQT_QT6_GEN_QEVENTLOOP_H
#define MIQT_QT6_GEN_QEVENTLOOP_H
2024-10-20 05:21:03 +00: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 06:29:06 +00:00
class QChildEvent;
2024-10-20 05:21:03 +00:00
class QEvent;
class QEventLoop;
class QEventLoopLocker;
2024-11-19 06:29:06 +00:00
class QMetaMethod;
2024-10-20 05:21:03 +00:00
class QMetaObject;
class QObject;
class QThread;
2024-11-19 06:29:06 +00:00
class QTimerEvent;
2024-10-20 05:21:03 +00:00
#else
2024-11-19 06:29:06 +00:00
typedef struct QChildEvent QChildEvent;
2024-10-20 05:21:03 +00:00
typedef struct QEvent QEvent;
typedef struct QEventLoop QEventLoop;
typedef struct QEventLoopLocker QEventLoopLocker;
2024-11-19 06:29:06 +00:00
typedef struct QMetaMethod QMetaMethod;
2024-10-20 05:21:03 +00:00
typedef struct QMetaObject QMetaObject;
typedef struct QObject QObject;
typedef struct QThread QThread;
2024-11-19 06:29:06 +00:00
typedef struct QTimerEvent QTimerEvent;
2024-10-20 05:21:03 +00:00
#endif
2024-12-07 04:15:57 +00:00
QEventLoop* QEventLoop_new();
QEventLoop* QEventLoop_new2(QObject* parent);
void QEventLoop_virtbase(QEventLoop* src, QObject** outptr_QObject);
2024-10-20 05:21:03 +00:00
QMetaObject* QEventLoop_MetaObject(const QEventLoop* self);
void* QEventLoop_Metacast(QEventLoop* self, const char* param1);
struct miqt_string QEventLoop_Tr(const char* s);
bool QEventLoop_ProcessEvents(QEventLoop* self);
void QEventLoop_ProcessEvents2(QEventLoop* self, int flags, int maximumTime);
int QEventLoop_Exec(QEventLoop* self);
bool QEventLoop_IsRunning(const QEventLoop* self);
void QEventLoop_WakeUp(QEventLoop* self);
bool QEventLoop_Event(QEventLoop* self, QEvent* event);
void QEventLoop_Exit(QEventLoop* self);
void QEventLoop_Quit(QEventLoop* self);
struct miqt_string QEventLoop_Tr2(const char* s, const char* c);
struct miqt_string QEventLoop_Tr3(const char* s, const char* c, int n);
bool QEventLoop_ProcessEvents1(QEventLoop* self, int flags);
int QEventLoop_Exec1(QEventLoop* self, int flags);
void QEventLoop_Exit1(QEventLoop* self, int returnCode);
2024-11-19 06:29:06 +00:00
void QEventLoop_override_virtual_Event(void* self, intptr_t slot);
bool QEventLoop_virtualbase_Event(void* self, QEvent* event);
void QEventLoop_override_virtual_EventFilter(void* self, intptr_t slot);
bool QEventLoop_virtualbase_EventFilter(void* self, QObject* watched, QEvent* event);
void QEventLoop_override_virtual_TimerEvent(void* self, intptr_t slot);
void QEventLoop_virtualbase_TimerEvent(void* self, QTimerEvent* event);
void QEventLoop_override_virtual_ChildEvent(void* self, intptr_t slot);
void QEventLoop_virtualbase_ChildEvent(void* self, QChildEvent* event);
void QEventLoop_override_virtual_CustomEvent(void* self, intptr_t slot);
void QEventLoop_virtualbase_CustomEvent(void* self, QEvent* event);
void QEventLoop_override_virtual_ConnectNotify(void* self, intptr_t slot);
void QEventLoop_virtualbase_ConnectNotify(void* self, QMetaMethod* signal);
void QEventLoop_override_virtual_DisconnectNotify(void* self, intptr_t slot);
void QEventLoop_virtualbase_DisconnectNotify(void* self, QMetaMethod* signal);
void QEventLoop_Delete(QEventLoop* self, bool isSubclass);
2024-10-20 05:21:03 +00:00
2024-12-07 04:15:57 +00:00
QEventLoopLocker* QEventLoopLocker_new();
QEventLoopLocker* QEventLoopLocker_new2(QEventLoop* loop);
QEventLoopLocker* QEventLoopLocker_new3(QThread* thread);
2024-11-19 06:29:06 +00:00
void QEventLoopLocker_Delete(QEventLoopLocker* self, bool isSubclass);
2024-10-20 05:21:03 +00:00
#ifdef __cplusplus
} /* extern C */
#endif
#endif