fuchsia.accessibility.semantics

Added: 7

PROTOCOLS

SemanticListener

Defined in fuchsia.accessibility.semantics/semantics_manager.fidl

A semantic provider is the client-side interface that the manager can use to enable or disable semantic updates, and to ask clients to perform accessibility actions.

HitTest

Asks the semantics provider to perform hit testing and return the result.

Request

NameType
local_point fuchsia.math/PointF

Response

NameType
result Hit

OnAccessibilityActionRequested

Asks the semantics provider to perform an accessibility action on the node with node id in the front-end.

Request

NameType
node_id uint32
action Action

Response

NameType
handled bool

OnSemanticsModeChanged

Callback telling the client whether or not to send updates to the semantic tree. The semantics manager will clear all state when this is called with updates_enabled = false. When called with updates_enabled = true, the client should sent the full state of the current semantic tree.

Request

NameType
updates_enabled bool

Response

<EMPTY>

SemanticTree

Defined in fuchsia.accessibility.semantics/semantics_manager.fidl

Interface to update the semantic tree for a particular view. Nodes can be added, updated or deleted. Because the size of an update may exceed FIDL transfer limits, clients are responsible for breaking up changes into multiple update and delete calls that conform to these limits. The commit function must always be called at the end of a full update push to signal the end of an update.

The client may make several calls to UpdateSemanticNodes(...) or DeleteSemanticNodes(...) before calling CommitUpdates(), and must wait for the semantics manager to reply to the CommitUpdates() method to know whether an update has been processed. This allows the client to break up a set of changes (e.g. a re-computed semantic tree) to the semantic tree into FIDL-compatible chunks, but commit them all at once.

If the semantics manager ever receives inconsistent state from the client, such as an invalid tree or unrecognized parent node id, the server will close the channel. The client is responsible for reconnecting and re-sending its state from scratch.

CommitUpdates

Commits pending changes to node tree associated with the view using UpdateSemanticNodes and DeleteSemanticNodes. Updates are processed in the order in which they are received. If the committed updates result in an ill-formed tree (for example a missing root node or a cycle) the semantic manager will close the channel.

Request

<EMPTY>

Response

<EMPTY>

DeleteSemanticNodes

Tells the root to remove nodes with node_ids from the semantic tree on the next commit.

Request

NameType
node_ids vector<uint32>[2048]

SendSemanticEvent

Sends a Semantic Event related to this tree. This applies immediately and does not wait for CommitUpdates(). It is the caller's responsibility to fire events on nodes that have been already commited. The return callback is invoked to acknowledge that the event was received.

Request

NameType
semantic_event SemanticEvent

Response

<EMPTY>

UpdateSemanticNodes

Sends new/updated nodes to the root to add to the cache on the next commit.

Request

NameType
nodes vector<Node>[2048]

SemanticsManager

Defined in fuchsia.accessibility.semantics/semantics_manager.fidl

An interface to manage connections with views for the purposes of gathering semantic information about their current UI state.

The manager allows clients to register as a semantic provider for their view(s). In return the semantics manager supplies an interface to update, commit and delete information from the semantic tree for that view. If the semantic manager encounters an error, it will close the channel, delete any associated data and rely on the client to re-register.

RegisterViewForSemantics

Request

NameType
view_ref fuchsia.ui.views/ViewRef
listener SemanticListener
semantic_tree_request server_end<SemanticTree>

ENUMS

Action strict

Type: uint32

Defined in fuchsia.accessibility.semantics/node.fidl

Represents actions that can be applied to Nodes.

NameValueDescription
1

The default action associated with the element.

2

The secondary action associated with the element. This may correspond to a long press (touchscreens) or right click (mouse).

3

Set (input/non-accessibility) focus on this element.

4

Set the element's value.

5

Scroll node to make it visible.

6

Decrement a slider by one step value. The step size is defined by the owner of the semantic node that executes this action. For example, a volume slider may want to make steps 1, 2, 3, while a time slider may want to skip 30 seconds each step change.

7

Increment a slider by one step value. The step size is defined by the owner of the semantic node that executes this action. For example, a volume slider may want to make steps 1, 2, 3, while a time slider may want to skip 30 seconds each step change.

CheckedState strict

Type: uint32

Defined in fuchsia.accessibility.semantics/node.fidl

Represents the state of a UI checkbox.

NameValueDescription
1

Used when no data is entered or the element is not a check box.

2

Checked

3

Unchecked

4

Indeterminate state

EnabledState strict

Type: uint32

Defined in fuchsia.accessibility.semantics/node.fidl

Represents the enabled/disabled state of an element.

Added: 15

NameValueDescription
1

Element is enabled.

2

Element is disabled.

3

Indeterminate state.

LabelOrigin strict

Type: uint32

Defined in fuchsia.accessibility.semantics/node.fidl

The possible origins of a label.

NameValueDescription
1

The node does not have a label yet.

2

An attribute of this element in the runtime UI explicitly sets its label. For example, an element with aria-label.

3

An attribute of this element in the runtime UI explicitly sets its label to be empty.

4

This label serves as the caption for a table-like element. Because some assistive technology have special modes to deal with tables, a runtime should mark its label with this type of origin so that users know what the table is about when they navigate in the table mode. For example, a

html tag sets the label.

5

This node receives its label from the contents present in the application. For example, text from a web page becomes the label of this node.

6

An element that can receive user entered value and has a suggested input. For example, the placeholder attribute on an html input field.

7

Another element provides the label for this element. For example, via aria-labeledby.

8

