mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
1070 lines
42 KiB
C++
1070 lines
42 KiB
C++
#include <QAccessible>
|
|
#define WORKAROUND_INNER_CLASS_DEFINITION_QAccessible__ActivationObserver
|
|
#define WORKAROUND_INNER_CLASS_DEFINITION_QAccessible__State
|
|
#include <QAccessibleActionInterface>
|
|
#include <QAccessibleEditableTextInterface>
|
|
#include <QAccessibleEvent>
|
|
#include <QAccessibleImageInterface>
|
|
#include <QAccessibleInterface>
|
|
#include <QAccessibleStateChangeEvent>
|
|
#include <QAccessibleTableCellInterface>
|
|
#include <QAccessibleTableInterface>
|
|
#include <QAccessibleTableModelChangeEvent>
|
|
#include <QAccessibleTextCursorEvent>
|
|
#include <QAccessibleTextInsertEvent>
|
|
#include <QAccessibleTextInterface>
|
|
#include <QAccessibleTextRemoveEvent>
|
|
#include <QAccessibleTextSelectionEvent>
|
|
#include <QAccessibleTextUpdateEvent>
|
|
#include <QAccessibleValueChangeEvent>
|
|
#include <QAccessibleValueInterface>
|
|
#include <QColor>
|
|
#include <QList>
|
|
#include <QObject>
|
|
#include <QPoint>
|
|
#include <QRect>
|
|
#include <QSize>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QVariant>
|
|
#include <QWindow>
|
|
#include "qaccessible.h"
|
|
|
|
#include "gen_qaccessible.h"
|
|
|
|
extern "C" {
|
|
extern void miqt_exec_callback(void* cb, int argc, void* argv);
|
|
}
|
|
|
|
void QAccessible_InstallActivationObserver(QAccessible__ActivationObserver* param1) {
|
|
QAccessible::installActivationObserver(param1);
|
|
}
|
|
|
|
void QAccessible_RemoveActivationObserver(QAccessible__ActivationObserver* param1) {
|
|
QAccessible::removeActivationObserver(param1);
|
|
}
|
|
|
|
QAccessibleInterface* QAccessible_QueryAccessibleInterface(QObject* param1) {
|
|
return QAccessible::queryAccessibleInterface(param1);
|
|
}
|
|
|
|
unsigned int QAccessible_UniqueId(QAccessibleInterface* iface) {
|
|
return QAccessible::uniqueId(iface);
|
|
}
|
|
|
|
QAccessibleInterface* QAccessible_AccessibleInterface(unsigned int uniqueId) {
|
|
return QAccessible::accessibleInterface(static_cast<QAccessible::Id>(uniqueId));
|
|
}
|
|
|
|
unsigned int QAccessible_RegisterAccessibleInterface(QAccessibleInterface* iface) {
|
|
return QAccessible::registerAccessibleInterface(iface);
|
|
}
|
|
|
|
void QAccessible_DeleteAccessibleInterface(unsigned int uniqueId) {
|
|
QAccessible::deleteAccessibleInterface(static_cast<QAccessible::Id>(uniqueId));
|
|
}
|
|
|
|
void QAccessible_UpdateAccessibility(QAccessibleEvent* event) {
|
|
QAccessible::updateAccessibility(event);
|
|
}
|
|
|
|
bool QAccessible_IsActive() {
|
|
return QAccessible::isActive();
|
|
}
|
|
|
|
void QAccessible_SetActive(bool active) {
|
|
QAccessible::setActive(active);
|
|
}
|
|
|
|
void QAccessible_SetRootObject(QObject* object) {
|
|
QAccessible::setRootObject(object);
|
|
}
|
|
|
|
void QAccessible_Cleanup() {
|
|
QAccessible::cleanup();
|
|
}
|
|
|
|
void QAccessible_Delete(QAccessible* self) {
|
|
delete self;
|
|
}
|
|
|
|
bool QAccessibleInterface_IsValid(const QAccessibleInterface* self) {
|
|
return self->isValid();
|
|
}
|
|
|
|
QObject* QAccessibleInterface_Object(const QAccessibleInterface* self) {
|
|
return self->object();
|
|
}
|
|
|
|
QWindow* QAccessibleInterface_Window(const QAccessibleInterface* self) {
|
|
return self->window();
|
|
}
|
|
|
|
QAccessibleInterface* QAccessibleInterface_FocusChild(const QAccessibleInterface* self) {
|
|
return self->focusChild();
|
|
}
|
|
|
|
QAccessibleInterface* QAccessibleInterface_ChildAt(const QAccessibleInterface* self, int x, int y) {
|
|
return self->childAt(static_cast<int>(x), static_cast<int>(y));
|
|
}
|
|
|
|
QAccessibleInterface* QAccessibleInterface_Parent(const QAccessibleInterface* self) {
|
|
return self->parent();
|
|
}
|
|
|
|
QAccessibleInterface* QAccessibleInterface_Child(const QAccessibleInterface* self, int index) {
|
|
return self->child(static_cast<int>(index));
|
|
}
|
|
|
|
int QAccessibleInterface_ChildCount(const QAccessibleInterface* self) {
|
|
return self->childCount();
|
|
}
|
|
|
|
int QAccessibleInterface_IndexOfChild(const QAccessibleInterface* self, QAccessibleInterface* param1) {
|
|
return self->indexOfChild(param1);
|
|
}
|
|
|
|
void QAccessibleInterface_Text(const QAccessibleInterface* self, uintptr_t t, char** _out, int* _out_Strlen) {
|
|
QString ret = self->text(static_cast<QAccessible::Text>(t));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleInterface_SetText(QAccessibleInterface* self, uintptr_t t, const char* text, size_t text_Strlen) {
|
|
QString text_QString = QString::fromUtf8(text, text_Strlen);
|
|
self->setText(static_cast<QAccessible::Text>(t), text_QString);
|
|
}
|
|
|
|
QRect* QAccessibleInterface_Rect(const QAccessibleInterface* self) {
|
|
QRect ret = self->rect();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QRect*>(new QRect(ret));
|
|
}
|
|
|
|
uintptr_t QAccessibleInterface_Role(const QAccessibleInterface* self) {
|
|
QAccessible::Role ret = self->role();
|
|
return static_cast<uintptr_t>(ret);
|
|
}
|
|
|
|
QAccessible__State* QAccessibleInterface_State(const QAccessibleInterface* self) {
|
|
QAccessible::State ret = self->state();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QAccessible::State*>(new QAccessible::State(ret));
|
|
}
|
|
|
|
QColor* QAccessibleInterface_ForegroundColor(const QAccessibleInterface* self) {
|
|
QColor ret = self->foregroundColor();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QColor*>(new QColor(ret));
|
|
}
|
|
|
|
QColor* QAccessibleInterface_BackgroundColor(const QAccessibleInterface* self) {
|
|
QColor ret = self->backgroundColor();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QColor*>(new QColor(ret));
|
|
}
|
|
|
|
QAccessibleTextInterface* QAccessibleInterface_TextInterface(QAccessibleInterface* self) {
|
|
return self->textInterface();
|
|
}
|
|
|
|
QAccessibleEditableTextInterface* QAccessibleInterface_EditableTextInterface(QAccessibleInterface* self) {
|
|
return self->editableTextInterface();
|
|
}
|
|
|
|
QAccessibleValueInterface* QAccessibleInterface_ValueInterface(QAccessibleInterface* self) {
|
|
return self->valueInterface();
|
|
}
|
|
|
|
QAccessibleActionInterface* QAccessibleInterface_ActionInterface(QAccessibleInterface* self) {
|
|
return self->actionInterface();
|
|
}
|
|
|
|
QAccessibleImageInterface* QAccessibleInterface_ImageInterface(QAccessibleInterface* self) {
|
|
return self->imageInterface();
|
|
}
|
|
|
|
QAccessibleTableInterface* QAccessibleInterface_TableInterface(QAccessibleInterface* self) {
|
|
return self->tableInterface();
|
|
}
|
|
|
|
QAccessibleTableCellInterface* QAccessibleInterface_TableCellInterface(QAccessibleInterface* self) {
|
|
return self->tableCellInterface();
|
|
}
|
|
|
|
void QAccessibleTextInterface_Selection(const QAccessibleTextInterface* self, int selectionIndex, int* startOffset, int* endOffset) {
|
|
self->selection(static_cast<int>(selectionIndex), static_cast<int*>(startOffset), static_cast<int*>(endOffset));
|
|
}
|
|
|
|
int QAccessibleTextInterface_SelectionCount(const QAccessibleTextInterface* self) {
|
|
return self->selectionCount();
|
|
}
|
|
|
|
void QAccessibleTextInterface_AddSelection(QAccessibleTextInterface* self, int startOffset, int endOffset) {
|
|
self->addSelection(static_cast<int>(startOffset), static_cast<int>(endOffset));
|
|
}
|
|
|
|
void QAccessibleTextInterface_RemoveSelection(QAccessibleTextInterface* self, int selectionIndex) {
|
|
self->removeSelection(static_cast<int>(selectionIndex));
|
|
}
|
|
|
|
void QAccessibleTextInterface_SetSelection(QAccessibleTextInterface* self, int selectionIndex, int startOffset, int endOffset) {
|
|
self->setSelection(static_cast<int>(selectionIndex), static_cast<int>(startOffset), static_cast<int>(endOffset));
|
|
}
|
|
|
|
int QAccessibleTextInterface_CursorPosition(const QAccessibleTextInterface* self) {
|
|
return self->cursorPosition();
|
|
}
|
|
|
|
void QAccessibleTextInterface_SetCursorPosition(QAccessibleTextInterface* self, int position) {
|
|
self->setCursorPosition(static_cast<int>(position));
|
|
}
|
|
|
|
void QAccessibleTextInterface_Text(const QAccessibleTextInterface* self, int startOffset, int endOffset, char** _out, int* _out_Strlen) {
|
|
QString ret = self->text(static_cast<int>(startOffset), static_cast<int>(endOffset));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleTextInterface_TextBeforeOffset(const QAccessibleTextInterface* self, int offset, uintptr_t boundaryType, int* startOffset, int* endOffset, char** _out, int* _out_Strlen) {
|
|
QString ret = self->textBeforeOffset(static_cast<int>(offset), static_cast<QAccessible::TextBoundaryType>(boundaryType), static_cast<int*>(startOffset), static_cast<int*>(endOffset));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleTextInterface_TextAfterOffset(const QAccessibleTextInterface* self, int offset, uintptr_t boundaryType, int* startOffset, int* endOffset, char** _out, int* _out_Strlen) {
|
|
QString ret = self->textAfterOffset(static_cast<int>(offset), static_cast<QAccessible::TextBoundaryType>(boundaryType), static_cast<int*>(startOffset), static_cast<int*>(endOffset));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleTextInterface_TextAtOffset(const QAccessibleTextInterface* self, int offset, uintptr_t boundaryType, int* startOffset, int* endOffset, char** _out, int* _out_Strlen) {
|
|
QString ret = self->textAtOffset(static_cast<int>(offset), static_cast<QAccessible::TextBoundaryType>(boundaryType), static_cast<int*>(startOffset), static_cast<int*>(endOffset));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
int QAccessibleTextInterface_CharacterCount(const QAccessibleTextInterface* self) {
|
|
return self->characterCount();
|
|
}
|
|
|
|
QRect* QAccessibleTextInterface_CharacterRect(const QAccessibleTextInterface* self, int offset) {
|
|
QRect ret = self->characterRect(static_cast<int>(offset));
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QRect*>(new QRect(ret));
|
|
}
|
|
|
|
int QAccessibleTextInterface_OffsetAtPoint(const QAccessibleTextInterface* self, QPoint* point) {
|
|
return self->offsetAtPoint(*point);
|
|
}
|
|
|
|
void QAccessibleTextInterface_ScrollToSubstring(QAccessibleTextInterface* self, int startIndex, int endIndex) {
|
|
self->scrollToSubstring(static_cast<int>(startIndex), static_cast<int>(endIndex));
|
|
}
|
|
|
|
void QAccessibleTextInterface_Attributes(const QAccessibleTextInterface* self, int offset, int* startOffset, int* endOffset, char** _out, int* _out_Strlen) {
|
|
QString ret = self->attributes(static_cast<int>(offset), static_cast<int*>(startOffset), static_cast<int*>(endOffset));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleTextInterface_OperatorAssign(QAccessibleTextInterface* self, QAccessibleTextInterface* param1) {
|
|
self->operator=(*param1);
|
|
}
|
|
|
|
void QAccessibleTextInterface_Delete(QAccessibleTextInterface* self) {
|
|
delete self;
|
|
}
|
|
|
|
void QAccessibleEditableTextInterface_DeleteText(QAccessibleEditableTextInterface* self, int startOffset, int endOffset) {
|
|
self->deleteText(static_cast<int>(startOffset), static_cast<int>(endOffset));
|
|
}
|
|
|
|
void QAccessibleEditableTextInterface_InsertText(QAccessibleEditableTextInterface* self, int offset, const char* text, size_t text_Strlen) {
|
|
QString text_QString = QString::fromUtf8(text, text_Strlen);
|
|
self->insertText(static_cast<int>(offset), text_QString);
|
|
}
|
|
|
|
void QAccessibleEditableTextInterface_ReplaceText(QAccessibleEditableTextInterface* self, int startOffset, int endOffset, const char* text, size_t text_Strlen) {
|
|
QString text_QString = QString::fromUtf8(text, text_Strlen);
|
|
self->replaceText(static_cast<int>(startOffset), static_cast<int>(endOffset), text_QString);
|
|
}
|
|
|
|
void QAccessibleEditableTextInterface_OperatorAssign(QAccessibleEditableTextInterface* self, QAccessibleEditableTextInterface* param1) {
|
|
self->operator=(*param1);
|
|
}
|
|
|
|
void QAccessibleEditableTextInterface_Delete(QAccessibleEditableTextInterface* self) {
|
|
delete self;
|
|
}
|
|
|
|
QVariant* QAccessibleValueInterface_CurrentValue(const QAccessibleValueInterface* self) {
|
|
QVariant ret = self->currentValue();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QVariant*>(new QVariant(ret));
|
|
}
|
|
|
|
void QAccessibleValueInterface_SetCurrentValue(QAccessibleValueInterface* self, QVariant* value) {
|
|
self->setCurrentValue(*value);
|
|
}
|
|
|
|
QVariant* QAccessibleValueInterface_MaximumValue(const QAccessibleValueInterface* self) {
|
|
QVariant ret = self->maximumValue();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QVariant*>(new QVariant(ret));
|
|
}
|
|
|
|
QVariant* QAccessibleValueInterface_MinimumValue(const QAccessibleValueInterface* self) {
|
|
QVariant ret = self->minimumValue();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QVariant*>(new QVariant(ret));
|
|
}
|
|
|
|
QVariant* QAccessibleValueInterface_MinimumStepSize(const QAccessibleValueInterface* self) {
|
|
QVariant ret = self->minimumStepSize();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QVariant*>(new QVariant(ret));
|
|
}
|
|
|
|
void QAccessibleValueInterface_OperatorAssign(QAccessibleValueInterface* self, QAccessibleValueInterface* param1) {
|
|
self->operator=(*param1);
|
|
}
|
|
|
|
void QAccessibleValueInterface_Delete(QAccessibleValueInterface* self) {
|
|
delete self;
|
|
}
|
|
|
|
bool QAccessibleTableCellInterface_IsSelected(const QAccessibleTableCellInterface* self) {
|
|
return self->isSelected();
|
|
}
|
|
|
|
void QAccessibleTableCellInterface_ColumnHeaderCells(const QAccessibleTableCellInterface* self, QAccessibleInterface*** _out, size_t* _out_len) {
|
|
QList<QAccessibleInterface*> ret = self->columnHeaderCells();
|
|
// Convert QList<> from C++ memory to manually-managed C memory
|
|
QAccessibleInterface** __out = static_cast<QAccessibleInterface**>(malloc(sizeof(QAccessibleInterface*) * ret.length()));
|
|
for (size_t i = 0, e = ret.length(); i < e; ++i) {
|
|
__out[i] = ret[i];
|
|
}
|
|
*_out = __out;
|
|
*_out_len = ret.length();
|
|
}
|
|
|
|
void QAccessibleTableCellInterface_RowHeaderCells(const QAccessibleTableCellInterface* self, QAccessibleInterface*** _out, size_t* _out_len) {
|
|
QList<QAccessibleInterface*> ret = self->rowHeaderCells();
|
|
// Convert QList<> from C++ memory to manually-managed C memory
|
|
QAccessibleInterface** __out = static_cast<QAccessibleInterface**>(malloc(sizeof(QAccessibleInterface*) * ret.length()));
|
|
for (size_t i = 0, e = ret.length(); i < e; ++i) {
|
|
__out[i] = ret[i];
|
|
}
|
|
*_out = __out;
|
|
*_out_len = ret.length();
|
|
}
|
|
|
|
int QAccessibleTableCellInterface_ColumnIndex(const QAccessibleTableCellInterface* self) {
|
|
return self->columnIndex();
|
|
}
|
|
|
|
int QAccessibleTableCellInterface_RowIndex(const QAccessibleTableCellInterface* self) {
|
|
return self->rowIndex();
|
|
}
|
|
|
|
int QAccessibleTableCellInterface_ColumnExtent(const QAccessibleTableCellInterface* self) {
|
|
return self->columnExtent();
|
|
}
|
|
|
|
int QAccessibleTableCellInterface_RowExtent(const QAccessibleTableCellInterface* self) {
|
|
return self->rowExtent();
|
|
}
|
|
|
|
QAccessibleInterface* QAccessibleTableCellInterface_Table(const QAccessibleTableCellInterface* self) {
|
|
return self->table();
|
|
}
|
|
|
|
void QAccessibleTableCellInterface_OperatorAssign(QAccessibleTableCellInterface* self, QAccessibleTableCellInterface* param1) {
|
|
self->operator=(*param1);
|
|
}
|
|
|
|
void QAccessibleTableCellInterface_Delete(QAccessibleTableCellInterface* self) {
|
|
delete self;
|
|
}
|
|
|
|
QAccessibleInterface* QAccessibleTableInterface_Caption(const QAccessibleTableInterface* self) {
|
|
return self->caption();
|
|
}
|
|
|
|
QAccessibleInterface* QAccessibleTableInterface_Summary(const QAccessibleTableInterface* self) {
|
|
return self->summary();
|
|
}
|
|
|
|
QAccessibleInterface* QAccessibleTableInterface_CellAt(const QAccessibleTableInterface* self, int row, int column) {
|
|
return self->cellAt(static_cast<int>(row), static_cast<int>(column));
|
|
}
|
|
|
|
int QAccessibleTableInterface_SelectedCellCount(const QAccessibleTableInterface* self) {
|
|
return self->selectedCellCount();
|
|
}
|
|
|
|
void QAccessibleTableInterface_SelectedCells(const QAccessibleTableInterface* self, QAccessibleInterface*** _out, size_t* _out_len) {
|
|
QList<QAccessibleInterface*> ret = self->selectedCells();
|
|
// Convert QList<> from C++ memory to manually-managed C memory
|
|
QAccessibleInterface** __out = static_cast<QAccessibleInterface**>(malloc(sizeof(QAccessibleInterface*) * ret.length()));
|
|
for (size_t i = 0, e = ret.length(); i < e; ++i) {
|
|
__out[i] = ret[i];
|
|
}
|
|
*_out = __out;
|
|
*_out_len = ret.length();
|
|
}
|
|
|
|
void QAccessibleTableInterface_ColumnDescription(const QAccessibleTableInterface* self, int column, char** _out, int* _out_Strlen) {
|
|
QString ret = self->columnDescription(static_cast<int>(column));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleTableInterface_RowDescription(const QAccessibleTableInterface* self, int row, char** _out, int* _out_Strlen) {
|
|
QString ret = self->rowDescription(static_cast<int>(row));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
int QAccessibleTableInterface_SelectedColumnCount(const QAccessibleTableInterface* self) {
|
|
return self->selectedColumnCount();
|
|
}
|
|
|
|
int QAccessibleTableInterface_SelectedRowCount(const QAccessibleTableInterface* self) {
|
|
return self->selectedRowCount();
|
|
}
|
|
|
|
int QAccessibleTableInterface_ColumnCount(const QAccessibleTableInterface* self) {
|
|
return self->columnCount();
|
|
}
|
|
|
|
int QAccessibleTableInterface_RowCount(const QAccessibleTableInterface* self) {
|
|
return self->rowCount();
|
|
}
|
|
|
|
void QAccessibleTableInterface_SelectedColumns(const QAccessibleTableInterface* self, int** _out, size_t* _out_len) {
|
|
QList<int> ret = self->selectedColumns();
|
|
// Convert QList<> from C++ memory to manually-managed C memory
|
|
int* __out = static_cast<int*>(malloc(sizeof(int) * ret.length()));
|
|
for (size_t i = 0, e = ret.length(); i < e; ++i) {
|
|
__out[i] = ret[i];
|
|
}
|
|
*_out = __out;
|
|
*_out_len = ret.length();
|
|
}
|
|
|
|
void QAccessibleTableInterface_SelectedRows(const QAccessibleTableInterface* self, int** _out, size_t* _out_len) {
|
|
QList<int> ret = self->selectedRows();
|
|
// Convert QList<> from C++ memory to manually-managed C memory
|
|
int* __out = static_cast<int*>(malloc(sizeof(int) * ret.length()));
|
|
for (size_t i = 0, e = ret.length(); i < e; ++i) {
|
|
__out[i] = ret[i];
|
|
}
|
|
*_out = __out;
|
|
*_out_len = ret.length();
|
|
}
|
|
|
|
bool QAccessibleTableInterface_IsColumnSelected(const QAccessibleTableInterface* self, int column) {
|
|
return self->isColumnSelected(static_cast<int>(column));
|
|
}
|
|
|
|
bool QAccessibleTableInterface_IsRowSelected(const QAccessibleTableInterface* self, int row) {
|
|
return self->isRowSelected(static_cast<int>(row));
|
|
}
|
|
|
|
bool QAccessibleTableInterface_SelectRow(QAccessibleTableInterface* self, int row) {
|
|
return self->selectRow(static_cast<int>(row));
|
|
}
|
|
|
|
bool QAccessibleTableInterface_SelectColumn(QAccessibleTableInterface* self, int column) {
|
|
return self->selectColumn(static_cast<int>(column));
|
|
}
|
|
|
|
bool QAccessibleTableInterface_UnselectRow(QAccessibleTableInterface* self, int row) {
|
|
return self->unselectRow(static_cast<int>(row));
|
|
}
|
|
|
|
bool QAccessibleTableInterface_UnselectColumn(QAccessibleTableInterface* self, int column) {
|
|
return self->unselectColumn(static_cast<int>(column));
|
|
}
|
|
|
|
void QAccessibleTableInterface_ModelChange(QAccessibleTableInterface* self, QAccessibleTableModelChangeEvent* event) {
|
|
self->modelChange(event);
|
|
}
|
|
|
|
void QAccessibleTableInterface_Delete(QAccessibleTableInterface* self) {
|
|
delete self;
|
|
}
|
|
|
|
void QAccessibleActionInterface_Tr(const char* sourceText, char** _out, int* _out_Strlen) {
|
|
QString ret = QAccessibleActionInterface::tr(sourceText);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_TrUtf8(const char* sourceText, char** _out, int* _out_Strlen) {
|
|
QString ret = QAccessibleActionInterface::trUtf8(sourceText);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_ActionNames(const QAccessibleActionInterface* self, char*** _out, int** _out_Lengths, size_t* _out_len) {
|
|
QStringList ret = self->actionNames();
|
|
// Convert QStringList from C++ memory to manually-managed C memory
|
|
char** __out = static_cast<char**>(malloc(sizeof(char*) * ret.length()));
|
|
int* __out_Lengths = static_cast<int*>(malloc(sizeof(int) * ret.length()));
|
|
for (size_t i = 0, e = ret.length(); i < e; ++i) {
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret[i].toUtf8();
|
|
__out[i] = static_cast<char*>(malloc(b.length()));
|
|
memcpy(__out[i], b.data(), b.length());
|
|
__out_Lengths[i] = b.length();
|
|
}
|
|
*_out = __out;
|
|
*_out_Lengths = __out_Lengths;
|
|
*_out_len = ret.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_LocalizedActionName(const QAccessibleActionInterface* self, const char* name, size_t name_Strlen, char** _out, int* _out_Strlen) {
|
|
QString name_QString = QString::fromUtf8(name, name_Strlen);
|
|
QString ret = self->localizedActionName(name_QString);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_LocalizedActionDescription(const QAccessibleActionInterface* self, const char* name, size_t name_Strlen, char** _out, int* _out_Strlen) {
|
|
QString name_QString = QString::fromUtf8(name, name_Strlen);
|
|
QString ret = self->localizedActionDescription(name_QString);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_DoAction(QAccessibleActionInterface* self, const char* actionName, size_t actionName_Strlen) {
|
|
QString actionName_QString = QString::fromUtf8(actionName, actionName_Strlen);
|
|
self->doAction(actionName_QString);
|
|
}
|
|
|
|
void QAccessibleActionInterface_KeyBindingsForAction(const QAccessibleActionInterface* self, const char* actionName, size_t actionName_Strlen, char*** _out, int** _out_Lengths, size_t* _out_len) {
|
|
QString actionName_QString = QString::fromUtf8(actionName, actionName_Strlen);
|
|
QStringList ret = self->keyBindingsForAction(actionName_QString);
|
|
// Convert QStringList from C++ memory to manually-managed C memory
|
|
char** __out = static_cast<char**>(malloc(sizeof(char*) * ret.length()));
|
|
int* __out_Lengths = static_cast<int*>(malloc(sizeof(int) * ret.length()));
|
|
for (size_t i = 0, e = ret.length(); i < e; ++i) {
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret[i].toUtf8();
|
|
__out[i] = static_cast<char*>(malloc(b.length()));
|
|
memcpy(__out[i], b.data(), b.length());
|
|
__out_Lengths[i] = b.length();
|
|
}
|
|
*_out = __out;
|
|
*_out_Lengths = __out_Lengths;
|
|
*_out_len = ret.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_PressAction(char** _out, int* _out_Strlen) {
|
|
const QString ret = QAccessibleActionInterface::pressAction();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_IncreaseAction(char** _out, int* _out_Strlen) {
|
|
const QString ret = QAccessibleActionInterface::increaseAction();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_DecreaseAction(char** _out, int* _out_Strlen) {
|
|
const QString ret = QAccessibleActionInterface::decreaseAction();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_ShowMenuAction(char** _out, int* _out_Strlen) {
|
|
const QString ret = QAccessibleActionInterface::showMenuAction();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_SetFocusAction(char** _out, int* _out_Strlen) {
|
|
const QString ret = QAccessibleActionInterface::setFocusAction();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_ToggleAction(char** _out, int* _out_Strlen) {
|
|
const QString ret = QAccessibleActionInterface::toggleAction();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_ScrollLeftAction(char** _out, int* _out_Strlen) {
|
|
QString ret = QAccessibleActionInterface::scrollLeftAction();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_ScrollRightAction(char** _out, int* _out_Strlen) {
|
|
QString ret = QAccessibleActionInterface::scrollRightAction();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_ScrollUpAction(char** _out, int* _out_Strlen) {
|
|
QString ret = QAccessibleActionInterface::scrollUpAction();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_ScrollDownAction(char** _out, int* _out_Strlen) {
|
|
QString ret = QAccessibleActionInterface::scrollDownAction();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_NextPageAction(char** _out, int* _out_Strlen) {
|
|
QString ret = QAccessibleActionInterface::nextPageAction();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_PreviousPageAction(char** _out, int* _out_Strlen) {
|
|
QString ret = QAccessibleActionInterface::previousPageAction();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_OperatorAssign(QAccessibleActionInterface* self, QAccessibleActionInterface* param1) {
|
|
self->operator=(*param1);
|
|
}
|
|
|
|
void QAccessibleActionInterface_Tr2(const char* sourceText, const char* disambiguation, char** _out, int* _out_Strlen) {
|
|
QString ret = QAccessibleActionInterface::tr(sourceText, disambiguation);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_Tr3(const char* sourceText, const char* disambiguation, int n, char** _out, int* _out_Strlen) {
|
|
QString ret = QAccessibleActionInterface::tr(sourceText, disambiguation, 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();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_TrUtf82(const char* sourceText, const char* disambiguation, char** _out, int* _out_Strlen) {
|
|
QString ret = QAccessibleActionInterface::trUtf8(sourceText, disambiguation);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_TrUtf83(const char* sourceText, const char* disambiguation, int n, char** _out, int* _out_Strlen) {
|
|
QString ret = QAccessibleActionInterface::trUtf8(sourceText, disambiguation, 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();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleActionInterface_Delete(QAccessibleActionInterface* self) {
|
|
delete self;
|
|
}
|
|
|
|
void QAccessibleImageInterface_ImageDescription(const QAccessibleImageInterface* self, char** _out, int* _out_Strlen) {
|
|
QString ret = self->imageDescription();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
QSize* QAccessibleImageInterface_ImageSize(const QAccessibleImageInterface* self) {
|
|
QSize ret = self->imageSize();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QSize*>(new QSize(ret));
|
|
}
|
|
|
|
QPoint* QAccessibleImageInterface_ImagePosition(const QAccessibleImageInterface* self) {
|
|
QPoint ret = self->imagePosition();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QPoint*>(new QPoint(ret));
|
|
}
|
|
|
|
void QAccessibleImageInterface_OperatorAssign(QAccessibleImageInterface* self, QAccessibleImageInterface* param1) {
|
|
self->operator=(*param1);
|
|
}
|
|
|
|
void QAccessibleImageInterface_Delete(QAccessibleImageInterface* self) {
|
|
delete self;
|
|
}
|
|
|
|
QAccessibleEvent* QAccessibleEvent_new(QObject* obj, uintptr_t typ) {
|
|
return new QAccessibleEvent(obj, static_cast<QAccessible::Event>(typ));
|
|
}
|
|
|
|
QAccessibleEvent* QAccessibleEvent_new2(QAccessibleInterface* iface, uintptr_t typ) {
|
|
return new QAccessibleEvent(iface, static_cast<QAccessible::Event>(typ));
|
|
}
|
|
|
|
uintptr_t QAccessibleEvent_Type(const QAccessibleEvent* self) {
|
|
QAccessible::Event ret = self->type();
|
|
return static_cast<uintptr_t>(ret);
|
|
}
|
|
|
|
QObject* QAccessibleEvent_Object(const QAccessibleEvent* self) {
|
|
return self->object();
|
|
}
|
|
|
|
unsigned int QAccessibleEvent_UniqueId(const QAccessibleEvent* self) {
|
|
return self->uniqueId();
|
|
}
|
|
|
|
void QAccessibleEvent_SetChild(QAccessibleEvent* self, int chld) {
|
|
self->setChild(static_cast<int>(chld));
|
|
}
|
|
|
|
int QAccessibleEvent_Child(const QAccessibleEvent* self) {
|
|
return self->child();
|
|
}
|
|
|
|
QAccessibleInterface* QAccessibleEvent_AccessibleInterface(const QAccessibleEvent* self) {
|
|
return self->accessibleInterface();
|
|
}
|
|
|
|
void QAccessibleEvent_Delete(QAccessibleEvent* self) {
|
|
delete self;
|
|
}
|
|
|
|
QAccessibleStateChangeEvent* QAccessibleStateChangeEvent_new(QObject* obj, QAccessible__State* state) {
|
|
return new QAccessibleStateChangeEvent(obj, *state);
|
|
}
|
|
|
|
QAccessibleStateChangeEvent* QAccessibleStateChangeEvent_new2(QAccessibleInterface* iface, QAccessible__State* state) {
|
|
return new QAccessibleStateChangeEvent(iface, *state);
|
|
}
|
|
|
|
QAccessible__State* QAccessibleStateChangeEvent_ChangedStates(const QAccessibleStateChangeEvent* self) {
|
|
QAccessible::State ret = self->changedStates();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QAccessible::State*>(new QAccessible::State(ret));
|
|
}
|
|
|
|
void QAccessibleStateChangeEvent_Delete(QAccessibleStateChangeEvent* self) {
|
|
delete self;
|
|
}
|
|
|
|
QAccessibleTextCursorEvent* QAccessibleTextCursorEvent_new(QObject* obj, int cursorPos) {
|
|
return new QAccessibleTextCursorEvent(obj, static_cast<int>(cursorPos));
|
|
}
|
|
|
|
QAccessibleTextCursorEvent* QAccessibleTextCursorEvent_new2(QAccessibleInterface* iface, int cursorPos) {
|
|
return new QAccessibleTextCursorEvent(iface, static_cast<int>(cursorPos));
|
|
}
|
|
|
|
void QAccessibleTextCursorEvent_SetCursorPosition(QAccessibleTextCursorEvent* self, int position) {
|
|
self->setCursorPosition(static_cast<int>(position));
|
|
}
|
|
|
|
int QAccessibleTextCursorEvent_CursorPosition(const QAccessibleTextCursorEvent* self) {
|
|
return self->cursorPosition();
|
|
}
|
|
|
|
void QAccessibleTextCursorEvent_Delete(QAccessibleTextCursorEvent* self) {
|
|
delete self;
|
|
}
|
|
|
|
QAccessibleTextSelectionEvent* QAccessibleTextSelectionEvent_new(QObject* obj, int start, int end) {
|
|
return new QAccessibleTextSelectionEvent(obj, static_cast<int>(start), static_cast<int>(end));
|
|
}
|
|
|
|
QAccessibleTextSelectionEvent* QAccessibleTextSelectionEvent_new2(QAccessibleInterface* iface, int start, int end) {
|
|
return new QAccessibleTextSelectionEvent(iface, static_cast<int>(start), static_cast<int>(end));
|
|
}
|
|
|
|
void QAccessibleTextSelectionEvent_SetSelection(QAccessibleTextSelectionEvent* self, int start, int end) {
|
|
self->setSelection(static_cast<int>(start), static_cast<int>(end));
|
|
}
|
|
|
|
int QAccessibleTextSelectionEvent_SelectionStart(const QAccessibleTextSelectionEvent* self) {
|
|
return self->selectionStart();
|
|
}
|
|
|
|
int QAccessibleTextSelectionEvent_SelectionEnd(const QAccessibleTextSelectionEvent* self) {
|
|
return self->selectionEnd();
|
|
}
|
|
|
|
void QAccessibleTextSelectionEvent_Delete(QAccessibleTextSelectionEvent* self) {
|
|
delete self;
|
|
}
|
|
|
|
QAccessibleTextInsertEvent* QAccessibleTextInsertEvent_new(QObject* obj, int position, const char* text, size_t text_Strlen) {
|
|
QString text_QString = QString::fromUtf8(text, text_Strlen);
|
|
return new QAccessibleTextInsertEvent(obj, static_cast<int>(position), text_QString);
|
|
}
|
|
|
|
QAccessibleTextInsertEvent* QAccessibleTextInsertEvent_new2(QAccessibleInterface* iface, int position, const char* text, size_t text_Strlen) {
|
|
QString text_QString = QString::fromUtf8(text, text_Strlen);
|
|
return new QAccessibleTextInsertEvent(iface, static_cast<int>(position), text_QString);
|
|
}
|
|
|
|
void QAccessibleTextInsertEvent_TextInserted(const QAccessibleTextInsertEvent* self, char** _out, int* _out_Strlen) {
|
|
QString ret = self->textInserted();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
int QAccessibleTextInsertEvent_ChangePosition(const QAccessibleTextInsertEvent* self) {
|
|
return self->changePosition();
|
|
}
|
|
|
|
void QAccessibleTextInsertEvent_Delete(QAccessibleTextInsertEvent* self) {
|
|
delete self;
|
|
}
|
|
|
|
QAccessibleTextRemoveEvent* QAccessibleTextRemoveEvent_new(QObject* obj, int position, const char* text, size_t text_Strlen) {
|
|
QString text_QString = QString::fromUtf8(text, text_Strlen);
|
|
return new QAccessibleTextRemoveEvent(obj, static_cast<int>(position), text_QString);
|
|
}
|
|
|
|
QAccessibleTextRemoveEvent* QAccessibleTextRemoveEvent_new2(QAccessibleInterface* iface, int position, const char* text, size_t text_Strlen) {
|
|
QString text_QString = QString::fromUtf8(text, text_Strlen);
|
|
return new QAccessibleTextRemoveEvent(iface, static_cast<int>(position), text_QString);
|
|
}
|
|
|
|
void QAccessibleTextRemoveEvent_TextRemoved(const QAccessibleTextRemoveEvent* self, char** _out, int* _out_Strlen) {
|
|
QString ret = self->textRemoved();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
int QAccessibleTextRemoveEvent_ChangePosition(const QAccessibleTextRemoveEvent* self) {
|
|
return self->changePosition();
|
|
}
|
|
|
|
void QAccessibleTextRemoveEvent_Delete(QAccessibleTextRemoveEvent* self) {
|
|
delete self;
|
|
}
|
|
|
|
QAccessibleTextUpdateEvent* QAccessibleTextUpdateEvent_new(QObject* obj, int position, const char* oldText, size_t oldText_Strlen, const char* text, size_t text_Strlen) {
|
|
QString oldText_QString = QString::fromUtf8(oldText, oldText_Strlen);
|
|
QString text_QString = QString::fromUtf8(text, text_Strlen);
|
|
return new QAccessibleTextUpdateEvent(obj, static_cast<int>(position), oldText_QString, text_QString);
|
|
}
|
|
|
|
QAccessibleTextUpdateEvent* QAccessibleTextUpdateEvent_new2(QAccessibleInterface* iface, int position, const char* oldText, size_t oldText_Strlen, const char* text, size_t text_Strlen) {
|
|
QString oldText_QString = QString::fromUtf8(oldText, oldText_Strlen);
|
|
QString text_QString = QString::fromUtf8(text, text_Strlen);
|
|
return new QAccessibleTextUpdateEvent(iface, static_cast<int>(position), oldText_QString, text_QString);
|
|
}
|
|
|
|
void QAccessibleTextUpdateEvent_TextRemoved(const QAccessibleTextUpdateEvent* self, char** _out, int* _out_Strlen) {
|
|
QString ret = self->textRemoved();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
void QAccessibleTextUpdateEvent_TextInserted(const QAccessibleTextUpdateEvent* self, char** _out, int* _out_Strlen) {
|
|
QString ret = self->textInserted();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray b = ret.toUtf8();
|
|
*_out = static_cast<char*>(malloc(b.length()));
|
|
memcpy(*_out, b.data(), b.length());
|
|
*_out_Strlen = b.length();
|
|
}
|
|
|
|
int QAccessibleTextUpdateEvent_ChangePosition(const QAccessibleTextUpdateEvent* self) {
|
|
return self->changePosition();
|
|
}
|
|
|
|
void QAccessibleTextUpdateEvent_Delete(QAccessibleTextUpdateEvent* self) {
|
|
delete self;
|
|
}
|
|
|
|
QAccessibleValueChangeEvent* QAccessibleValueChangeEvent_new(QObject* obj, QVariant* val) {
|
|
return new QAccessibleValueChangeEvent(obj, *val);
|
|
}
|
|
|
|
QAccessibleValueChangeEvent* QAccessibleValueChangeEvent_new2(QAccessibleInterface* iface, QVariant* val) {
|
|
return new QAccessibleValueChangeEvent(iface, *val);
|
|
}
|
|
|
|
void QAccessibleValueChangeEvent_SetValue(QAccessibleValueChangeEvent* self, QVariant* val) {
|
|
self->setValue(*val);
|
|
}
|
|
|
|
QVariant* QAccessibleValueChangeEvent_Value(const QAccessibleValueChangeEvent* self) {
|
|
QVariant ret = self->value();
|
|
// Copy-construct value returned type into heap-allocated copy
|
|
return static_cast<QVariant*>(new QVariant(ret));
|
|
}
|
|
|
|
void QAccessibleValueChangeEvent_Delete(QAccessibleValueChangeEvent* self) {
|
|
delete self;
|
|
}
|
|
|
|
QAccessibleTableModelChangeEvent* QAccessibleTableModelChangeEvent_new(QObject* obj, uintptr_t changeType) {
|
|
return new QAccessibleTableModelChangeEvent(obj, static_cast<QAccessibleTableModelChangeEvent::ModelChangeType>(changeType));
|
|
}
|
|
|
|
QAccessibleTableModelChangeEvent* QAccessibleTableModelChangeEvent_new2(QAccessibleInterface* iface, uintptr_t changeType) {
|
|
return new QAccessibleTableModelChangeEvent(iface, static_cast<QAccessibleTableModelChangeEvent::ModelChangeType>(changeType));
|
|
}
|
|
|
|
void QAccessibleTableModelChangeEvent_SetModelChangeType(QAccessibleTableModelChangeEvent* self, uintptr_t changeType) {
|
|
self->setModelChangeType(static_cast<QAccessibleTableModelChangeEvent::ModelChangeType>(changeType));
|
|
}
|
|
|
|
uintptr_t QAccessibleTableModelChangeEvent_ModelChangeType(const QAccessibleTableModelChangeEvent* self) {
|
|
QAccessibleTableModelChangeEvent::ModelChangeType ret = self->modelChangeType();
|
|
return static_cast<uintptr_t>(ret);
|
|
}
|
|
|
|
void QAccessibleTableModelChangeEvent_SetFirstRow(QAccessibleTableModelChangeEvent* self, int row) {
|
|
self->setFirstRow(static_cast<int>(row));
|
|
}
|
|
|
|
void QAccessibleTableModelChangeEvent_SetFirstColumn(QAccessibleTableModelChangeEvent* self, int col) {
|
|
self->setFirstColumn(static_cast<int>(col));
|
|
}
|
|
|
|
void QAccessibleTableModelChangeEvent_SetLastRow(QAccessibleTableModelChangeEvent* self, int row) {
|
|
self->setLastRow(static_cast<int>(row));
|
|
}
|
|
|
|
void QAccessibleTableModelChangeEvent_SetLastColumn(QAccessibleTableModelChangeEvent* self, int col) {
|
|
self->setLastColumn(static_cast<int>(col));
|
|
}
|
|
|
|
int QAccessibleTableModelChangeEvent_FirstRow(const QAccessibleTableModelChangeEvent* self) {
|
|
return self->firstRow();
|
|
}
|
|
|
|
int QAccessibleTableModelChangeEvent_FirstColumn(const QAccessibleTableModelChangeEvent* self) {
|
|
return self->firstColumn();
|
|
}
|
|
|
|
int QAccessibleTableModelChangeEvent_LastRow(const QAccessibleTableModelChangeEvent* self) {
|
|
return self->lastRow();
|
|
}
|
|
|
|
int QAccessibleTableModelChangeEvent_LastColumn(const QAccessibleTableModelChangeEvent* self) {
|
|
return self->lastColumn();
|
|
}
|
|
|
|
void QAccessibleTableModelChangeEvent_Delete(QAccessibleTableModelChangeEvent* self) {
|
|
delete self;
|
|
}
|
|
|
|
QAccessible__State* QAccessible__State_new() {
|
|
return new QAccessible::State();
|
|
}
|
|
|
|
QAccessible__State* QAccessible__State_new2(QAccessible__State* param1) {
|
|
return new QAccessible::State(*param1);
|
|
}
|
|
|
|
void QAccessible__State_Delete(QAccessible__State* self) {
|
|
delete self;
|
|
}
|
|
|
|
void QAccessible__ActivationObserver_AccessibilityActiveChanged(QAccessible__ActivationObserver* self, bool active) {
|
|
self->accessibilityActiveChanged(active);
|
|
}
|
|
|
|
void QAccessible__ActivationObserver_Delete(QAccessible__ActivationObserver* self) {
|
|
delete self;
|
|
}
|
|
|