2024-08-25 04:08:24 +00:00
|
|
|
#ifndef GEN_QACCESSIBLEBRIDGE_H
|
|
|
|
#define GEN_QACCESSIBLEBRIDGE_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
#include "binding.h"
|
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
class QAccessibleBridge;
|
|
|
|
class QAccessibleBridgePlugin;
|
|
|
|
class QAccessibleEvent;
|
|
|
|
class QAccessibleInterface;
|
|
|
|
class QMetaObject;
|
|
|
|
#else
|
|
|
|
typedef struct QAccessibleBridge QAccessibleBridge;
|
|
|
|
typedef struct QAccessibleBridgePlugin QAccessibleBridgePlugin;
|
|
|
|
typedef struct QAccessibleEvent QAccessibleEvent;
|
|
|
|
typedef struct QAccessibleInterface QAccessibleInterface;
|
|
|
|
typedef struct QMetaObject QMetaObject;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void QAccessibleBridge_SetRootObject(QAccessibleBridge* self, QAccessibleInterface* rootObject);
|
|
|
|
void QAccessibleBridge_NotifyAccessibilityUpdate(QAccessibleBridge* self, QAccessibleEvent* event);
|
|
|
|
void QAccessibleBridge_OperatorAssign(QAccessibleBridge* self, QAccessibleBridge* param1);
|
|
|
|
void QAccessibleBridge_Delete(QAccessibleBridge* self);
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QMetaObject* QAccessibleBridgePlugin_MetaObject(const QAccessibleBridgePlugin* self);
|
2024-09-20 22:32:57 +00:00
|
|
|
void* QAccessibleBridgePlugin_Metacast(QAccessibleBridgePlugin* self, const char* param1);
|
2024-09-14 22:29:05 +00:00
|
|
|
struct miqt_string* QAccessibleBridgePlugin_Tr(const char* s);
|
|
|
|
struct miqt_string* QAccessibleBridgePlugin_TrUtf8(const char* s);
|
|
|
|
QAccessibleBridge* QAccessibleBridgePlugin_Create(QAccessibleBridgePlugin* self, struct miqt_string* key);
|
|
|
|
struct miqt_string* QAccessibleBridgePlugin_Tr2(const char* s, const char* c);
|
|
|
|
struct miqt_string* QAccessibleBridgePlugin_Tr3(const char* s, const char* c, int n);
|
|
|
|
struct miqt_string* QAccessibleBridgePlugin_TrUtf82(const char* s, const char* c);
|
|
|
|
struct miqt_string* QAccessibleBridgePlugin_TrUtf83(const char* s, const char* c, int n);
|
2024-08-25 04:08:24 +00:00
|
|
|
void QAccessibleBridgePlugin_Delete(QAccessibleBridgePlugin* self);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern C */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|