mirror of
https://github.com/mappu/miqt.git
synced 2025-02-01 19:10:21 +00:00
69 lines
2.8 KiB
C++
69 lines
2.8 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT6_GEN_QACCESSIBLEPLUGIN_H
|
|
#define MIQT_QT6_GEN_QACCESSIBLEPLUGIN_H
|
|
|
|
#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
|
|
class QAccessibleInterface;
|
|
class QAccessiblePlugin;
|
|
class QChildEvent;
|
|
class QEvent;
|
|
class QMetaMethod;
|
|
class QMetaObject;
|
|
class QObject;
|
|
class QTimerEvent;
|
|
#else
|
|
typedef struct QAccessibleInterface QAccessibleInterface;
|
|
typedef struct QAccessiblePlugin QAccessiblePlugin;
|
|
typedef struct QChildEvent QChildEvent;
|
|
typedef struct QEvent QEvent;
|
|
typedef struct QMetaMethod QMetaMethod;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QObject QObject;
|
|
typedef struct QTimerEvent QTimerEvent;
|
|
#endif
|
|
|
|
QAccessiblePlugin* QAccessiblePlugin_new();
|
|
QAccessiblePlugin* QAccessiblePlugin_new2(QObject* parent);
|
|
void QAccessiblePlugin_virtbase(QAccessiblePlugin* src, QObject** outptr_QObject);
|
|
QMetaObject* QAccessiblePlugin_metaObject(const QAccessiblePlugin* self);
|
|
void* QAccessiblePlugin_metacast(QAccessiblePlugin* self, const char* param1);
|
|
struct miqt_string QAccessiblePlugin_tr(const char* s);
|
|
QAccessibleInterface* QAccessiblePlugin_create(QAccessiblePlugin* self, struct miqt_string key, QObject* object);
|
|
struct miqt_string QAccessiblePlugin_tr2(const char* s, const char* c);
|
|
struct miqt_string QAccessiblePlugin_tr3(const char* s, const char* c, int n);
|
|
bool QAccessiblePlugin_override_virtual_create(void* self, intptr_t slot);
|
|
QAccessibleInterface* QAccessiblePlugin_virtualbase_create(void* self, struct miqt_string key, QObject* object);
|
|
bool QAccessiblePlugin_override_virtual_event(void* self, intptr_t slot);
|
|
bool QAccessiblePlugin_virtualbase_event(void* self, QEvent* event);
|
|
bool QAccessiblePlugin_override_virtual_eventFilter(void* self, intptr_t slot);
|
|
bool QAccessiblePlugin_virtualbase_eventFilter(void* self, QObject* watched, QEvent* event);
|
|
bool QAccessiblePlugin_override_virtual_timerEvent(void* self, intptr_t slot);
|
|
void QAccessiblePlugin_virtualbase_timerEvent(void* self, QTimerEvent* event);
|
|
bool QAccessiblePlugin_override_virtual_childEvent(void* self, intptr_t slot);
|
|
void QAccessiblePlugin_virtualbase_childEvent(void* self, QChildEvent* event);
|
|
bool QAccessiblePlugin_override_virtual_customEvent(void* self, intptr_t slot);
|
|
void QAccessiblePlugin_virtualbase_customEvent(void* self, QEvent* event);
|
|
bool QAccessiblePlugin_override_virtual_connectNotify(void* self, intptr_t slot);
|
|
void QAccessiblePlugin_virtualbase_connectNotify(void* self, QMetaMethod* signal);
|
|
bool QAccessiblePlugin_override_virtual_disconnectNotify(void* self, intptr_t slot);
|
|
void QAccessiblePlugin_virtualbase_disconnectNotify(void* self, QMetaMethod* signal);
|
|
void QAccessiblePlugin_delete(QAccessiblePlugin* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|