Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Minor adjustments |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | tka11y |
Files: | files | file ages | folders |
SHA3-256: |
b7bf72206ef4f944644e12842ae48d7c |
User & Date: | kevin_walzer 2025-07-27 01:43:11.829 |
Context
2025-07-27
| ||
01:45 | Remove unneeded calls check-in: fac81696 user: kevin_walzer tags: tka11y | |
01:43 | Minor adjustments check-in: b7bf7220 user: kevin_walzer tags: tka11y | |
01:32 | Remove compiler warnings check-in: cb8f83f4 user: kevin_walzer tags: tka11y | |
Changes
Changes to library/accessibility.tcl.
︙ | ︙ | |||
682 683 684 685 686 687 688 | bind Scrollbar <Map> {+::tk::accessible::acc_help %W "Use the touchpad or mouse wheel to move the scrollbar."} bind TScrollbar <Map> {+::tk::accessible::acc_help %W "Use the touchpad or mouse wheel to move the scrollbar."} bind Menubutton <Map> {+::tk::accessible::acc_help %W "Use the touchpad or mouse wheel to pop up the menu."} bind TMenubutton <Map> {+::tk::accessible::acc_help %W "Use the touchpad or mouse wheel to pop up the menu."} bind TNotebook <Map> {+::tk::accessible::acc_help %W "Use the Tab and Right/Left arrow keys to navigate between notebook tabs."} bind Text <Map> {+::tk::accessible::acc_help %W "Use normal keyboard shortcuts to navigate the text widget."} | > > | > | 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 | bind Scrollbar <Map> {+::tk::accessible::acc_help %W "Use the touchpad or mouse wheel to move the scrollbar."} bind TScrollbar <Map> {+::tk::accessible::acc_help %W "Use the touchpad or mouse wheel to move the scrollbar."} bind Menubutton <Map> {+::tk::accessible::acc_help %W "Use the touchpad or mouse wheel to pop up the menu."} bind TMenubutton <Map> {+::tk::accessible::acc_help %W "Use the touchpad or mouse wheel to pop up the menu."} bind TNotebook <Map> {+::tk::accessible::acc_help %W "Use the Tab and Right/Left arrow keys to navigate between notebook tabs."} bind Text <Map> {+::tk::accessible::acc_help %W "Use normal keyboard shortcuts to navigate the text widget."} if {[tk windowingsystem] eq "x11" && [::tk::accessible::check_screenreader] eq "1"} { wm title . "Tk Application" ::tk::accessible::add_acc_object . } # Finally, export the main commands. namespace export acc_role acc_name acc_description acc_value acc_state acc_action acc_help get_acc_role get_acc_name get_acc_description get_acc_value get_acc_state get_acc_action get_acc_help add_acc_object emit_selection_change check_screenreader emit_focus_change namespace ensemble create } } |
︙ | ︙ |