summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/windows/uiautomation
diff options
context:
space:
mode:
authorMichael Weghorn <m.weghorn@posteo.de>2023-11-11 00:04:48 +0100
committerMichael Weghorn <m.weghorn@posteo.de>2023-11-15 03:28:36 +0100
commitbb6ed27b50d8832bfd105d3e8cff9abfad5c617a (patch)
tree7c415fb33043dfc47dc1f3a38de00a3048ef34fc /src/plugins/platforms/windows/uiautomation
parent56476947cfdc1b869b3a9bf1095c8665c35f7d4b (diff)
a11y uia: Map 3 more roles to UIA control type IDs
For QAccessible::Paragraph and QAccessible::Heading, use UIA_TextControlTypeId as specified in the Core Accessibility API Mappings specification [1] [2]. For QAccessible::WebDocument use UIA_DocumentControlTypeId. [1] https://w3c.github.io/core-aam/#role-map-paragraph [2] https://w3c.github.io/core-aam/#role-map-heading Change-Id: Idae1e2da28b495d5d639df63c3de1260f2177142 Reviewed-by: Jan Arve Sæther <jan-arve.saether@qt.io>
Diffstat (limited to 'src/plugins/platforms/windows/uiautomation')
-rw-r--r--src/plugins/platforms/windows/uiautomation/qwindowsuiautils.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/platforms/windows/uiautomation/qwindowsuiautils.cpp b/src/plugins/platforms/windows/uiautomation/qwindowsuiautils.cpp
index 9287e89084..78ab3e890e 100644
--- a/src/plugins/platforms/windows/uiautomation/qwindowsuiautils.cpp
+++ b/src/plugins/platforms/windows/uiautomation/qwindowsuiautils.cpp
@@ -176,6 +176,9 @@ long roleToControlTypeId(QAccessible::Role role)
{QAccessible::PageTabList, UIA_TabControlTypeId},
{QAccessible::Clock, UIA_CustomControlTypeId},
{QAccessible::Splitter, UIA_CustomControlTypeId},
+ {QAccessible::Paragraph, UIA_TextControlTypeId},
+ {QAccessible::WebDocument, UIA_DocumentControlTypeId},
+ {QAccessible::Heading, UIA_TextControlTypeId},
};
return mapping.value(role, UIA_CustomControlTypeId);