Home · All Classes · Main Classes · Grouped Classes · Modules · Functions |
The QAccessibleInterface class defines an interface that exposes information about accessible objects. More...
#include <QAccessibleInterface>
Inherits QAccessible.
Inherited by QAccessibleObject.
The QAccessibleInterface class defines an interface that exposes information about accessible objects.
Accessibility tools (also called AT Clients), such as screen readers or braille displays, require high-level information about accessible objects in an application. Accessible objects provide specialized input and output methods, making it possible for users to use accessibility tools with enabled applications (AT Servers).
Every element that the user needs to interact with or react to is an accessible object, and should provide this information. These are mainly visual objects, such as widgets and widget elements, but can also be content, such as sounds.
The AT client uses three basic concepts to acquire information about any accessible object in an application:
The QAccessibleInterface defines the API for these three concepts.
The functions childCount() and indexOfChild() return the number of children of an accessible object and the index a child object has in its parent. The childAt() function returns the index of a child at a given position.
The relationTo() function provides information about how two different objects relate to each other, and navigate() allows traversing from one object to another object with a given relationship.
The central property of an accessible objects is what role() it has. Different objects can have the same role, e.g. both the "Add line" element in a scrollbar and the OK button in a dialog have the same role, "button". The role implies what kind of interaction the user can perform with the user interface element.
An object's state() property is a combination of different state flags and can describe both how the object's state differs from a "normal" state, e.g. it might be unavailable, and also how it behaves, e.g. it might be selectable.
The text() property provides textual information about the object. An object usually has a name, but can provide extended information such as a description, help text, or information about any keyboard accelerators it provides. Some objects allow changing the text() property through the setText() function, but this information is in most cases read-only.
The rect() property provides information about the geometry of an accessible object. This information is usually only available for visual objects.
To enable the user to interact with an accessible object the object must expose information about the actions that it can perform. userActionCount() returns the number of actions supported by an accessible object, and actionText() returns textual information about those actions. doAction() invokes an action.
Objects that support selections can define actions to change the selection.
A QAccessibleInterface provides information about the accessible object, and can also provide information for the children of that object if those children don't provide a QAccessibleInterface implementation themselves. This is practical if the object has many similar children (e.g. items in a list view), or if the children are an integral part of the object itself, for example, the different sections in a scrollbar.
If an accessible object provides information about it's children through one QAccessibleInterface, the children are referenced using indexes. The index is 1-based for the children, i.e. 0 refers to the object itself, 1 to the first child, 2 to the second child, and so on.
All functions in QAccessibleInterface that take a child index relate to the object itself if the index is 0, or to the child specified. If a child provides its own interface implementation (which can be retrieved through navigation) asking the parent for information about that child will usually not succeed.
See also QAccessible.
Destroys the object.
Returns the text property t of the action action supported by the object, or of the object's child if child is not 0.
See also text() and userActionCount().
Returns the 1-based index of the child that contains the screen coordinates (x, y). This function returns 0 if the point is positioned on the object itself. If the tested point is outside the boundaries of the object this function returns -1.
This function is only relyable for visible objects (invisible object might not be laid out correctly).
All visual objects provide this information.
See also rect().
Returns the number of children that belong to this object. A child can provide accessibility information on it's own (e.g. a child widget), or be a sub-element of this accessible object.
All objects provide this information.
See also indexOfChild().
Asks the object, or the object's child if child is not 0, to execute action using the parameters, params. Returns true if the action could be executed; otherwise returns false.
action can be a predefined or a custom action.
See also userActionCount() and actionText().
Returns the 1-based index of the object child in this object's children list, or -1 if child is not a child of this object. 0 is not a possible return value.
All objects provide this information about their children.
See also childCount().
Returns true if all the data necessary to use this interface implementation is valid (e.g. all pointers are non-null); otherwise returns false.
See also object().
Navigates from this object to an object that has a relationship relation to this object, and returns the respective object in target. It is the caller's responsibility to delete *target after use.
If an object is found target is set to point to the object, and the index of the child in target is returned. The return value is 0 if target itself is the requested object. target is set to null if this object is the target object (i.e. the requested object is a handled by this object).
If no object is found target is set to null, and the return value is -1.
The entry parameter has two different meanings:
The following code demonstrates how to use this function to navigate to the first child of an object:
QAccessibleInterface *child = 0; int targetChild = object->navigate(Child, 1, &child); if (child) { // ... delete child; }
Note that the Descendent value for relation is not supported.
All objects support navigation.
See also relationTo() and childCount().
Returns a pointer to the QObject this interface implementation provides information for.
See also isValid().
Returns the geometry of the object, or of the object's child if child is not 0. The geometry is in screen coordinates.
This function is only reliable for visible objects (invisible objects might not be laid out correctly).
All visual objects provide this information.
See also childAt().
Returns the relationship between this object's child and the other object's otherChild. If child is 0 the object's own relation is returned.
The returned value indicates the relation of the called object to the other object, e.g. if this object is a child of other the return value will be Child.
The return value is a combination of the bit flags in the QAccessible::Relation enumeration.
All objects provide this information.
See also indexOfChild() and navigate().
Returns the role of the object, or of the object's child if child is not 0. The role of an object is usually static.
All accessible objects have a role.
Sets the text property t of the object, or of the object's child if child is not 0, to text.
Note that the text properties of most objects are read-only.
See also text().
Returns the current state of the object, or of the object's child if child is not 0. The returned value is a combination of the flags in the QAccessible::StateFlag enumeration.
All accessible objects have a state.
Returns the value of the text property t of the object, or of the object's child if child is not 0.
The Name is a string used by clients to identify, find or announce an accessible object for the user. All objects must have a name that is unique within their container.
An accessible object's Description provides textual information about an object's visual appearance. The description is primarily used to provide greater context for vision-impaired users, but is also used for context searching or other applications. Not all objects have a description. An "OK" button would not need a description, but a toolbutton that shows a picture of a smiley would.
The Value of an accessible object represents visual information contained by the object, e.g. the text in a line edit. Usually, the value can be modified by the user. Not all objects have a value, e.g. static text labels don't, and some objects have a state that already is the value, e.g. toggle buttons.
The Help text provides information about the function and usage of an accessible object. Not all objects provide this information.
The Accelerator is a keyboard shortcut that activates the object's default action. A keyboard shortcut is the underlined character in the text of a menu, menu item or widget, and is either the character itself, or a combination of this character and a modifier key like Alt, Ctrl or Shift. Command controls like tool buttons also have shortcut keys and usually display them in their tooltip.
All objects provide a string for Name.
See also setText(), role(), and state().
Returns the number of custom actions of the object, or of the object's child if child is not 0.
The Action type enumerates predefined actions: these are not included in the returned value.
See also actionText() and doAction().
Copyright © 2005 Trolltech | Trademarks | Qt 4.1.0 |