diff options
Diffstat (limited to 'Master/tlpkg/tlperl.straw/lib/auto/Tk/Widget/AltKeyInDialog.al')
-rwxr-xr-x | Master/tlpkg/tlperl.straw/lib/auto/Tk/Widget/AltKeyInDialog.al | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl.straw/lib/auto/Tk/Widget/AltKeyInDialog.al b/Master/tlpkg/tlperl.straw/lib/auto/Tk/Widget/AltKeyInDialog.al new file mode 100755 index 00000000000..463a8da2c6b --- /dev/null +++ b/Master/tlpkg/tlperl.straw/lib/auto/Tk/Widget/AltKeyInDialog.al @@ -0,0 +1,20 @@ +# NOTE: Derived from blib\lib\Tk\Widget.pm. +# Changes made here will be lost when autosplit is run again. +# See AutoSplit.pm. +package Tk::Widget; + +#line 1672 "blib\lib\Tk\Widget.pm (autosplit into blib\lib\auto\Tk\Widget\AltKeyInDialog.al)" +# ::tk::AltKeyInDialog -- +# <Alt-Key> event handler for standard dialogs. Sends <<AltUnderlined>> +# to button or label which has appropriate underlined character +# +sub AltKeyInDialog +{ + my ($w, $key) = @_; + my $target = $w->FindAltKeyTarget($key); + return if !$target; + $target->eventGenerate('<<AltUnderlined>>'); +} + +# end of Tk::Widget::AltKeyInDialog +1; |