mirror of
https://github.com/mappu/miqt.git
synced 2025-01-03 14:18:37 +00:00
49 lines
1.6 KiB
C++
49 lines
1.6 KiB
C++
#ifndef GEN_QACCESSIBLEOBJECT_H
|
|
#define GEN_QACCESSIBLEOBJECT_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QAccessibleApplication;
|
|
class QAccessibleInterface;
|
|
class QAccessibleObject;
|
|
class QObject;
|
|
class QRect;
|
|
class QWindow;
|
|
#else
|
|
typedef struct QAccessibleApplication QAccessibleApplication;
|
|
typedef struct QAccessibleInterface QAccessibleInterface;
|
|
typedef struct QAccessibleObject QAccessibleObject;
|
|
typedef struct QObject QObject;
|
|
typedef struct QRect QRect;
|
|
typedef struct QWindow QWindow;
|
|
#endif
|
|
|
|
bool QAccessibleObject_IsValid(QAccessibleObject* self);
|
|
QObject* QAccessibleObject_Object(QAccessibleObject* self);
|
|
QRect* QAccessibleObject_Rect(QAccessibleObject* self);
|
|
QAccessibleInterface* QAccessibleObject_ChildAt(QAccessibleObject* self, int x, int y);
|
|
|
|
QAccessibleApplication* QAccessibleApplication_new();
|
|
QWindow* QAccessibleApplication_Window(QAccessibleApplication* self);
|
|
int QAccessibleApplication_ChildCount(QAccessibleApplication* self);
|
|
int QAccessibleApplication_IndexOfChild(QAccessibleApplication* self, QAccessibleInterface* param1);
|
|
QAccessibleInterface* QAccessibleApplication_FocusChild(QAccessibleApplication* self);
|
|
QAccessibleInterface* QAccessibleApplication_Parent(QAccessibleApplication* self);
|
|
QAccessibleInterface* QAccessibleApplication_Child(QAccessibleApplication* self, int index);
|
|
void QAccessibleApplication_Delete(QAccessibleApplication* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|