This element's label is represented by a visual tooltip. For example, as if from a html tag.</p> </td> </tr> <tr id="LabelOrigin.VALUE"> <td><h3 id="LabelOrigin.VALUE" class="add-link hide-from-toc" data-text="VALUE" tabindex="-1">VALUE</h3></td> <td><code translate="no" dir="ltr">9</code></td> <td><p>The label comes from an user-entered value.</p> </td> </tr> </table> <h3 id="Role" data-text="Role" transformation="converted" tabindex="-1">Role <a href="/fuchsia-src/reference/fidl/language/language#strict-vs-flexible" class="fidl-attribute">strict</a></h3> <p>Type: <code translate="no" dir="ltr">uint32</code></p> <p><em>Defined in <a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/node.fidl;l=37">fuchsia.accessibility.semantics/node.fidl</a></em> <p>Represents a role of an element on a UI.</p></p> <table> <tr><th>Name</th><th>Value</th><th>Description</th></tr> <tr id="Role.UNKNOWN"> <td><h3 id="Role.UNKNOWN" class="add-link hide-from-toc" data-text="UNKNOWN" tabindex="-1">UNKNOWN</h3></td> <td><code translate="no" dir="ltr">1</code></td> <td><p>Role used to represent elements which role is not currently supported.</p> </td> </tr> <tr id="Role.BUTTON"> <td><h3 id="Role.BUTTON" class="add-link hide-from-toc" data-text="BUTTON" tabindex="-1">BUTTON</h3></td> <td><code translate="no" dir="ltr">2</code></td> <td><p>Something on screen that can be clicked/activated, that has a single function.</p> </td> </tr> <tr id="Role.HEADER"> <td><h3 id="Role.HEADER" class="add-link hide-from-toc" data-text="HEADER" tabindex="-1">HEADER</h3></td> <td><code translate="no" dir="ltr">3</code></td> <td><p>Header text, e.g. something tagged <h1> in HTML.</p> </td> </tr> <tr id="Role.IMAGE"> <td><h3 id="Role.IMAGE" class="add-link hide-from-toc" data-text="IMAGE" tabindex="-1">IMAGE</h3></td> <td><code translate="no" dir="ltr">4</code></td> <td><p>An image or graphic.</p> </td> </tr> <tr id="Role.TEXT_FIELD"> <td><h3 id="Role.TEXT_FIELD" class="add-link hide-from-toc" data-text="TEXT_FIELD" tabindex="-1">TEXT_FIELD</h3></td> <td><code translate="no" dir="ltr">5</code></td> <td><p>A field that can receive text input.</p> </td> </tr> <tr id="Role.SLIDER"> <td><h3 id="Role.SLIDER" class="add-link hide-from-toc" data-text="SLIDER" tabindex="-1">SLIDER</h3></td> <td><code translate="no" dir="ltr">6</code></td> <td><p>A slider, e.g. a volume slider or a time slider of a video.</p> </td> </tr> <tr id="Role.LINK"> <td><h3 id="Role.LINK" class="add-link hide-from-toc" data-text="LINK" tabindex="-1">LINK</h3></td> <td><code translate="no" dir="ltr">7</code></td> <td><p>A link, e.g. a link on a webpage.</p> </td> </tr> <tr id="Role.CHECK_BOX"> <td><h3 id="Role.CHECK_BOX" class="add-link hide-from-toc" data-text="CHECK_BOX" tabindex="-1">CHECK_BOX</h3></td> <td><code translate="no" dir="ltr">8</code></td> <td><p>A check box that can be toggled.</p> </td> </tr> <tr id="Role.RADIO_BUTTON"> <td><h3 id="Role.RADIO_BUTTON" class="add-link hide-from-toc" data-text="RADIO_BUTTON" tabindex="-1">RADIO_BUTTON</h3></td> <td><code translate="no" dir="ltr">9</code></td> <td><p>A radio button that selects an option among a group of options.</p> </td> </tr> <tr id="Role.LIST"> <td><h3 id="Role.LIST" class="add-link hide-from-toc" data-text="LIST" tabindex="-1">LIST</h3></td> <td><code translate="no" dir="ltr">10</code></td> <td><p>Role used to represent lists.</p> </td> </tr> <tr id="Role.LIST_ELEMENT"> <td><h3 id="Role.LIST_ELEMENT" class="add-link hide-from-toc" data-text="LIST_ELEMENT" tabindex="-1">LIST_ELEMENT</h3></td> <td><code translate="no" dir="ltr">11</code></td> <td><p>Role used to represent an element in a list, including its marker and its content. For example, a element tagged <li>, or an element with the ARIA listitem role.</p> </td> </tr> <tr id="Role.LIST_ELEMENT_MARKER"> <td><h3 id="Role.LIST_ELEMENT_MARKER" class="add-link hide-from-toc" data-text="LIST_ELEMENT_MARKER" tabindex="-1">LIST_ELEMENT_MARKER</h3></td> <td><code translate="no" dir="ltr">12</code></td> <td><p>Role used to represent a list marker (e.g. a bullet point, number, roman numeral, etc.).</p> </td> </tr> <tr id="Role.STATIC_TEXT"> <td><h3 id="Role.STATIC_TEXT" class="add-link hide-from-toc" data-text="STATIC_TEXT" tabindex="-1">STATIC_TEXT</h3></td> <td><code translate="no" dir="ltr">13</code></td> <td><p>Role used to represent immutable text.</p> </td> </tr> <tr id="Role.TOGGLE_SWITCH"> <td><h3 id="Role.TOGGLE_SWITCH" class="add-link hide-from-toc" data-text="TOGGLE_SWITCH" tabindex="-1">TOGGLE_SWITCH</h3></td> <td><code translate="no" dir="ltr">14</code></td> <td><p>Role used to represent toggle switch.</p> </td> </tr> <tr id="Role.TABLE"> <td><h3 id="Role.TABLE" class="add-link hide-from-toc" data-text="TABLE" tabindex="-1">TABLE</h3></td> <td><code translate="no" dir="ltr">15</code></td> <td><p>Role used to represent a table of elements.</p> </td> </tr> <tr id="Role.GRID"> <td><h3 id="Role.GRID" class="add-link hide-from-toc" data-text="GRID" tabindex="-1">GRID</h3></td> <td><code translate="no" dir="ltr">16</code></td> <td><p>Role used to represent a grid. For example, an element with the aria-grid role.</p> </td> </tr> <tr id="Role.TABLE_ROW"> <td><h3 id="Role.TABLE_ROW" class="add-link hide-from-toc" data-text="TABLE_ROW" tabindex="-1">TABLE_ROW</h3></td> <td><code translate="no" dir="ltr">17</code></td> <td><p>Role used to represent the row of a table.</p> </td> </tr> <tr id="Role.CELL"> <td><h3 id="Role.CELL" class="add-link hide-from-toc" data-text="CELL" tabindex="-1">CELL</h3></td> <td><code translate="no" dir="ltr">18</code></td> <td><p>Role used to represent the cell of a table or grid.</p> </td> </tr> <tr id="Role.COLUMN_HEADER"> <td><h3 id="Role.COLUMN_HEADER" class="add-link hide-from-toc" data-text="COLUMN_HEADER" tabindex="-1">COLUMN_HEADER</h3></td> <td><code translate="no" dir="ltr">19</code></td> <td><p>Role used to represent a column header. For example, an element with the html tag <th>.</p> </td> </tr> <tr id="Role.ROW_GROUP"> <td><h3 id="Role.ROW_GROUP" class="add-link hide-from-toc" data-text="ROW_GROUP" tabindex="-1">ROW_GROUP</h3></td> <td><code translate="no" dir="ltr">20</code></td> <td><p>Role used to represent an aria-rowgroup-like element.</p> </td> </tr> <tr id="Role.PARAGRAPH"> <td><h3 id="Role.PARAGRAPH" class="add-link hide-from-toc" data-text="PARAGRAPH" tabindex="-1">PARAGRAPH</h3></td> <td><code translate="no" dir="ltr">21</code></td> <td><p>Role used to represent a paragraph of text.</p> </td> </tr> <tr id="Role.SEARCH_BOX"> <td><h3 id="Role.SEARCH_BOX" class="add-link hide-from-toc" data-text="SEARCH_BOX" tabindex="-1">SEARCH_BOX</h3></td> <td><code translate="no" dir="ltr">22</code></td> <td></td> </tr> <tr id="Role.TEXT_FIELD_WITH_COMBO_BOX"> <td><h3 id="Role.TEXT_FIELD_WITH_COMBO_BOX" class="add-link hide-from-toc" data-text="TEXT_FIELD_WITH_COMBO_BOX" tabindex="-1">TEXT_FIELD_WITH_COMBO_BOX</h3></td> <td><code translate="no" dir="ltr">23</code></td> <td></td> </tr> <tr id="Role.ROW_HEADER"> <td><h3 id="Role.ROW_HEADER" class="add-link hide-from-toc" data-text="ROW_HEADER" tabindex="-1">ROW_HEADER</h3></td> <td><code translate="no" dir="ltr">24</code></td> <td></td> </tr> </table> <h3 id="ToggledState" data-text="ToggledState" transformation="converted" tabindex="-1">ToggledState <a href="/fuchsia-src/reference/fidl/language/language#strict-vs-flexible" class="fidl-attribute">strict</a></h3> <p>Type: <code translate="no" dir="ltr">uint32</code></p> <p><em>Defined in <a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/node.fidl;l=276">fuchsia.accessibility.semantics/node.fidl</a></em> <p>Represents the state of a UI toggle switch.</p></p> <table> <tr><th>Name</th><th>Value</th><th>Description</th></tr> <tr id="ToggledState.ON"> <td><h3 id="ToggledState.ON" class="add-link hide-from-toc" data-text="ON" tabindex="-1">ON</h3></td> <td><code translate="no" dir="ltr">1</code></td> <td><p>Toggle switch is on.</p> </td> </tr> <tr id="ToggledState.OFF"> <td><h3 id="ToggledState.OFF" class="add-link hide-from-toc" data-text="OFF" tabindex="-1">OFF</h3></td> <td><code translate="no" dir="ltr">2</code></td> <td><p>Toggle switch is off.</p> </td> </tr> <tr id="ToggledState.INDETERMINATE"> <td><h3 id="ToggledState.INDETERMINATE" class="add-link hide-from-toc" data-text="INDETERMINATE" tabindex="-1">INDETERMINATE</h3></td> <td><code translate="no" dir="ltr">3</code></td> <td><p>Toggle switch is in Indeterminate state.</p> </td> </tr> </table> <h2 id="tables" data-text="TABLES" tabindex="-1"><strong>TABLES</strong></h2> <h3 id="AnnounceEvent" data-text="AnnounceEvent" transformation="converted" tabindex="-1">AnnounceEvent</h3> <p><em>Defined in <a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/semantics_manager.fidl;l=52">fuchsia.accessibility.semantics/semantics_manager.fidl</a></em> <p>An announce event is one where a message is sent to a Semantic Tree, informing a change of some global state in the application. Because this announcement can be disruptive to assistive technology, it should be used sparingly.</p></p> <table> <tr><th>Ordinal</th><th>Field</th><th>Type</th><th>Description</th></tr> <tr id="AnnounceEvent.message"> <td><h3 id="AnnounceEvent.message" class="add-link hide-from-toc" data-text="1" tabindex="-1">1</h3></td> <td><code translate="no" dir="ltr">message</code></td> <td> <code translate="no" dir="ltr">string[16384]</code> </td> <td><p>A message describing the change in the application. This message is expected to be localized in the language that the application is in.</p> </td> </tr> </table> <h3 id="Attributes" data-text="Attributes" transformation="converted" tabindex="-1">Attributes</h3> <p><em>Defined in <a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/node.fidl;l=213">fuchsia.accessibility.semantics/node.fidl</a></em> <p>An attribute is an essential property to describe an element. Unlike states, attributes do not change over the life of an element. Example: A button with a label attribute 'ok' should never change to 'cancel', as this is not the same element.</p></p> <table> <tr><th>Ordinal</th><th>Field</th><th>Type</th><th>Description</th></tr> <tr id="Attributes.label"> <td><h3 id="Attributes.label" class="add-link hide-from-toc" data-text="1" tabindex="-1">1</h3></td> <td><code translate="no" dir="ltr">label</code></td> <td> <code translate="no" dir="ltr">string[16384]</code> </td> <td><p>The primary label for an element. If longer than MAX_LABEL_SIZE the client is responsible for truncating the label.</p> </td> </tr> <tr id="Attributes.secondary_label"> <td><h3 id="Attributes.secondary_label" class="add-link hide-from-toc" data-text="2" tabindex="-1">2</h3></td> <td><code translate="no" dir="ltr">secondary_label</code></td> <td> <code translate="no" dir="ltr">string[16384]</code> </td> <td><p>The secondary label for an element. If longer than MAX_LABEL_SIZE the client is responsible for truncating the label.</p> </td> </tr> <tr id="Attributes.secondary_action_description"> <td><h3 id="Attributes.secondary_action_description" class="add-link hide-from-toc" data-text="3" tabindex="-1">3</h3></td> <td><code translate="no" dir="ltr">secondary_action_description</code></td> <td> <code translate="no" dir="ltr">string[16384]</code> </td> <td><p>A description of what the secondary action on a node (equivalent to long press or right click) should do.</p> </td> </tr> <tr id="Attributes.range"> <td><h3 id="Attributes.range" class="add-link hide-from-toc" data-text="4" tabindex="-1">4</h3></td> <td><code translate="no" dir="ltr">range</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="#RangeAttributes">RangeAttributes</a></code> </td> <td><p>The range attributes are filled if the element is a slider / a range control.</p> </td> </tr> <tr id="Attributes.set"> <td><h3 id="Attributes.set" class="add-link hide-from-toc" data-text="5" tabindex="-1">5</h3></td> <td><code translate="no" dir="ltr">set</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="#SetAttributes">SetAttributes</a></code> </td> <td><p>Set attributes are filled if the element is part of some type of set. For example, radio buttons that are related are part of the same set.</p> </td> </tr> <tr id="Attributes.list_attributes"> <td><h3 id="Attributes.list_attributes" class="add-link hide-from-toc" data-text="6" tabindex="-1">6</h3></td> <td><code translate="no" dir="ltr">list_attributes</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="#SetAttributes">SetAttributes</a></code> </td> <td><p>The list attributes should be filled if the node has the LIST role. Note that only <code translate="no" dir="ltr">size</code> and <code translate="no" dir="ltr">set_element_ids</code> should be filled.</p> </td> </tr> <tr id="Attributes.list_element_attributes"> <td><h3 id="Attributes.list_element_attributes" class="add-link hide-from-toc" data-text="7" tabindex="-1">7</h3></td> <td><code translate="no" dir="ltr">list_element_attributes</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="#SetAttributes">SetAttributes</a></code> </td> <td><p>The list element attributes should be filled if the node has a LIST_ELEMENT role and descends from a node with a LIST role. Note that only <code translate="no" dir="ltr">index</code> should be filled.</p> </td> </tr> <tr id="Attributes.hierarchical_level"> <td><h3 id="Attributes.hierarchical_level" class="add-link hide-from-toc" data-text="8" tabindex="-1">8</h3></td> <td><code translate="no" dir="ltr">hierarchical_level</code></td> <td> <code translate="no" dir="ltr">uint32</code> </td> <td><p>The hierarchical level of an element. For example, a header can be of level 1 to 6 in html or markdown.</p> </td> </tr> <tr id="Attributes.table_attributes"> <td><h3 id="Attributes.table_attributes" class="add-link hide-from-toc" data-text="9" tabindex="-1">9</h3></td> <td><code translate="no" dir="ltr">table_attributes</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="#TableAttributes">TableAttributes</a></code> </td> <td><p>The table attributes are filled when the element is a table.</p> </td> </tr> <tr id="Attributes.label_origin"> <td><h3 id="Attributes.label_origin" class="add-link hide-from-toc" data-text="10" tabindex="-1">10</h3></td> <td><code translate="no" dir="ltr">label_origin</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="#LabelOrigin">LabelOrigin</a></code> </td> <td><p>The origin of the label of this element.</p> </td> </tr> <tr id="Attributes.is_keyboard_key"> <td><h3 id="Attributes.is_keyboard_key" class="add-link hide-from-toc" data-text="11" tabindex="-1">11</h3></td> <td><code translate="no" dir="ltr">is_keyboard_key</code></td> <td> <code translate="no" dir="ltr">bool</code> </td> <td><p>Whether the element is part of a virtual keyboard. For example, a key on an onscreen keyboard.</p> </td> </tr> <tr id="Attributes.table_row_attributes"> <td><h3 id="Attributes.table_row_attributes" class="add-link hide-from-toc" data-text="12" tabindex="-1">12</h3></td> <td><code translate="no" dir="ltr">table_row_attributes</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="#TableRowAttributes">TableRowAttributes</a></code> </td> <td><p>The table row attributes are filled when the element is a table row.</p> </td> </tr> <tr id="Attributes.table_cell_attributes"> <td><h3 id="Attributes.table_cell_attributes" class="add-link hide-from-toc" data-text="13" tabindex="-1">13</h3></td> <td><code translate="no" dir="ltr">table_cell_attributes</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="#TableCellAttributes">TableCellAttributes</a></code> </td> <td><p>The table cell attributes are filled when the element is a table cell.</p> </td> </tr> </table> <h3 id="Hit" data-text="Hit" transformation="converted" tabindex="-1">Hit</h3> <p><em>Defined in <a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/semantics_manager.fidl;l=102">fuchsia.accessibility.semantics/semantics_manager.fidl</a></em> <p>Results of hit testing on a view's semantic tree which is implemented by Runtimes(like Flutter/Chrome) and sent to Accessibility.</p></p> <table> <tr><th>Ordinal</th><th>Field</th><th>Type</th><th>Description</th></tr> <tr id="Hit.node_id"> <td><h3 id="Hit.node_id" class="add-link hide-from-toc" data-text="1" tabindex="-1">1</h3></td> <td><code translate="no" dir="ltr">node_id</code></td> <td> <code translate="no" dir="ltr">uint32</code> </td> <td><p>Unique ID that represents a node in a particular UI. Zero is assumed to be the root node and the only entry point to the tree. node_id will not be filled when there is no hit.</p> </td> </tr> <tr id="Hit.path_from_root"> <td><h3 id="Hit.path_from_root" class="add-link hide-from-toc" data-text="2" tabindex="-1">2</h3></td> <td><code translate="no" dir="ltr">path_from_root</code></td> <td> <code translate="no" dir="ltr">vector<uint32>[256]</code> </td> <td><p>The ordered list of node ids which represent path from root node to the hit node.</p> </td> </tr> </table> <h3 id="Node" data-text="Node" transformation="converted" tabindex="-1">Node</h3> <p><em>Defined in <a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/node.fidl;l=351">fuchsia.accessibility.semantics/node.fidl</a></em> <p>The Node represents a semantic element on an interface. This may be a button, a text field, a checkbox or any element that has a relevant semantic meaning so that assistive technology can understand the current UI.</p></p> <table> <tr><th>Ordinal</th><th>Field</th><th>Type</th><th>Description</th></tr> <tr id="Node.node_id"> <td><h3 id="Node.node_id" class="add-link hide-from-toc" data-text="1" tabindex="-1">1</h3></td> <td><code translate="no" dir="ltr">node_id</code></td> <td> <code translate="no" dir="ltr">uint32</code> </td> <td><p>Unique ID that represents a node in a particular UI. Zero is assumed to be the root node and the only entry point to the tree. No forest is allowed.</p> </td> </tr> <tr id="Node.role"> <td><h3 id="Node.role" class="add-link hide-from-toc" data-text="2" tabindex="-1">2</h3></td> <td><code translate="no" dir="ltr">role</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="#Role">Role</a></code> </td> <td><p>Role of this element, e.g. button, checkbox, etc.</p> </td> </tr> <tr id="Node.states"> <td><h3 id="Node.states" class="add-link hide-from-toc" data-text="3" tabindex="-1">3</h3></td> <td><code translate="no" dir="ltr">states</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="#States">States</a></code> </td> <td><p>A table of states of this object, e.g. checked, editable, etc.</p> </td> </tr> <tr id="Node.attributes"> <td><h3 id="Node.attributes" class="add-link hide-from-toc" data-text="4" tabindex="-1">4</h3></td> <td><code translate="no" dir="ltr">attributes</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="#Attributes">Attributes</a></code> </td> <td><p>A table of attributes of this node.</p> </td> </tr> <tr id="Node.actions"> <td><h3 id="Node.actions" class="add-link hide-from-toc" data-text="5" tabindex="-1">5</h3></td> <td><code translate="no" dir="ltr">actions</code></td> <td> <code translate="no" dir="ltr">vector<<a class='link' href="#Action">Action</a>>[100]</code> </td> <td><p>A list of actions that can be performed on this node.</p> </td> </tr> <tr id="Node.child_ids"> <td><h3 id="Node.child_ids" class="add-link hide-from-toc" data-text="6" tabindex="-1">6</h3></td> <td><code translate="no" dir="ltr">child_ids</code></td> <td> <code translate="no" dir="ltr">vector<uint32>[20000]</code> </td> <td><p>The list of child IDs of this node, in traversal order. Runtimes supplying semantic tree information are responsible for ensuring the tree does not contain cycles. Each node may have only one parent.</p> </td> </tr> <tr id="Node.location"> <td><h3 id="Node.location" class="add-link hide-from-toc" data-text="7" tabindex="-1">7</h3></td> <td><code translate="no" dir="ltr">location</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="https://fuchsia.dev/reference/fidl/fuchsia.ui.gfx/">fuchsia.ui.gfx</a>/<a class='link' href="https://fuchsia.dev/reference/fidl/fuchsia.ui.gfx/#BoundingBox">BoundingBox</a></code> </td> <td><p>Local bounding box of this element.</p> </td> </tr> <tr id="Node.transform"> <td><h3 id="Node.transform" class="add-link hide-from-toc" data-text="8" tabindex="-1">8</h3></td> <td><code translate="no" dir="ltr">transform</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="https://fuchsia.dev/reference/fidl/fuchsia.ui.gfx/">fuchsia.ui.gfx</a>/<a class='link' href="https://fuchsia.dev/reference/fidl/fuchsia.ui.gfx/#mat4">mat4</a></code> </td> <td><p>Transform from this node's coordinate space to its container's space. 4x4 for compatibility with scenic. This matrix is required to have the form</p> <p>[ Sx 0 0 Tx ] [ 0 Sy 0 Ty ] [ 0 0 Sz Tz ] [ 0 0 0 1 ]</p> <p>where Sx, Sy, and Sz are scale factors and Tx, Ty, Tz are the translation factors for the x, y, and z components.</p> </td> </tr> <tr id="Node.container_id"> <td><h3 id="Node.container_id" class="add-link hide-from-toc" data-text="9" tabindex="-1">9</h3></td> <td><code translate="no" dir="ltr">container_id</code></td> <td> <code translate="no" dir="ltr">uint32</code> </td> <td><p>Node ID of the ancestor of this node that is used as the target of |transform|. If not present, this is interpreted as this node's parent.</p> </td> </tr> <tr id="Node.node_to_container_transform"> <td><h3 id="Node.node_to_container_transform" class="add-link hide-from-toc" data-text="10" tabindex="-1">10</h3></td> <td><code translate="no" dir="ltr">node_to_container_transform</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="https://fuchsia.dev/reference/fidl/fuchsia.ui.gfx/">fuchsia.ui.gfx</a>/<a class='link' href="https://fuchsia.dev/reference/fidl/fuchsia.ui.gfx/#mat4">mat4</a></code> </td> <td><p>NOTE: We are deprecating <code translate="no" dir="ltr">transform</code> in favor of <code translate="no" dir="ltr">node_to_container_transform</code>. Clients must NOT set both fields.</p> <p>Transform from this node's coordinate space to its container's space. If the <code translate="no" dir="ltr">container_id</code> field is set, then that id specifies the container node. Otherwise, this node's parent is the container node.</p> <p>Additionally, if <code translate="no" dir="ltr">container_id</code> is set, the fuchsia accessibility manager will post-translate this node's coordinate space by its container's <code translate="no" dir="ltr">location.min</code> after applying <code translate="no" dir="ltr">node_to_container_transform</code> when converting to the container's coordinate space. If <code translate="no" dir="ltr">container_id</code> is unset, this post-translation will NOT be applied.</p> <p>4x4 for compatibility with scenic. This matrix is required to have the form:</p> <p>[ Sx 0 0 Tx ] [ 0 Sy 0 Ty ] [ 0 0 Sz Tz ] [ 0 0 0 1 ]</p> <p>where Sx, Sy, and Sz are scale factors and Tx, Ty, Tz are the translation factors for the x, y, and z components.</p> </td> </tr> </table> <h3 id="RangeAttributes" data-text="RangeAttributes" transformation="converted" tabindex="-1">RangeAttributes</h3> <p><em>Defined in <a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/node.fidl;l=143">fuchsia.accessibility.semantics/node.fidl</a></em> <p>Slider / range control attributes.</p></p> <table> <tr><th>Ordinal</th><th>Field</th><th>Type</th><th>Description</th></tr> <tr id="RangeAttributes.min_value"> <td><h3 id="RangeAttributes.min_value" class="add-link hide-from-toc" data-text="1" tabindex="-1">1</h3></td> <td><code translate="no" dir="ltr">min_value</code></td> <td> <code translate="no" dir="ltr">float32</code> </td> <td><p>The minimum value a range control element can take.</p> </td> </tr> <tr id="RangeAttributes.max_value"> <td><h3 id="RangeAttributes.max_value" class="add-link hide-from-toc" data-text="2" tabindex="-1">2</h3></td> <td><code translate="no" dir="ltr">max_value</code></td> <td> <code translate="no" dir="ltr">float32</code> </td> <td><p>The maximum value a range control element can take.</p> </td> </tr> <tr id="RangeAttributes.step_delta"> <td><h3 id="RangeAttributes.step_delta" class="add-link hide-from-toc" data-text="3" tabindex="-1">3</h3></td> <td><code translate="no" dir="ltr">step_delta</code></td> <td> <code translate="no" dir="ltr">float32</code> </td> <td><p>The step delta the element applies when the action DECREMENT or INCREMENT are invoked.</p> </td> </tr> </table> <h3 id="SetAttributes" data-text="SetAttributes" transformation="converted" tabindex="-1">SetAttributes</h3> <p><em>Defined in <a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/node.fidl;l=156">fuchsia.accessibility.semantics/node.fidl</a></em> <p>Set attributes that control how an element is connected to others in the same set. For example, a group of radio buttons in html containing the same name attribute are part of the same set.</p></p> <table> <tr><th>Ordinal</th><th>Field</th><th>Type</th><th>Description</th></tr> <tr id="SetAttributes.size"> <td><h3 id="SetAttributes.size" class="add-link hide-from-toc" data-text="1" tabindex="-1">1</h3></td> <td><code translate="no" dir="ltr">size</code></td> <td> <code translate="no" dir="ltr">uint32</code> </td> <td><p>Size of the set.</p> </td> </tr> <tr id="SetAttributes.index"> <td><h3 id="SetAttributes.index" class="add-link hide-from-toc" data-text="2" tabindex="-1">2</h3></td> <td><code translate="no" dir="ltr">index</code></td> <td> <code translate="no" dir="ltr">uint32</code> </td> <td><p>Element index in the set, starting from one.</p> </td> </tr> <tr id="SetAttributes.set_element_ids"> <td><h3 id="SetAttributes.set_element_ids" class="add-link hide-from-toc" data-text="3" tabindex="-1">3</h3></td> <td><code translate="no" dir="ltr">set_element_ids</code></td> <td> <code translate="no" dir="ltr">vector<uint32>[100]</code> </td> <td><p>Node ids of other elements in this set.</p> </td> </tr> </table> <h3 id="States" data-text="States" transformation="converted" tabindex="-1">States</h3> <p><em>Defined in <a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/node.fidl;l=299">fuchsia.accessibility.semantics/node.fidl</a></em> <p>A state is a dynamic property of an element that may change in response to user action or automated processes. Thus, they are different from attributes in an important point, which is frequency of change.</p></p> <table> <tr><th>Ordinal</th><th>Field</th><th>Type</th><th>Description</th></tr> <tr id="States.checked"> <td><h3 id="States.checked" class="add-link hide-from-toc" data-text="1" tabindex="-1">1</h3></td> <td><code translate="no" dir="ltr">checked</code></td> <td> <code translate="no" dir="ltr">bool</code> </td> <td><p>DEPRECATED</p> </td> </tr> <tr id="States.checked_state"> <td><h3 id="States.checked_state" class="add-link hide-from-toc" data-text="2" tabindex="-1">2</h3></td> <td><code translate="no" dir="ltr">checked_state</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="#CheckedState">CheckedState</a></code> </td> <td><p>State of a checkbox. This field is mutually exclusive with ToggledState.</p> </td> </tr> <tr id="States.selected"> <td><h3 id="States.selected" class="add-link hide-from-toc" data-text="3" tabindex="-1">3</h3></td> <td><code translate="no" dir="ltr">selected</code></td> <td> <code translate="no" dir="ltr">bool</code> </td> <td><p>Whether the element is currently selected.</p> </td> </tr> <tr id="States.hidden"> <td><h3 id="States.hidden" class="add-link hide-from-toc" data-text="4" tabindex="-1">4</h3></td> <td><code translate="no" dir="ltr">hidden</code></td> <td> <code translate="no" dir="ltr">bool</code> </td> <td><p>Whether the element is currently hidden or marked invisible by the framework.</p> </td> </tr> <tr id="States.value"> <td><h3 id="States.value" class="add-link hide-from-toc" data-text="5" tabindex="-1">5</h3></td> <td><code translate="no" dir="ltr">value</code></td> <td> <code translate="no" dir="ltr">string[16384]</code> </td> <td><p>The user-entered value of the element, if applicable. If longer than MAX_VALUE_SIZE the client is responsible for truncating.</p> </td> </tr> <tr id="States.range_value"> <td><h3 id="States.range_value" class="add-link hide-from-toc" data-text="6" tabindex="-1">6</h3></td> <td><code translate="no" dir="ltr">range_value</code></td> <td> <code translate="no" dir="ltr">float32</code> </td> <td><p>If the element is a slider or a range control, this field contains the current value. Note that this is not the same as the value field above, as this is generated by the client and just adjusted by the user.</p> </td> </tr> <tr id="States.viewport_offset"> <td><h3 id="States.viewport_offset" class="add-link hide-from-toc" data-text="7" tabindex="-1">7</h3></td> <td><code translate="no" dir="ltr">viewport_offset</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="https://fuchsia.dev/reference/fidl/fuchsia.ui.gfx/">fuchsia.ui.gfx</a>/<a class='link' href="https://fuchsia.dev/reference/fidl/fuchsia.ui.gfx/#vec2">vec2</a></code> </td> <td><p>If the element is a scrollable viewport, this field contains the x and y offsets within this node's coordinate space to apply to the children. This offsetting is used to position the children within the viewport to reflect the current scrolling of the element. There are no constraints on these values other than they must be finite.</p> </td> </tr> <tr id="States.toggled_state"> <td><h3 id="States.toggled_state" class="add-link hide-from-toc" data-text="8" tabindex="-1">8</h3></td> <td><code translate="no" dir="ltr">toggled_state</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="#ToggledState">ToggledState</a></code> </td> <td><p>State of a toggle switch. This field must only be set if the element is a toggle switch element and is mutually exclusive with CheckedState.</p> </td> </tr> <tr id="States.focusable"> <td><h3 id="States.focusable" class="add-link hide-from-toc" data-text="9" tabindex="-1">9</h3></td> <td><code translate="no" dir="ltr">focusable</code></td> <td> <code translate="no" dir="ltr">bool</code> </td> <td><p>Whether this element is focusable in the UI. Note that this is not the a11y focus, but the input focus.</p> </td> </tr> <tr id="States.has_input_focus"> <td><h3 id="States.has_input_focus" class="add-link hide-from-toc" data-text="10" tabindex="-1">10</h3></td> <td><code translate="no" dir="ltr">has_input_focus</code></td> <td> <code translate="no" dir="ltr">bool</code> </td> <td><p>Whether this element has the input focus. This corresponds to the system focus. Only one element can have this value set. The behavior is undetermined if more than one node sets this value to 'true'.</p> </td> </tr> <tr id="States.enabled_state"> <td><h3 id="States.enabled_state" class="add-link hide-from-toc" data-text="11" tabindex="-1">11</h3></td> <td><code translate="no" dir="ltr">enabled_state</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="#EnabledState">EnabledState</a></code> </td> <td><p>State of an element with enabled/disabled state.</p> <div class="fidl-version-div"><span class="fidl-attribute fidl-version">Added: 15</span></div> </td> </tr> </table> <h3 id="TableAttributes" data-text="TableAttributes" transformation="converted" tabindex="-1">TableAttributes</h3> <p><em>Defined in <a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/node.fidl;l=166">fuchsia.accessibility.semantics/node.fidl</a></em> <p>Attributes that control how a table cell node is interpreted.</p></p> <table> <tr><th>Ordinal</th><th>Field</th><th>Type</th><th>Description</th></tr> <tr id="TableAttributes.column_span"> <td><h3 id="TableAttributes.column_span" class="add-link hide-from-toc" data-text="1" tabindex="-1">1</h3></td> <td><code translate="no" dir="ltr">column_span</code></td> <td> <code translate="no" dir="ltr">uint32</code> </td> <td><p>The number of columns this table cell spans.</p> <p><b>DEPRECATED </b>- Use TableCellAttributes for cell nodes instead</p></td> </tr> <tr id="TableAttributes.row_span"> <td><h3 id="TableAttributes.row_span" class="add-link hide-from-toc" data-text="2" tabindex="-1">2</h3></td> <td><code translate="no" dir="ltr">row_span</code></td> <td> <code translate="no" dir="ltr">uint32</code> </td> <td><p>The number of rows this table cell spans.</p> <p><b>DEPRECATED </b>- Use TableCellAttributes for cell nodes instead</p></td> </tr> <tr id="TableAttributes.number_of_rows"> <td><h3 id="TableAttributes.number_of_rows" class="add-link hide-from-toc" data-text="3" tabindex="-1">3</h3></td> <td><code translate="no" dir="ltr">number_of_rows</code></td> <td> <code translate="no" dir="ltr">uint32</code> </td> <td><p>Number of rows in this table.</p> </td> </tr> <tr id="TableAttributes.number_of_columns"> <td><h3 id="TableAttributes.number_of_columns" class="add-link hide-from-toc" data-text="4" tabindex="-1">4</h3></td> <td><code translate="no" dir="ltr">number_of_columns</code></td> <td> <code translate="no" dir="ltr">uint32</code> </td> <td><p>Number of columns in this table.</p> </td> </tr> <tr id="TableAttributes.column_header_ids"> <td><h3 id="TableAttributes.column_header_ids" class="add-link hide-from-toc" data-text="5" tabindex="-1">5</h3></td> <td><code translate="no" dir="ltr">column_header_ids</code></td> <td> <code translate="no" dir="ltr">vector<uint32>[100]</code> </td> <td><p>Node ids of the table's column headers.</p> </td> </tr> <tr id="TableAttributes.row_header_ids"> <td><h3 id="TableAttributes.row_header_ids" class="add-link hide-from-toc" data-text="6" tabindex="-1">6</h3></td> <td><code translate="no" dir="ltr">row_header_ids</code></td> <td> <code translate="no" dir="ltr">vector<uint32>[100]</code> </td> <td><p>Node ids of the table's row headers.</p> </td> </tr> </table> <h3 id="TableCellAttributes" data-text="TableCellAttributes" transformation="converted" tabindex="-1">TableCellAttributes</h3> <p><em>Defined in <a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/node.fidl;l=195">fuchsia.accessibility.semantics/node.fidl</a></em> <p>Attributes that control how a table cell is interpreted.</p></p> <table> <tr><th>Ordinal</th><th>Field</th><th>Type</th><th>Description</th></tr> <tr id="TableCellAttributes.row_index"> <td><h3 id="TableCellAttributes.row_index" class="add-link hide-from-toc" data-text="1" tabindex="-1">1</h3></td> <td><code translate="no" dir="ltr">row_index</code></td> <td> <code translate="no" dir="ltr">uint32</code> </td> <td><p>Row-index of this cell.</p> </td> </tr> <tr id="TableCellAttributes.column_index"> <td><h3 id="TableCellAttributes.column_index" class="add-link hide-from-toc" data-text="2" tabindex="-1">2</h3></td> <td><code translate="no" dir="ltr">column_index</code></td> <td> <code translate="no" dir="ltr">uint32</code> </td> <td><p>Column-index of this cell.</p> </td> </tr> <tr id="TableCellAttributes.row_span"> <td><h3 id="TableCellAttributes.row_span" class="add-link hide-from-toc" data-text="3" tabindex="-1">3</h3></td> <td><code translate="no" dir="ltr">row_span</code></td> <td> <code translate="no" dir="ltr">uint32</code> </td> <td><p>The number of rows this table cell spans.</p> </td> </tr> <tr id="TableCellAttributes.column_span"> <td><h3 id="TableCellAttributes.column_span" class="add-link hide-from-toc" data-text="4" tabindex="-1">4</h3></td> <td><code translate="no" dir="ltr">column_span</code></td> <td> <code translate="no" dir="ltr">uint32</code> </td> <td><p>The number of columns this table cell spans.</p> </td> </tr> </table> <h3 id="TableRowAttributes" data-text="TableRowAttributes" transformation="converted" tabindex="-1">TableRowAttributes</h3> <p><em>Defined in <a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/node.fidl;l=189">fuchsia.accessibility.semantics/node.fidl</a></em> <p>Attributes that control how a table row node is interpreted.</p></p> <table> <tr><th>Ordinal</th><th>Field</th><th>Type</th><th>Description</th></tr> <tr id="TableRowAttributes.row_index"> <td><h3 id="TableRowAttributes.row_index" class="add-link hide-from-toc" data-text="1" tabindex="-1">1</h3></td> <td><code translate="no" dir="ltr">row_index</code></td> <td> <code translate="no" dir="ltr">uint32</code> </td> <td><p>Table row index.</p> </td> </tr> </table> <h2 id="unions" data-text="UNIONS" tabindex="-1"><strong>UNIONS</strong></h2> <h3 id="SemanticEvent" data-text="SemanticEvent" transformation="converted" tabindex="-1">SemanticEvent <a href="/fuchsia-src/reference/fidl/language/language#strict-vs-flexible" class="fidl-attribute">strict</a></h3> <p><em>Defined in <a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/semantics_manager.fidl;l=44">fuchsia.accessibility.semantics/semantics_manager.fidl</a></em> <p>Represents a Semantic Event that is fired on a Semantic Tree.</p> <table> <tr><th>Ordinal</th><th>Variant</th><th>Type</th><th>Description</th></tr> <tr id="SemanticEvent.announce"> <td><h3 id="SemanticEvent.announce" class="add-link hide-from-toc" data-text="1" tabindex="-1">1</h3></td> <td><code translate="no" dir="ltr">announce</code></td> <td> <code translate="no" dir="ltr"><a class='link' href="#AnnounceEvent">AnnounceEvent</a></code> </td> <td></td> </tr> </table></p> <h2 id="constants" data-text="CONSTANTS" tabindex="-1"><strong>CONSTANTS</strong></h2> <table> <tr><th>Name</th><th>Value</th><th>Type</th><th>Description</th></tr> <tr id="MAX_FAN_OUT"> <td><a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/semantics_manager.fidl;l=13">MAX_FAN_OUT</a></td> <td> <code translate="no" dir="ltr">20000</code> </td> <td><code translate="no" dir="ltr">uint64</code></td> <td><p>Maximum number of children for a node in the semantic tree.</p> </td> </tr> <tr id="MAX_LABEL_SIZE"> <td><a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/semantics_manager.fidl;l=19">MAX_LABEL_SIZE</a></td> <td> <code translate="no" dir="ltr">16384</code> </td> <td><code translate="no" dir="ltr">uint64</code></td> <td><p>Maximum size of a label string, in bytes.</p> </td> </tr> <tr id="MAX_MESSAGE_SIZE"> <td><a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/semantics_manager.fidl;l=25">MAX_MESSAGE_SIZE</a></td> <td> <code translate="no" dir="ltr">16384</code> </td> <td><code translate="no" dir="ltr">uint64</code></td> <td><p>Maximum size of a message string, in bytes.</p> </td> </tr> <tr id="MAX_NODES_PER_UPDATE"> <td><a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/semantics_manager.fidl;l=16">MAX_NODES_PER_UPDATE</a></td> <td> <code translate="no" dir="ltr">2048</code> </td> <td><code translate="no" dir="ltr">uint64</code></td> <td><p>Maximum number of semantic nodes that may be sent in a single update.</p> </td> </tr> <tr id="MAX_SET_ELEMENTS"> <td><a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/node.fidl;l=9">MAX_SET_ELEMENTS</a></td> <td> <code translate="no" dir="ltr">100</code> </td> <td><code translate="no" dir="ltr">uint32</code></td> <td><p>Max number of elements in a semantic set.</p> </td> </tr> <tr id="MAX_TREE_DEPTH"> <td><a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/semantics_manager.fidl;l=10">MAX_TREE_DEPTH</a></td> <td> <code translate="no" dir="ltr">256</code> </td> <td><code translate="no" dir="ltr">uint64</code></td> <td><p>Maximum depth of the semantic tree.</p> </td> </tr> <tr id="MAX_VALUE_SIZE"> <td><a href="https://cs.opensource.google/fuchsia/fuchsia/+/main:sdk/fidl/fuchsia.accessibility.semantics/semantics_manager.fidl;l=22">MAX_VALUE_SIZE</a></td> <td> <code translate="no" dir="ltr">16384</code> </td> <td><code translate="no" dir="ltr">uint64</code></td> <td><p>Maximum size of a value string, in bytes.</p> </td> </tr> </table> <!-- The footer below is automatically added to this file. Do not modify anything below this line. --> <devsite-hats-survey class="nocontent" hats-id="5RumxBgfF0d7vXFJcj90X3khBKrh" listnr-id="5048604"></devsite-hats-survey> </div> <devsite-thumb-rating position="footer"> </devsite-thumb-rating> </article> <devsite-content-footer class="nocontent"> <p>Except as otherwise noted, the content of this page is licensed under the <a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 License</a>, and code samples are licensed under the <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache 2.0 License</a>. For details, see the <a href="https://developers.google.com/site-policies">Google Developers Site Policies</a>. Java is a registered trademark of Oracle and/or its affiliates.</p> <p>Last updated 2023-11-21 UTC.</p> </devsite-content-footer> <devsite-notification > </devsite-notification> <div class="devsite-content-data"> <template class="devsite-thumb-rating-down-categories"> [{ "type": "thumb-down", "id": "missingTheInformationINeed", "label":"Missing the information I need" },{ "type": "thumb-down", "id": "tooComplicatedTooManySteps", "label":"Too complicated / too many steps" },{ "type": "thumb-down", "id": "outOfDate", "label":"Out of date" },{ "type": "thumb-down", "id": "samplesCodeIssue", "label":"Samples / code issue" },{ "type": "thumb-down", "id": "otherDown", "label":"Other" }] </template> <template class="devsite-thumb-rating-up-categories"> [{ "type": "thumb-up", "id": "easyToUnderstand", "label":"Easy to understand" },{ "type": "thumb-up", "id": "solvedMyProblem", "label":"Solved my problem" },{ "type": "thumb-up", "id": "otherUp", "label":"Other" }] </template> </div> </devsite-content> </main> <devsite-footer-promos class="devsite-footer"> </devsite-footer-promos> <devsite-footer-linkboxes class="devsite-footer"> <nav class="devsite-footer-linkboxes nocontent" aria-label="Footer links"> </nav> </devsite-footer-linkboxes> <devsite-footer-utility class="devsite-footer"> <div class="devsite-footer-utility nocontent"> <nav class="devsite-footer-utility-links" aria-label="Utility links"> <ul class="devsite-footer-utility-list"> <li class="devsite-footer-utility-item "> <a class="devsite-footer-utility-link gc-analytics-event" href="//policies.google.com/terms" data-category="Site-Wide Custom Events" data-label="Footer Terms link" > Terms </a> </li> <li class="devsite-footer-utility-item "> <a class="devsite-footer-utility-link gc-analytics-event" href="//policies.google.com/privacy" data-category="Site-Wide Custom Events" data-label="Footer Privacy link" > Privacy </a> </li> </ul> </nav> </div> </devsite-footer-utility> <devsite-panel></devsite-panel> </section></section> <devsite-sitemask></devsite-sitemask> <devsite-snackbar > </devsite-snackbar> <devsite-tooltip ></devsite-tooltip> <devsite-heading-link></devsite-heading-link> <devsite-analytics analytics-iframe> <script type="application/json" analytics>[{"dimensions": {"dimension3": "en", "dimension2": false, "dimension1": "Signed out", "dimension4": "en", "dimension6": false}, "gaid": "UA-127897021-4", "metrics": {"ratings_count": "metric2", "ratings_value": "metric1"}}]</script> <script type="application/json" tag-management>{"ga4": ["G-E0J15V8K19"], "ga4p": ["G-E0J15V8K19"], "gtm": [], "parameters": {"internalUser": "False", "language": {"machineTranslated": "False", "requested": "en", "served": "en"}, "pageType": "article", "projectName": "Fuchsia", "signedIn": "False", "tenant": "fuchsia", "recommendations": {"sourcePage": "", "sourceType": 0, "sourceRank": 0, "sourceIdenticalDescriptions": 0, "sourceTitleWords": 0, "sourceDescriptionWords": 0, "experiment": ""}, "experiment": {"ids": ""}}}</script> </devsite-analytics> <script nonce="rg5h/rJLR7lEAlBDmPhslytYoaneDD"> (function(d,e,v,s,i,t,E){d['GoogleDevelopersObject']=i; t=e.createElement(v);t.async=1;t.src=s;E=e.getElementsByTagName(v)[0]; E.parentNode.insertBefore(t,E);})(window, document, 'script', 'https://www.gstatic.com/devrel-devsite/prod/v8968f24824135f40588bee141def93b2aa6ccdc7d86f8afca8cdd685d8fa94b7/fuchsia/js/app_loader.js', '[32,"en",null,"/js/devsite_app_module.js","https://www.gstatic.com/devrel-devsite/prod/v8968f24824135f40588bee141def93b2aa6ccdc7d86f8afca8cdd685d8fa94b7","https://www.gstatic.com/devrel-devsite/prod/v8968f24824135f40588bee141def93b2aa6ccdc7d86f8afca8cdd685d8fa94b7/fuchsia","https://fuchsia-dot-devsite-v2-prod-3p.appspot.com",1,null,["/_pwa/fuchsia/manifest.json","https://www.gstatic.com/devrel-devsite/prod/v8968f24824135f40588bee141def93b2aa6ccdc7d86f8afca8cdd685d8fa94b7/images/video-placeholder.svg","https://www.gstatic.com/devrel-devsite/prod/v8968f24824135f40588bee141def93b2aa6ccdc7d86f8afca8cdd685d8fa94b7/fuchsia/images/favicon.png","https://www.gstatic.com/devrel-devsite/prod/v8968f24824135f40588bee141def93b2aa6ccdc7d86f8afca8cdd685d8fa94b7/fuchsia/images/lockup.svg","https://fonts.googleapis.com/css?family=Roboto:300,400,400italic,500,500italic,700,700italic|Roboto+Mono:400,500,700&display=swap"],1,null,[1,6,8,12,14,17,21,25,40,50,52,63,70,75,76,80,87,91,92,93,97,98,100,101,102,103,104,105,107,108,109,110,111,112,113,115,116,117,118,120,122,124,125,126,127,129,130,131,132,133,134,135,136,138,140,141,144,147,148,149,150,151,152,154,155,156,157,158,159,161,163,164,165,168,169,170,172,173,179,180,182,183,186,190,191,193,196],"AIzaSyCNm9YxQumEXwGJgTDjxoxXK6m1F-9720Q","AIzaSyCc76DZePGtoyUjqKrLdsMGk_ry7sljLbY","fuchsia.dev","AIzaSyB9bqgQ2t11WJsOX8qNsCQ6U-w91mmqF-I","AIzaSyAdYnStPdzjcJJtQ0mvIaeaMKj7_t6J_Fg",null,null,null,["Cloud__enable_cloud_dlp_service","MiscFeatureFlags__enable_firebase_utm","MiscFeatureFlags__content_publisher_push_queue","AuthorPageInsights__enable_author_page_insights","Profiles__enable_suggested_interests","Profiles__enable_release_notes_notifications","Search__enable_page_map","MiscFeatureFlags__emergency_css","Cloud__enable_cloudx_ping","Experiments__reqs_query_experiments","Cloud__enable_cloudx_experiment_ids","Profiles__enable_developer_profiles_dashboard_recommendations","Profiles__enable_profile_collections","Significatio__enable_footprints","Profiles__enable_profile_communities","BookNav__enable_tenant_cache_key","MiscFeatureFlags__enable_project_variables","MiscFeatureFlags__developers_footer_image","Profiles__require_profile_eligibility_for_signin","MiscFeatureFlags__enable_tls_version_for_gaia_calls","BookNav__enable_collapsible_book_nav","Search__enable_devsite_serp","ContentExcellence__enable_googler_button","Localization__enable_locale_redirects","Cloud__enable_cloud_shell_fte_user_flow","Profiles__enable_page_saving","BookNav__enable_book_nav_filtering","Cloud__enable_cloud_facet_chat","Search__enable_acl_suggestions","ContentExcellence__enable_verified_date","MiscFeatureFlags__developers_footer_dark_image","Profiles__enable_searchable_interests","Profiles__enable_awarding_url","Profiles__enable_profile_notifications_ui","Profiles__enable_developer_profiles_interests","MiscFeatureFlags__enable_keyword_inheritance","Experiments__enable_experiments","Badges__enable_hide_badges","OpenInReplit__enable_replit","SignIn__enable_auto_signin_oauth","Cloud__enable_cloud_shell","Badges__enable_drag_and_drop_badges","Search__enable_suggestions_from_borg","Badges__enable_delete_badges","Cloud__enable_free_trial_server_call","Significatio__enable_experiment_id_caching","Profiles__enable_public_developer_profiles","Profiles__enable_developer_profiles_callout","Search__enable_dynamic_content_confidential_banner","Search__enable_faceted_search","Profiles__enable_inferred_interests","MiscFeatureFlags__enable_explain_this_code","Concierge__enable_pushui"],null,null,"AIzaSyA58TaKli1DculwmAmbpzLVGuWc8eCQgQc","https://developerscontentserving-pa.googleapis.com","AIzaSyDWBU60w0P9hEkr29kkksYs8Z7gvZ8u_wc","https://developerscontentsearch-pa.googleapis.com",2]') </script> <devsite-a11y-announce></devsite-a11y-announce> </body> </html>