You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""In addition to L{EditableText}, handles reporting of selection changes for objects which notify of them.
241
290
To have selection changes reported, the object must notify of selection changes via the caret event.
@@ -873,30 +922,6 @@ def event_alert(self):
873
922
874
923
event_show=event_alert
875
924
876
-
classEditableTextWithSuggestions(NVDAObject):
877
-
"""Allows NvDA to announce appearance/disappearance of suggestions as text is entered.
878
-
This is used in various places, including Windows 10 search edit fields and others.
879
-
Subclasses should provide L{event_suggestionsOpened} and can optionally override L{event_suggestionsClosed}.
880
-
These events are fired when suggestions appear and disappear, respectively.
881
-
"""
882
-
883
-
defevent_suggestionsOpened(self):
884
-
"""Called when suggestions appear when text is entered e.g. search suggestions.
885
-
Subclasses should provide custom implementations if possible.
886
-
By default NVDA will announce appearance of suggestions using speech, braille or a sound will be played.
887
-
"""
888
-
# Translators: Announced in braille when suggestions appear when search term is entered in various search fields such as Start search box in Windows 10.
Copy file name to clipboardExpand all lines: user_docs/en/changes.t2t
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,8 @@ What's New in NVDA
19
19
20
20
== Bug Fixes ==
21
21
- In Windows 11, NVDA will announce search highlights when opening Start menu. (#13841)
22
+
- Suggestions are reported when typing an @mention in in Microsoft Excel comments. (#13764)
23
+
- In the Google Chrome location bar, suggestion controls (switch to tab, remove suggestion etc) are now reported when selected. (#13522)
22
24
- When requesting formatting information, colors are now explicitly reported in Wordpad or log viewer, rather than only "Default color". (#13959)
23
25
-
24
26
@@ -29,6 +31,8 @@ Add-ons will need to be re-tested and have their manifest updated.
29
31
Please refer to [the developer guide https://www.nvaccess.org/files/nvda/documentation/developerGuide.html#API] for information on NVDA's API deprecation and removal process.
30
32
31
33
- System test should now pass when run locally on non-English systems. (#13362)
34
+
- It is no longer necessary to use ``SearchField`` and ``SuggestionListItem`` ``UIA`` ``NVDAObjects`` in new UI Automation scenarios, where automatic reporting of search suggestions, and where typing has been exposed via UI Automation with the ``controllerFor`` pattern.
35
+
This functionality is now available generically via ``behaviours.EditableText`` and the base ``NVDAObject`` respectively.
0 commit comments