mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
88 lines
3.1 KiB
C++
88 lines
3.1 KiB
C++
#include <QAccessibleBridge>
|
|
#include <QAccessibleBridgePlugin>
|
|
#include <QAccessibleEvent>
|
|
#include <QAccessibleInterface>
|
|
#include <QMetaObject>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include "qaccessiblebridge.h"
|
|
#include "gen_qaccessiblebridge.h"
|
|
#include "_cgo_export.h"
|
|
|
|
void QAccessibleBridge_SetRootObject(QAccessibleBridge* self, QAccessibleInterface* rootObject) {
|
|
self->setRootObject(rootObject);
|
|
}
|
|
|
|
void QAccessibleBridge_NotifyAccessibilityUpdate(QAccessibleBridge* self, QAccessibleEvent* event) {
|
|
self->notifyAccessibilityUpdate(event);
|
|
}
|
|
|
|
void QAccessibleBridge_OperatorAssign(QAccessibleBridge* self, QAccessibleBridge* param1) {
|
|
self->operator=(*param1);
|
|
}
|
|
|
|
void QAccessibleBridge_Delete(QAccessibleBridge* self) {
|
|
delete self;
|
|
}
|
|
|
|
QMetaObject* QAccessibleBridgePlugin_MetaObject(const QAccessibleBridgePlugin* self) {
|
|
return (QMetaObject*) self->metaObject();
|
|
}
|
|
|
|
void* QAccessibleBridgePlugin_Metacast(QAccessibleBridgePlugin* self, const char* param1) {
|
|
return self->qt_metacast(param1);
|
|
}
|
|
|
|
struct miqt_string* QAccessibleBridgePlugin_Tr(const char* s) {
|
|
QString _ret = QAccessibleBridgePlugin::tr(s);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
return miqt_strdup(_b.data(), _b.length());
|
|
}
|
|
|
|
struct miqt_string* QAccessibleBridgePlugin_TrUtf8(const char* s) {
|
|
QString _ret = QAccessibleBridgePlugin::trUtf8(s);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
return miqt_strdup(_b.data(), _b.length());
|
|
}
|
|
|
|
QAccessibleBridge* QAccessibleBridgePlugin_Create(QAccessibleBridgePlugin* self, struct miqt_string* key) {
|
|
QString key_QString = QString::fromUtf8(&key->data, key->len);
|
|
return self->create(key_QString);
|
|
}
|
|
|
|
struct miqt_string* QAccessibleBridgePlugin_Tr2(const char* s, const char* c) {
|
|
QString _ret = QAccessibleBridgePlugin::tr(s, c);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
return miqt_strdup(_b.data(), _b.length());
|
|
}
|
|
|
|
struct miqt_string* QAccessibleBridgePlugin_Tr3(const char* s, const char* c, int n) {
|
|
QString _ret = QAccessibleBridgePlugin::tr(s, c, static_cast<int>(n));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
return miqt_strdup(_b.data(), _b.length());
|
|
}
|
|
|
|
struct miqt_string* QAccessibleBridgePlugin_TrUtf82(const char* s, const char* c) {
|
|
QString _ret = QAccessibleBridgePlugin::trUtf8(s, c);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
return miqt_strdup(_b.data(), _b.length());
|
|
}
|
|
|
|
struct miqt_string* QAccessibleBridgePlugin_TrUtf83(const char* s, const char* c, int n) {
|
|
QString _ret = QAccessibleBridgePlugin::trUtf8(s, c, static_cast<int>(n));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
return miqt_strdup(_b.data(), _b.length());
|
|
}
|
|
|
|
void QAccessibleBridgePlugin_Delete(QAccessibleBridgePlugin* self) {
|
|
delete self;
|
|
}
|
|
|