Conversation
UIA element-level Transform/Window patterns, distinct from the HWND/ title-level window_layout. TransformPattern moves/resizes a control or floating panel with no top-level window of its own; WindowPattern minimizes/maximizes and reports interaction state (ready/blocked_by_modal/ not_responding) - a reliable 'is this window ready or modal-blocked?' signal pixel/title polling can't give. Extends the backend ABC + Windows UIA backend, reusing _invoke_pattern_method.
…ndow-batch Add transform_window: move/resize UIA elements + window state
Many legacy Win32/MFC/Delphi controls expose nothing useful via modern
UIA (Value/Invoke/Toggle all return None) but are fully described via
the MSAA IAccessible bridge. legacy_info reads {name,value,description,
default_action,role,state} and legacy_default_action fires the MSAA
default action - the last-resort fallback that makes old apps
automatable. Extends the backend ABC + Windows UIA backend.
…sible-batch Add legacy_accessible: MSAA bridge for old controls UIA can't model
ax_text shipped whole-range reads but couldn't search a control's text, select a found range, or read formatting. Round out TextPattern: find_control_text searches real content (not OCR) via FindText, select_control_text finds + selects a range so the next keystrokes replace it, and control_text_attributes reads font/size/bold/italic/ colour. Extends the backend ABC + Windows UIA backend and the ax_text facade.
…nced-batch Add advanced TextPattern: find / select / read text attributes
select_control_item selects one item, but the container-level SelectionPattern answers what is currently selected and whether multiple selection is allowed - the assertion target after selecting. MultipleViewPattern switches a control between its views (Explorer list/details/tile). get_selection / list_views / set_view extend the backend ABC + Windows UIA backend via the same fake-backend seam.
…ew-batch Add selection_view: container selection + view switching
Up to standards ✅🟢 Issues
|
| Metric | Results |
|---|---|
| Complexity | 130 |
| Duplication | 0 |
NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Release: native-UIA depth, part 2 (v198–v201)
Second batch of the ROUND-15 native Windows UI (UIA) depth lane — four more features on the accessibility backend, each merged to
devCI-green (Codacy 0 / SonarCloud OK / all matrices + Docker).transform_window(v198, Add transform_window: move/resize UIA elements + window state #419) —move_element/resize_element(TransformPattern) +set_window_state/window_interaction_state(WindowPattern) — UIA-element-level move/resize and a reliable "is this window ready / modal-blocked?" signal.legacy_accessible(v199, Add legacy_accessible: MSAA bridge for old controls UIA can't model #420) —legacy_info/legacy_default_action: the MSAAIAccessiblebridge that makes the long tail of old Win32 controls (which expose nothing via modern UIA) automatable.find_control_text/select_control_text/control_text_attributes: search a control's text, select a match to replace it, and read font/colour formatting.selection_view(v201, Add selection_view: container selection + view switching #422) —get_selection/list_views/set_view: container-level selection state (SelectionPattern) and view switching (MultipleViewPattern).All extend the accessibility backend ABC + Windows UIA backend through the same injectable fake-backend seam (headless-testable; real UIA gated to Windows). EN/Zh docs (v198–v201) + WHATS_NEW entries included.