Gtk widget and orca

hi
i have a label and some widget next to it. can someone give me example how to set widget so orca would read text in label?
also any good links for understanding programing for users with visual disability

In GTK4 you can use “described-by” to make the selectable element to read the value of the label when the user selects that selectable element.

Another possibility is to create a group widget (like a container) that includes the selectable element, and set “described-by” in the group pointing to the label. That way, when the user selects the selectable element, Orca will read first the container description (which will point to the label), and after that, the label of the selectable element.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.