1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Docs: Updated Accessibility.md

This commit is contained in:
ed 2021-05-21 08:37:22 +01:00
parent b34e798f39
commit dd4475a8fd

View file

@ -20,7 +20,7 @@ text and its position in the hierarchy of UI elements.
The `setTitle()`, `setDescription()` and `setHelpText()` methods can be used The `setTitle()`, `setDescription()` and `setHelpText()` methods can be used
to customise the text that will be read out by accessibility clients when to customise the text that will be read out by accessibility clients when
interacting with UI elements and the `setExplicitFocusOrder()`, interacting with UI elements and the `setExplicitFocusOrder()`,
`setFocusContainer()` and `createFocusTraverser()` methods can be used to `setFocusContainerType()` and `createFocusTraverser()` methods can be used to
control the parent/child relationships and the order of navigation between UI control the parent/child relationships and the order of navigation between UI
elements. elements.
@ -39,9 +39,6 @@ To implement the desired behaviours for a custom component, subclass
`AccessibilityHandler` and return an instance of this from the `AccessibilityHandler` and return an instance of this from the
`Component::createAccessibilityHandler()` method. `Component::createAccessibilityHandler()` method.
Examples of some common UI element handlers for existing JUCE widgets can be
found in the [`widget_handlers`](/modules/juce_gui_basics/accessibility/widget_handlers) directory.
## Further Reading ## Further Reading
- [NSAccessibility protocol](https://developer.apple.com/documentation/appkit/nsaccessibility?language=objc) - [NSAccessibility protocol](https://developer.apple.com/documentation/appkit/nsaccessibility?language=objc)