Difference between revisions of "Documentation/DevGuide/Accessibility/XAccessibleExtendedComponent"
From Apache OpenOffice Wiki
< Documentation | DevGuide
OOoWikiBot (talk | contribs) m (Robot: Changing Category:Documentation/Developers Guide/Accessibility) |
m |
||
(One intermediate revision by one other user not shown) | |||
Line 7: | Line 7: | ||
|NextPage=Documentation/DevGuide/Accessibility/XAccessibleText | |NextPage=Documentation/DevGuide/Accessibility/XAccessibleText | ||
}} | }} | ||
− | {{DISPLAYTITLE:XAccessibleExtendedComponent}} | + | {{Documentation/DevGuideLanguages|Documentation/DevGuide/Accessibility/{{SUBPAGENAME}}}} |
+ | {{DISPLAYTITLE:XAccessibleExtendedComponent}} | ||
<!--<idltopic>com.sun.star.accessibility.XAccessibleExtendedComponent</idltopic>--> | <!--<idltopic>com.sun.star.accessibility.XAccessibleExtendedComponent</idltopic>--> | ||
While the <idl>com.sun.star.accessibility.XAccessibleComponent</idl> interface should be implemented by almost every accessible object, the support of the <idls>com.sun.star.accessibility.XAccessibleExtendedComponent</idls> interface is optional. Its most important function, <idlm>com.sun.star.accessibility.XAccessibleExtendedComponent:getFont</idlm>() returns the font used to display text. | While the <idl>com.sun.star.accessibility.XAccessibleComponent</idl> interface should be implemented by almost every accessible object, the support of the <idls>com.sun.star.accessibility.XAccessibleExtendedComponent</idls> interface is optional. Its most important function, <idlm>com.sun.star.accessibility.XAccessibleExtendedComponent:getFont</idlm>() returns the font used to display text. | ||
− | The <idlm>com.sun.star.accessibility.XAccessibleExtendedComponent:getTitledBorderText</idlm>() function returns the text that is displayed on an object's window borders, which in the case of {{ | + | The <idlm>com.sun.star.accessibility.XAccessibleExtendedComponent:getTitledBorderText</idlm>() function returns the text that is displayed on an object's window borders, which in the case of {{AOo}} is only relevant for top-level windows. |
The <idlm>com.sun.star.accessibility.XAccessibleExtendedComponent:getToolTipText</idlm>() function returns the tool tip text that is displayed when the mouse pointer rests long enough over one point of the object. | The <idlm>com.sun.star.accessibility.XAccessibleExtendedComponent:getToolTipText</idlm>() function returns the tool tip text that is displayed when the mouse pointer rests long enough over one point of the object. |
Latest revision as of 17:55, 21 December 2020
- Overview
- Bridges
- Accessibility Tree
- Content Information
- Listeners and Broadcasters
- Implementing Accessible Objects
- Using the Accessibility API
- XAccessibleContext
- XAccessibleComponent
- XAccessibleExtendedComponent
- XAccessibleText
- XAccessibleEditableText
- XAccessibleTable
- XAccessibleEventBroadcaster
- XAccessibleEventListener
- XAccessibleSelection
- XAccessibleRelationSet
- XAccessibleStateSet
- XAccessibleValue
- XAccessibleImage
- XAccessibleAction
- XAccessibleKeyBinding
- XAccessibleHypertext
- XAccessibleHyperlink
While the com.sun.star.accessibility.XAccessibleComponent interface should be implemented by almost every accessible object, the support of the XAccessibleExtendedComponent interface is optional. Its most important function, getFont() returns the font used to display text.
The getTitledBorderText() function returns the text that is displayed on an object's window borders, which in the case of Apache OpenOffice is only relevant for top-level windows.
The getToolTipText() function returns the tool tip text that is displayed when the mouse pointer rests long enough over one point of the object.
Content on this page is licensed under the Public Documentation License (PDL). |