1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "InterfaceInitFuncs.h"
#include "mozilla/a11y/TableAccessible.h"
#include "mozilla/a11y/TableCellAccessible.h"
#include "nsAccessibilityService.h"
#include "nsMai.h"
#include "RemoteAccessible.h"
#include "nsTArray.h"
#include "mozilla/Likely.h"
using namespace mozilla;
using namespace mozilla::a11y;
extern "C" {
static gint GetColumnSpanCB(AtkTableCell* aCell) {
Accessible* acc = GetInternalObj(ATK_OBJECT(aCell));
if (!acc) {
return 0;
}
return static_cast<gint>(acc->AsTableCell()->ColExtent());
}
static gint GetRowSpanCB(AtkTableCell* aCell) {
Accessible* acc = GetInternalObj(ATK_OBJECT(aCell));
if (!acc) {
return 0;
}
return static_cast<gint>(acc->AsTableCell()->RowExtent());
}
static gboolean GetPositionCB(AtkTableCell* aCell, gint* aRow, gint* aCol) {
Accessible* acc = GetInternalObj(ATK_OBJECT(aCell));
if (!acc) {
return false;
}
TableCellAccessible* cell = acc->AsTableCell();
if (!cell) {
return false;
}
*aRow = static_cast<gint>(cell->RowIdx());
*aCol = static_cast<gint>(cell->ColIdx());
return true;
}
static gboolean GetRowColumnSpanCB(AtkTableCell* aCell, gint* aRow, gint* aCol,
gint* aRowExtent, gint* aColExtent) {
Accessible* acc = GetInternalObj(ATK_OBJECT(aCell));
if (!acc) {
return false;
}
TableCellAccessible* cellAcc = acc->AsTableCell();
if (!cellAcc) {
return false;
}
*aCol = static_cast<gint>(cellAcc->ColIdx());
*aRow = static_cast<gint>(cellAcc->RowIdx());
*aColExtent = static_cast<gint>(cellAcc->ColExtent());
*aRowExtent = static_cast<gint>(cellAcc->RowExtent());
return true;
}
static AtkObject* GetTableCB(AtkTableCell* aTableCell) {
Accessible* acc = GetInternalObj(ATK_OBJECT(aTableCell));
if (!acc) {
return nullptr;
}
TableCellAccessible* cell = acc->AsTableCell();
if (!cell) {
return nullptr;
}
TableAccessible* table = cell->Table();
if (!table) {
return nullptr;
}
Accessible* tableAcc = table->AsAccessible();
return tableAcc ? GetWrapperFor(tableAcc) : nullptr;
}
static GPtrArray* GetColumnHeaderCellsCB(AtkTableCell* aCell) {
Accessible* acc = GetInternalObj(ATK_OBJECT(aCell));
if (!acc) {
return nullptr;
}
TableCellAccessible* cell = acc->AsTableCell();
if (!cell) {
return nullptr;
}
AutoTArray<Accessible*, 10> headers;
cell->ColHeaderCells(&headers);
if (headers.IsEmpty()) {
return nullptr;
}
GPtrArray* atkHeaders = g_ptr_array_sized_new(headers.Length());
for (Accessible* header : headers) {
AtkObject* atkHeader = GetWrapperFor(header);
g_object_ref(atkHeader);
g_ptr_array_add(atkHeaders, atkHeader);
}
return atkHeaders;
}
static GPtrArray* GetRowHeaderCellsCB(AtkTableCell* aCell) {
Accessible* acc = GetInternalObj(ATK_OBJECT(aCell));
if (!acc) {
return nullptr;
}
TableCellAccessible* cell = acc->AsTableCell();
if (!cell) {
return nullptr;
}
AutoTArray<Accessible*, 10> headers;
cell->RowHeaderCells(&headers);
if (headers.IsEmpty()) {
return nullptr;
}
GPtrArray* atkHeaders = g_ptr_array_sized_new(headers.Length());
for (Accessible* header : headers) {
AtkObject* atkHeader = GetWrapperFor(header);
g_object_ref(atkHeader);
g_ptr_array_add(atkHeaders, atkHeader);
}
return atkHeaders;
}
}
void tableCellInterfaceInitCB(AtkTableCellIface* aIface) {
NS_ASSERTION(aIface, "no interface!");
if (MOZ_UNLIKELY(!aIface)) return;
aIface->get_column_span = GetColumnSpanCB;
aIface->get_column_header_cells = GetColumnHeaderCellsCB;
aIface->get_position = GetPositionCB;
aIface->get_row_span = GetRowSpanCB;
aIface->get_row_header_cells = GetRowHeaderCellsCB;
aIface->get_row_column_span = GetRowColumnSpanCB;
aIface->get_table = GetTableCB;
}
|