webkit
2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
|
This interface exposes the primary set of information about an IAccessible2 enabled accessible object. More...
import"Accessible2.idl";
Public Member Functions | |
HRESULT | role ([out, retval] long *role) |
Returns the role of an IAccessible2 object. More... | |
HRESULT | scrollTo ([in] enum IA2ScrollType scrollType) |
Makes an object visible on the screen. More... | |
HRESULT | scrollToPoint ([in] enum IA2CoordinateType coordinateType, [in] long x, [in] long y) |
Moves the top left of an object to a specified location. More... | |
Properties | |
long | nRelations [get] |
Returns the number of accessible relations for this object. More... | |
IAccessibleRelation | relation ([in] long relationIndex) [get] |
Returns one accessible relation for this object. More... | |
long | relations ([in] long maxRelations, [out, size_is(maxRelations), length_is(*nRelations)] IAccessibleRelation relations) [get] |
Returns multiple accessible relations for this object. More... | |
long | groupPosition ([out] long groupLevel, [out] long similarItemsInGroup) [get] |
Returns grouping information. More... | |
AccessibleStates | states [get] |
Returns the bit strip containing any IAccessible2 states. More... | |
BSTR | extendedRole [get] |
Returns the extended role. More... | |
BSTR | localizedExtendedRole [get] |
Returns the localized extended role. More... | |
long | nExtendedStates [get] |
Returns the number of extended states. More... | |
long | extendedStates ([in] long maxExtendedStates, [out, size_is(, maxExtendedStates), length_is(, *nExtendedStates)] BSTR extendedStates) [get] |
Returns the extended states (array of strings). More... | |
long | localizedExtendedStates ([in] long maxLocalizedExtendedStates, [out, size_is(, maxLocalizedExtendedStates), length_is(, *nLocalizedExtendedStates)] BSTR localizedExtendedStates) [get] |
Returns the localized extended states (array of strings). More... | |
long | uniqueID [get] |
Returns the unique ID. More... | |
HWND | windowHandle [get] |
Returns the window handle for the parent window which contains this object. More... | |
long | indexInParent [get] |
Returns the index of this object in its parent object. More... | |
IA2Locale | locale [get] |
Returns the IA2Locale of the accessible object. More... | |
BSTR | attributes [get] |
Returns the attributes specific to this object, such as a cell's formula. More... | |
This interface exposes the primary set of information about an IAccessible2 enabled accessible object.
This interface must always be provided for objects that support some portion of the collection of the IAccessible2 interfaces.
Please refer to Changing between Accessible Interfaces for special considerations related to use of the MSAA IAccessible interface and the set of IAccessible2 interfaces.
HRESULT IAccessible2::role | ( | [out, retval] long * | role | ) |
Returns the role of an IAccessible2 object.
[out] | role | The role of an IAccessible2 object. |
S_OK |
HRESULT IAccessible2::scrollTo | ( | [in] enum IA2ScrollType | scrollType | ) |
Makes an object visible on the screen.
[in] | scrollType | Defines where the object should be placed on the screen. |
S_OK | |
E_INVALIDARG | if bad [in] passed |
HRESULT IAccessible2::scrollToPoint | ( | [in] enum IA2CoordinateType | coordinateType, |
[in] long | x, | ||
[in] long | y | ||
) |
Moves the top left of an object to a specified location.
[in] | coordinateType | Specifies whether the coordinates are relative to the screen or the parent object. |
[in] | x | Defines the x coordinate. |
[in] | y | Defines the y coordinate. |
S_OK | |
E_INVALIDARG | if bad [in] passed |
|
get |
Returns the attributes specific to this object, such as a cell's formula.
[out] | attributes |
S_OK | |
S_FALSE | returned if there is nothing to return, [out] value is NULL |
|
get |
Returns the extended role.
An extended role is a role which is dynamically generated by the application. It is not predefined by the IAccessible2 specification.
[out] | extendedRole |
S_OK | |
S_FALSE | if there is nothing to return, [out] value is NULL |
|
get |
Returns the extended states (array of strings).
An extended state is a state which is dynamically generated by the application. It is not predefined by the IAccessible2 specification.
[in] | maxExtendedStates | This parameter is ignored. Refer to Special Consideration when using Arrays for more details. |
[out] | extendedStates | This array is allocated by the server. The client must free it with CoTaskMemFree. |
[out] | nExtendedStates | The number of extended states returned; the size of the returned array. |
S_OK | |
S_FALSE | if there are no states, [out] values are NULL and 0 respectively |
Returns grouping information.
Used for tree items, list items, tab panel labels, radio buttons, etc. Also used for collections of non-text objects.
[out] | groupLevel | 1 based, 0 indicates that this value is not applicable |
[out] | similarItemsInGroup | 1 based, 0 indicates that this value is not applicable |
[out] | positionInGroup | 1 based, 0 indicates that this value is not applicable. This is an index into the objects in the current group, not an index into all the objects at the same group level. |
S_OK | if at least one value is valid |
S_FALSE | if no values are valid, [out] values are 0s |
|
get |
Returns the index of this object in its parent object.
[out] | indexInParent | 0 based; -1 indicates there is no parent; the upper bound is the value returned by the parent's IAccessible::get_accChildCount. |
S_OK | |
S_FALSE | if no parent, [out] value is -1 |
|
get |
|
get |
Returns the localized extended role.
[out] | localizedExtendedRole |
S_OK | |
S_FALSE | if there is nothing to return, [out] value is NULL |
|
get |
Returns the localized extended states (array of strings).
[in] | maxLocalizedExtendedStates | This parameter is ignored. Refer to Special Consideration when using Arrays for more details. |
[out] | localizedExtendedStates | This array is allocated by the server. The client must free it with CoTaskMemFree. |
[out] | nLocalizedExtendedStates | The number of localized extended states returned; the size of the returned array. |
S_OK | |
S_FALSE | if there are no states, [out] values are NULL and 0 respectively |
|
get |
Returns the number of extended states.
[out] | nExtendedStates |
S_OK |
|
get |
Returns the number of accessible relations for this object.
[out] | nRelations |
S_OK |
|
get |
Returns one accessible relation for this object.
[in] | relationIndex | 0 based |
[out] | relation |
S_OK | |
E_INVALIDARG | if bad [in] passed |
|
get |
Returns multiple accessible relations for this object.
[in] | maxRelations | maximum size of the array allocated by the client |
[out] | relations | The array of accessible relation objects. Note that this array is to be allocated by the client and freed when no longer needed. Refer to Special Consideration when using Arrays for more details. |
[out] | nRelations | actual number of relations in the returned array (not more than maxRelations) |
S_OK | |
S_FALSE | if there are no relations, nRelations is set to 0 |
|
get |
Returns the bit strip containing any IAccessible2 states.
The IAccessible2 states are in addition to the MSAA states and are defined in the IA2States enum.
[out] | states |
S_OK |
|
get |
Returns the unique ID.
The uniqueID is an identifier for this object, is unique within the current window, and remains the same for the lifetime of the accessible object.
The uniqueID is not related to:
This value is provided so the AT can have access to a unique runtime persistent identifier even when not handling an event for the object.
An example of when this value is useful is if the AT wants to build a cache. The AT could cache the uniqueIDs in addition to other data being cached. When an event is fired the AT could map the uniqueID to its internal model. Thus, if there's a REORDER/SHOW/HIDE event the AT knows which part of the internal structure has been invalidated and can refetch just that part.
This value can also be used by an AT to determine when the current control has changed. If the role is the same for two controls that are adjacent in the tab order, this can be used to detect the new control.
Another use of this value by an AT is to identify when a grouping object has changed, e.g. when moving from a radio button in one group to a radio button in a different group.
One means of implementing this would be to create a factory with a 32 bit number generator and a reuse pool. The number generator would emit numbers starting at 1. Each time an object's life cycle ended, its number would be saved into a reuse pool. The number generator would be used whenever the reuse pool was empty.
Another way to create a unique ID is to generate it from a pointer value, e.g. an object's address. That would be unique because no two active objects can use the same allocated memory space.
[out] | uniqueID |
S_OK |
|
get |
Returns the window handle for the parent window which contains this object.
This is the same window handle which will be passed for any events that occur on the object, but is cached in the accessible object for use when it would be helpful to access the window handle in cases where an event isn't fired on this object.
A use case is when a screen reader is grabbing an entire web page on a page load. Without the availability of windowHandle, the AT would have to get the window handle by using WindowFromAccessibleObject on each IAccessible, which is slow because it's implemented by oleacc.dll as a loop which crawls up the ancestor chain and looks for a ROLE_WINDOW object, mapping that back to a window handle.
[out] | windowHandle |
S_OK |