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

Accessibility: Added AccessibilityEvent::titleChanged

This commit is contained in:
ed 2021-06-03 18:12:52 +01:00
parent 271e66fbed
commit 9ed55a7639
3 changed files with 17 additions and 1 deletions

View file

@ -43,10 +43,16 @@ enum class AccessibilityEvent
*/
valueChanged,
/** Indicates that the title of the UI element has changed.
This should be called on the handler whose title has changed.
*/
titleChanged,
/** Indicates that the structure of the UI elements has changed in a
significant way.
This should be posted on the top-level handler whose structure has changed.
This should be called on the top-level handler whose structure has changed.
*/
structureChanged,