LibreOffice
LibreOffice 24.2 SDK API Reference
|
Central service of the Accessibility API that gives access to various facets of an object's content. More...
import"AccessibleContext.idl";
Exported Interfaces | |
interface | XAccessibleContext |
interface | XAccessibleEventBroadcaster |
is implemented by accessible contexts that supports broadcasting of accessible events. More... | |
Additional Inherited Members | |
Public Member Functions inherited from XAccessibleContext | |
hyper | getAccessibleChildCount () |
Return the number of children. More... | |
XAccessible | getAccessibleChild ([in] hyper i) raises (::com::sun::star::lang::IndexOutOfBoundsException) |
Returns the i-th child of this object. More... | |
XAccessible | getAccessibleParent () |
Returns the parent of this object. More... | |
hyper | getAccessibleIndexInParent () |
Returns the index of this object in its accessible parent. More... | |
short | getAccessibleRole () |
Returns the role of this object. More... | |
string | getAccessibleDescription () |
Returns the object's description. More... | |
string | getAccessibleName () |
Return the object's localized name. More... | |
XAccessibleRelationSet | getAccessibleRelationSet () |
Returns the set of relations defined for this object. More... | |
hyper | getAccessibleStateSet () |
Returns the set of states that are currently active for this object. More... | |
::com::sun::star::lang::Locale | getLocale () raises (IllegalAccessibleComponentStateException) |
Returns the locale of the component. More... | |
Public Member Functions inherited from XInterface | |
any | queryInterface ([in] type aType) |
queries for a new interface to an existing UNO object. More... | |
void | acquire () |
increases the reference counter by one. More... | |
void | release () |
decreases the reference counter by one. More... | |
Protected Member Functions inherited from XAccessibleEventBroadcaster | |
void | addAccessibleEventListener ([in] XAccessibleEventListener xListener) |
registers the given XAccessibleEventListener. More... | |
void | removeAccessibleEventListener ([in] XAccessibleEventListener xListener) |
unregisters the given XAccessibleEventListener. More... | |
Central service of the Accessibility API that gives access to various facets of an object's content.
This service has to be implemented by every class that represents the actual accessibility information of another UNO service. It exposes two kinds of information: A tree structure in which all accessible objects are organized can be navigated in freely. It typically represents spatial relationship of one object containing a set of children like a dialog box contains a set of buttons. Additionally the XAccessibleContext interface of this service exposes methods that provide access to the actual object's content. This can be the object's role, name, description, and so on.
interface XAccessibleContext |
|
optional |
is implemented by accessible contexts that supports broadcasting of accessible events.