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
|
<?xml version="1.0" encoding="UTF-8"?>
<node xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd">
<!--
org.a11y.atspi.TableCell:
@short_description: Interface implemented by accessible objects that
cells of a table.
-->
<interface name="org.a11y.atspi.TableCell">
<!--
Version: The version of this interface.
This property is incremented by one every time a new method, signal, or property
is added to this interface.
-->
<property name="version" type="u" access="read"/>
<!--
ColumnSpan: The number of columns occupied by this cell accessible.
This is meaningful only if the table cell has both STATE_VISIBLE
and STATE_SHOWING.
-->
<property access="read" name="ColumnSpan" type="i" />
<!--
Position: the tabular position of this cell.
Returns a struct with the cell's tabular row followed by the column.
-->
<property access="read" name="Position" type="(ii)">
<annotation name="org.qtproject.QtDBus.QtTypeName" value="QPoint"/>
</property>
<!--
RowSpan: The number of rows occupied by this cell accessible.
This is meaningful only if the table cell has both STATE_VISIBLE
and STATE_SHOWING.
-->
<property access="read" name="RowSpan" type="i" />
<!--
Table: The object representing the containing table.
Returns a reference (bus name + object path) for the table.
-->
<property access="read" name="Table" type="(so)" >
<annotation name="org.qtproject.QtDBus.QtTypeName" value="QSpiObjectReference"/>
</property>
<!--
GetRowColumnSpan:
@row: (out): the row index of the given cell.
@column: (out): the column index of the given cell.
@row_span: (out): the number of rows occupied by this cell.
@column_span: (out): the number of columns occupied by this cell.
Gets the row and column indexes and extents of this cell accessible.
The returned values are meaningful only if the table cell has both
STATE_VISIBLE and STATE_SHOWING.
-->
<method name="GetRowColumnSpan">
<arg direction="out" type="b" />
<arg direction="out" name="row" type="i" />
<arg direction="out" name="col" type="i" />
<arg direction="out" name="row_extents" type="i" />
<arg direction="out" name="col_extents" type="i" />
</method>
<!--
GetColumnHeaderCells:
Returns a list of the table cell's column header cells.
-->
<method name="GetColumnHeaderCells">
<arg direction="out" type="a(so)"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiObjectReferenceArray"/>
</method>
<!--
GetRowHeaderCells:
Returns a list of the table cell's row header cells.
-->
<method name="GetRowHeaderCells">
<arg direction="out" type="a(so)"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.Out0" value="QSpiObjectReferenceArray"/>
</method>
</interface>
</node>
|