2024-08-25 04:08:24 +00:00
|
|
|
#ifndef GEN_QEVENTLOOP_H
|
|
|
|
#define GEN_QEVENTLOOP_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
2024-10-16 05:07:56 +00:00
|
|
|
#include "../libmiqt/libmiqt.h"
|
2024-09-14 22:29:05 +00:00
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class QEvent;
|
|
|
|
class QEventLoop;
|
|
|
|
class QEventLoopLocker;
|
|
|
|
class QMetaObject;
|
|
|
|
class QObject;
|
|
|
|
class QThread;
|
|
|
|
#else
|
|
|
|
typedef struct QEvent QEvent;
|
|
|
|
typedef struct QEventLoop QEventLoop;
|
|
|
|
typedef struct QEventLoopLocker QEventLoopLocker;
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
typedef struct QObject QObject;
|
|
|
|
typedef struct QThread QThread;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
QEventLoop* QEventLoop_new();
|
|
|
|
QEventLoop* QEventLoop_new2(QObject* parent);
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QEventLoop_MetaObject(const QEventLoop* self);
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QEventLoop_Metacast(QEventLoop* self, const char* param1);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QEventLoop_Tr(const char* s);
|
|
|
|
struct miqt_string QEventLoop_TrUtf8(const char* s);
|
2024-08-29 07:01:51 +00:00
|
|
|
bool QEventLoop_ProcessEvents(QEventLoop* self);
|
|
|
|
void QEventLoop_ProcessEvents2(QEventLoop* self, int flags, int maximumTime);
|
|
|
|
int QEventLoop_Exec(QEventLoop* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QEventLoop_Exit(QEventLoop* self);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QEventLoop_IsRunning(const QEventLoop* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QEventLoop_WakeUp(QEventLoop* self);
|
|
|
|
bool QEventLoop_Event(QEventLoop* self, QEvent* event);
|
|
|
|
void QEventLoop_Quit(QEventLoop* self);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QEventLoop_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QEventLoop_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QEventLoop_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QEventLoop_TrUtf83(const char* s, const char* c, int n);
|
2024-08-29 07:01:51 +00:00
|
|
|
bool QEventLoop_ProcessEvents1(QEventLoop* self, int flags);
|
|
|
|
int QEventLoop_Exec1(QEventLoop* self, int flags);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QEventLoop_Exit1(QEventLoop* self, int returnCode);
|
|
|
|
void QEventLoop_Delete(QEventLoop* self);
|
|
|
|
|
|
|
|
QEventLoopLocker* QEventLoopLocker_new();
|
|
|
|
QEventLoopLocker* QEventLoopLocker_new2(QEventLoop* loop);
|
|
|
|
QEventLoopLocker* QEventLoopLocker_new3(QThread* thread);
|
|
|
|
void QEventLoopLocker_Delete(QEventLoopLocker* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|