2024-08-25 04:08:24 +00:00
|
|
|
#ifndef GEN_QOBJECT_H
|
|
|
|
#define GEN_QOBJECT_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 QByteArray;
|
|
|
|
class QEvent;
|
|
|
|
class QMetaMethod;
|
|
|
|
class QMetaObject;
|
2024-08-29 07:01:51 +00:00
|
|
|
#if defined(WORKAROUND_INNER_CLASS_DEFINITION_QMetaObject__Connection)
|
|
|
|
typedef QMetaObject::Connection QMetaObject__Connection;
|
|
|
|
#else
|
|
|
|
class QMetaObject__Connection;
|
|
|
|
#endif
|
2024-08-25 04:08:24 +00:00
|
|
|
class QObject;
|
|
|
|
class QObjectData;
|
|
|
|
class QObjectUserData;
|
|
|
|
class QSignalBlocker;
|
|
|
|
class QThread;
|
|
|
|
class QVariant;
|
|
|
|
#else
|
|
|
|
typedef struct QByteArray QByteArray;
|
|
|
|
typedef struct QEvent QEvent;
|
|
|
|
typedef struct QMetaMethod QMetaMethod;
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
2024-08-29 07:01:51 +00:00
|
|
|
typedef struct QMetaObject__Connection QMetaObject__Connection;
|
2024-08-25 04:08:24 +00:00
|
|
|
typedef struct QObject QObject;
|
|
|
|
typedef struct QObjectData QObjectData;
|
|
|
|
typedef struct QObjectUserData QObjectUserData;
|
|
|
|
typedef struct QSignalBlocker QSignalBlocker;
|
|
|
|
typedef struct QThread QThread;
|
|
|
|
typedef struct QVariant QVariant;
|
|
|
|
#endif
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QObjectData_DynamicMetaObject(const QObjectData* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QObjectData_Delete(QObjectData* self);
|
|
|
|
|
|
|
|
QObject* QObject_new();
|
|
|
|
QObject* QObject_new2(QObject* parent);
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QObject_MetaObject(const QObject* self);
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QObject_Metacast(QObject* self, const char* param1);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QObject_Tr(const char* s);
|
|
|
|
struct miqt_string QObject_TrUtf8(const char* s);
|
2024-08-25 04:08:24 +00:00
|
|
|
bool QObject_Event(QObject* self, QEvent* event);
|
|
|
|
bool QObject_EventFilter(QObject* self, QObject* watched, QEvent* event);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QObject_ObjectName(const QObject* self);
|
|
|
|
void QObject_SetObjectName(QObject* self, struct miqt_string name);
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QObject_IsWidgetType(const QObject* self);
|
|
|
|
bool QObject_IsWindowType(const QObject* self);
|
|
|
|
bool QObject_SignalsBlocked(const QObject* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
bool QObject_BlockSignals(QObject* self, bool b);
|
2024-09-11 05:41:09 +00:00
|
|
|
QThread* QObject_Thread(const QObject* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QObject_MoveToThread(QObject* self, QThread* thread);
|
2024-08-29 07:01:51 +00:00
|
|
|
int QObject_StartTimer(QObject* self, int interval);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QObject_KillTimer(QObject* self, int id);
|
2024-11-04 07:18:27 +00:00
|
|
|
struct miqt_array QObject_Children(const QObject* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QObject_SetParent(QObject* self, QObject* parent);
|
|
|
|
void QObject_InstallEventFilter(QObject* self, QObject* filterObj);
|
|
|
|
void QObject_RemoveEventFilter(QObject* self, QObject* obj);
|
2024-08-29 07:01:51 +00:00
|
|
|
QMetaObject__Connection* QObject_Connect(QObject* sender, QMetaMethod* signal, QObject* receiver, QMetaMethod* method);
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject__Connection* QObject_Connect2(const QObject* self, QObject* sender, const char* signal, const char* member);
|
2024-08-25 04:08:24 +00:00
|
|
|
bool QObject_Disconnect(QObject* sender, QMetaMethod* signal, QObject* receiver, QMetaMethod* member);
|
2024-08-29 07:01:51 +00:00
|
|
|
bool QObject_DisconnectWithQMetaObjectConnection(QMetaObject__Connection* param1);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QObject_DumpObjectTree(QObject* self);
|
|
|
|
void QObject_DumpObjectInfo(QObject* self);
|
2024-09-11 05:41:09 +00:00
|
|
|
void QObject_DumpObjectTree2(const QObject* self);
|
|
|
|
void QObject_DumpObjectInfo2(const QObject* self);
|
2024-08-29 07:01:51 +00:00
|
|
|
bool QObject_SetProperty(QObject* self, const char* name, QVariant* value);
|
2024-09-11 05:41:09 +00:00
|
|
|
QVariant* QObject_Property(const QObject* self, const char* name);
|
2024-11-04 07:18:27 +00:00
|
|
|
struct miqt_array QObject_DynamicPropertyNames(const QObject* self);
|
2024-08-25 04:08:24 +00:00
|
|
|
unsigned int QObject_RegisterUserData();
|
|
|
|
void QObject_SetUserData(QObject* self, unsigned int id, QObjectUserData* data);
|
2024-09-11 05:41:09 +00:00
|
|
|
QObjectUserData* QObject_UserData(const QObject* self, unsigned int id);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QObject_Destroyed(QObject* self);
|
2024-10-13 06:06:06 +00:00
|
|
|
void QObject_connect_Destroyed(QObject* self, intptr_t slot);
|
2024-09-11 05:41:09 +00:00
|
|
|
QObject* QObject_Parent(const QObject* self);
|
|
|
|
bool QObject_Inherits(const QObject* self, const char* classname);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QObject_DeleteLater(QObject* self);
|
2024-10-18 23:53:33 +00:00
|
|
|
struct miqt_string QObject_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string QObject_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string QObject_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string QObject_TrUtf83(const char* s, const char* c, int n);
|
2024-09-18 00:12:02 +00:00
|
|
|
int QObject_StartTimer2(QObject* self, int interval, int timerType);
|
|
|
|
QMetaObject__Connection* QObject_Connect5(QObject* sender, QMetaMethod* signal, QObject* receiver, QMetaMethod* method, int typeVal);
|
|
|
|
QMetaObject__Connection* QObject_Connect4(const QObject* self, QObject* sender, const char* signal, const char* member, int typeVal);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QObject_Destroyed1(QObject* self, QObject* param1);
|
2024-10-13 06:06:06 +00:00
|
|
|
void QObject_connect_Destroyed1(QObject* self, intptr_t slot);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QObject_Delete(QObject* self);
|
|
|
|
|
|
|
|
QObjectUserData* QObjectUserData_new();
|
|
|
|
void QObjectUserData_Delete(QObjectUserData* self);
|
|
|
|
|
|
|
|
QSignalBlocker* QSignalBlocker_new(QObject* o);
|
|
|
|
QSignalBlocker* QSignalBlocker_new2(QObject* o);
|
|
|
|
void QSignalBlocker_Reblock(QSignalBlocker* self);
|
|
|
|
void QSignalBlocker_Unblock(QSignalBlocker* self);
|
|
|
|
void QSignalBlocker_Delete(QSignalBlocker* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|