| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851 |
- # tk.tcl --
- #
- # Initialization script normally executed in the interpreter for each Tk-based
- # application. Arranges class bindings for widgets.
- #
- # Copyright © 1992-1994 The Regents of the University of California.
- # Copyright © 1994-1996 Sun Microsystems, Inc.
- # Copyright © 1998-2000 Ajuba Solutions.
- #
- # See the file "license.terms" for information on usage and redistribution of
- # this file, and for a DISCLAIMER OF ALL WARRANTIES.
- # Verify that we have Tk binary and script components from the same release
- package require -exact tk 9.0.1
- # Create a ::tk namespace
- namespace eval ::tk {
- # Set up the msgcat commands
- namespace eval msgcat {
- namespace export mc mcmax
- if {[interp issafe] || [catch {package require msgcat}]} {
- # The msgcat package is not available. Supply our own
- # minimal replacement.
- proc mc {src args} {
- return [format $src {*}$args]
- }
- proc mcmax {args} {
- set max 0
- foreach string $args {
- set len [string length $string]
- if {$len>$max} {
- set max $len
- }
- }
- return $max
- }
- } else {
- # Get the commands from the msgcat package that Tk uses.
- namespace import ::msgcat::mc
- namespace import ::msgcat::mcmax
- ::msgcat::mcload [file join $::tk_library msgs]
- }
- }
- namespace import ::tk::msgcat::*
- }
- # and a ::ttk namespace
- namespace eval ::ttk {
- if {$::tk_library ne ""} {
- # avoid file join to work in safe interps, but this is also x-plat ok
- variable library $::tk_library/ttk
- }
- }
- # Add Ttk & Tk's directory to the end of the auto-load search path, if it
- # isn't already on the path:
- if {[info exists ::auto_path] && ($::tk_library ne "")
- && ($::tk_library ni $::auto_path)
- } then {
- lappend ::auto_path $::tk_library $::ttk::library
- }
- # Turn off strict Motif look and feel as a default.
- set ::tk_strictMotif 0
- # Turn on useinputmethods (X Input Methods) by default.
- # We catch this because safe interpreters may not allow the call.
- catch {tk useinputmethods 1}
- # ::tk::PlaceWindow --
- # place a toplevel at a particular position
- # Arguments:
- # toplevel name of toplevel window
- # ?placement? pointer ?center? ; places $w centered on the pointer
- # widget widgetPath ; centers $w over widget_name
- # defaults to placing toplevel in the middle of the screen
- # ?anchor? center or widgetPath
- # Results:
- # Returns nothing
- #
- proc ::tk::PlaceWindow {w {place ""} {anchor ""}} {
- wm withdraw $w
- update idletasks
- set checkBounds 1
- if {$place eq ""} {
- set x [expr {([winfo screenwidth $w]-[winfo reqwidth $w])/2}]
- set y [expr {([winfo screenheight $w]-[winfo reqheight $w])/2}]
- set checkBounds 0
- } elseif {[string equal -length [string length $place] $place "pointer"]} {
- ## place at POINTER (centered if $anchor == center)
- if {[string equal -length [string length $anchor] $anchor "center"]} {
- set x [expr {[winfo pointerx $w]-[winfo reqwidth $w]/2}]
- set y [expr {[winfo pointery $w]-[winfo reqheight $w]/2}]
- } else {
- set x [winfo pointerx $w]
- set y [winfo pointery $w]
- }
- } elseif {[string equal -length [string length $place] $place "widget"] && \
- [winfo exists $anchor] && [winfo ismapped $anchor]} {
- ## center about WIDGET $anchor, widget must be mapped
- set x [expr {[winfo rootx $anchor] + \
- ([winfo width $anchor]-[winfo reqwidth $w])/2}]
- set y [expr {[winfo rooty $anchor] + \
- ([winfo height $anchor]-[winfo reqheight $w])/2}]
- } else {
- set x [expr {([winfo screenwidth $w]-[winfo reqwidth $w])/2}]
- set y [expr {([winfo screenheight $w]-[winfo reqheight $w])/2}]
- set checkBounds 0
- }
- if {$checkBounds} {
- if {$x < [winfo vrootx $w]} {
- set x [winfo vrootx $w]
- } elseif {$x > ([winfo vrootx $w]+[winfo vrootwidth $w]-[winfo reqwidth $w])} {
- set x [expr {[winfo vrootx $w]+[winfo vrootwidth $w]-[winfo reqwidth $w]}]
- }
- if {$y < [winfo vrooty $w]} {
- set y [winfo vrooty $w]
- } elseif {$y > ([winfo vrooty $w]+[winfo vrootheight $w]-[winfo reqheight $w])} {
- set y [expr {[winfo vrooty $w]+[winfo vrootheight $w]-[winfo reqheight $w]}]
- }
- if {[tk windowingsystem] eq "aqua"} {
- # Avoid the native menu bar which sits on top of everything.
- if {$y < 22} {
- set y 22
- }
- }
- }
- wm maxsize $w [winfo vrootwidth $w] [winfo vrootheight $w]
- wm geometry $w +$x+$y
- wm deiconify $w
- }
- # ::tk::SetFocusGrab --
- # swap out current focus and grab temporarily (for dialogs)
- # Arguments:
- # grab new window to grab
- # focus window to give focus to
- # Results:
- # Returns nothing
- #
- proc ::tk::SetFocusGrab {grab {focus {}}} {
- set index "$grab,$focus"
- upvar ::tk::FocusGrab($index) data
- lappend data [focus]
- set oldGrab [grab current $grab]
- lappend data $oldGrab
- if {[winfo exists $oldGrab]} {
- lappend data [grab status $oldGrab]
- }
- # The "grab" command will fail if another application
- # already holds the grab. So catch it.
- catch {grab $grab}
- if {[winfo exists $focus]} {
- focus $focus
- }
- }
- # ::tk::RestoreFocusGrab --
- # restore old focus and grab (for dialogs)
- # Arguments:
- # grab window that had taken grab
- # focus window that had taken focus
- # destroy destroy|withdraw - how to handle the old grabbed window
- # Results:
- # Returns nothing
- #
- proc ::tk::RestoreFocusGrab {grab focus {destroy destroy}} {
- set index "$grab,$focus"
- if {[info exists ::tk::FocusGrab($index)]} {
- foreach {oldFocus oldGrab oldStatus} $::tk::FocusGrab($index) { break }
- unset ::tk::FocusGrab($index)
- } else {
- set oldGrab ""
- }
- catch {focus $oldFocus}
- grab release $grab
- if {[winfo exists $grab]} {
- if {$destroy eq "withdraw"} {
- wm withdraw $grab
- } else {
- destroy $grab
- }
- }
- if {[winfo exists $oldGrab] && [winfo ismapped $oldGrab]} {
- # The "grab" command will fail if another application
- # already holds the grab on a window with the same name.
- # So catch it. See [7447ed20ec] for an example.
- if {$oldStatus eq "global"} {
- catch {grab -global $oldGrab}
- } else {
- catch {grab $oldGrab}
- }
- }
- }
- # ::tk::GetSelection --
- # This tries to obtain the default selection. On Unix, we first try
- # and get a UTF8_STRING, a type supported by modern Unix apps for
- # passing Unicode data safely. We fall back on the default STRING
- # type otherwise. On Windows, only the STRING type is necessary.
- # Arguments:
- # w The widget for which the selection will be retrieved.
- # Important for the -displayof property.
- # sel The source of the selection (PRIMARY or CLIPBOARD)
- # Results:
- # Returns the selection, or an error if none could be found
- #
- if {[tk windowingsystem] ne "win32"} {
- proc ::tk::GetSelection {w {sel PRIMARY}} {
- if {[catch {
- selection get -displayof $w -selection $sel -type UTF8_STRING
- } txt] && [catch {
- selection get -displayof $w -selection $sel
- } txt]} then {
- return -code error -errorcode {TK SELECTION NONE} \
- "could not find default selection"
- } else {
- return $txt
- }
- }
- } else {
- proc ::tk::GetSelection {w {sel PRIMARY}} {
- if {[catch {
- selection get -displayof $w -selection $sel
- } txt]} then {
- return -code error -errorcode {TK SELECTION NONE} \
- "could not find default selection"
- } else {
- return $txt
- }
- }
- }
- # ::tk::ScreenChanged --
- # This procedure is invoked by the binding mechanism whenever the
- # "current" screen is changing. The procedure does two things.
- # First, it uses "upvar" to make variable "::tk::Priv" point at an
- # array variable that holds state for the current display. Second,
- # it initializes the array if it didn't already exist.
- #
- # Arguments:
- # screen - The name of the new screen.
- proc ::tk::ScreenChanged screen {
- # Extract the display name.
- set disp [string range $screen 0 [string last . $screen]-1]
- # Ensure that namespace separators never occur in the display name (as
- # they cause problems in variable names). Double-colons exist in some VNC
- # display names. [Bug 2912473]
- set disp [string map {:: _doublecolon_} $disp]
- uplevel #0 [list upvar #0 ::tk::Priv.$disp ::tk::Priv]
- variable ::tk::Priv
- if {[info exists Priv]} {
- set Priv(screen) $screen
- return
- }
- array set Priv {
- activeMenu {}
- activeItem {}
- afterId {}
- buttons 0
- buttonWindow {}
- dragging 0
- focus {}
- grab {}
- initPos {}
- inMenubutton {}
- listboxPrev {}
- menuBar {}
- mouseMoved 0
- oldGrab {}
- popup {}
- postedMb {}
- pressX 0
- pressY 0
- prevPos 0
- selectMode char
- }
- set Priv(screen) $screen
- set Priv(tearoff) [string equal [tk windowingsystem] "x11"]
- set Priv(window) {}
- }
- # Do initial setup for Priv, so that it is always bound to something
- # (otherwise, if someone references it, it may get set to a non-upvar-ed
- # value, which will cause trouble later).
- tk::ScreenChanged [winfo screen .]
- # ::tk::EventMotifBindings --
- # This procedure is invoked as a trace whenever ::tk_strictMotif is
- # changed. It is used to turn on or turn off the motif virtual
- # bindings.
- #
- # Arguments:
- # n1 - the name of the variable being changed ("::tk_strictMotif").
- proc ::tk::EventMotifBindings {n1 dummy dummy} {
- upvar $n1 name
- if {$name} {
- set op delete
- } else {
- set op add
- }
- event $op <<Cut>> <Control-w> <Control-Lock-W> <Shift-Delete>
- event $op <<Copy>> <Meta-w> <Meta-Lock-W> <Control-Insert>
- event $op <<Paste>> <Control-y> <Control-Lock-Y> <Shift-Insert>
- event $op <<PrevChar>> <Control-b> <Control-Lock-B>
- event $op <<NextChar>> <Control-f> <Control-Lock-F>
- event $op <<PrevLine>> <Control-p> <Control-Lock-P>
- event $op <<NextLine>> <Control-n> <Control-Lock-N>
- event $op <<LineStart>> <Control-a> <Control-Lock-A>
- event $op <<LineEnd>> <Control-e> <Control-Lock-E>
- event $op <<SelectPrevChar>> <Control-B> <Control-Lock-b>
- event $op <<SelectNextChar>> <Control-F> <Control-Lock-f>
- event $op <<SelectPrevLine>> <Control-P> <Control-Lock-p>
- event $op <<SelectNextLine>> <Control-N> <Control-Lock-n>
- event $op <<SelectLineStart>> <Control-A> <Control-Lock-a>
- event $op <<SelectLineEnd>> <Control-E> <Control-Lock-e>
- }
- #----------------------------------------------------------------------
- # Define common dialogs on platforms where they are not implemented
- # using compiled code.
- #----------------------------------------------------------------------
- if {![llength [info commands tk_chooseColor]]} {
- proc ::tk_chooseColor {args} {
- return [::tk::dialog::color:: {*}$args]
- }
- }
- if {![llength [info commands tk_getOpenFile]]} {
- proc ::tk_getOpenFile {args} {
- if {$::tk_strictMotif} {
- return [::tk::MotifFDialog open {*}$args]
- } else {
- return [::tk::dialog::file:: open {*}$args]
- }
- }
- }
- if {![llength [info commands tk_getSaveFile]]} {
- proc ::tk_getSaveFile {args} {
- if {$::tk_strictMotif} {
- return [::tk::MotifFDialog save {*}$args]
- } else {
- return [::tk::dialog::file:: save {*}$args]
- }
- }
- }
- if {![llength [info commands tk_messageBox]]} {
- proc ::tk_messageBox {args} {
- return [::tk::MessageBox {*}$args]
- }
- }
- if {![llength [info command tk_chooseDirectory]]} {
- proc ::tk_chooseDirectory {args} {
- return [::tk::dialog::file::chooseDir:: {*}$args]
- }
- }
- #----------------------------------------------------------------------
- # Define the set of common virtual events.
- #----------------------------------------------------------------------
- event add <<ContextMenu>> <Button-3>
- event add <<PasteSelection>> <ButtonRelease-2>
- switch -exact -- [tk windowingsystem] {
- "x11" {
- event add <<Cut>> <Control-x> <F20> <Control-Lock-X>
- event add <<Copy>> <Control-c> <F16> <Control-Lock-C>
- event add <<Paste>> <Control-v> <F18> <Control-Lock-V>
- event add <<Undo>> <Control-z> <Control-Lock-Z>
- event add <<Redo>> <Control-Z> <Control-Lock-z>
- # On Darwin/Aqua, buttons from left to right are 1,3,2. On Darwin/X11 with recent
- # XQuartz as the X server, they are 1,2,3; other X servers may differ.
- event add <<SelectAll>> <Control-/>
- event add <<SelectNone>> <Control-backslash>
- event add <<NextChar>> <Right>
- event add <<SelectNextChar>> <Shift-Right>
- event add <<PrevChar>> <Left>
- event add <<SelectPrevChar>> <Shift-Left>
- event add <<NextWord>> <Control-Right>
- event add <<SelectNextWord>> <Control-Shift-Right>
- event add <<PrevWord>> <Control-Left>
- event add <<SelectPrevWord>> <Control-Shift-Left>
- event add <<LineStart>> <Home>
- event add <<SelectLineStart>> <Shift-Home>
- event add <<LineEnd>> <End>
- event add <<SelectLineEnd>> <Shift-End>
- event add <<PrevLine>> <Up>
- event add <<NextLine>> <Down>
- event add <<SelectPrevLine>> <Shift-Up>
- event add <<SelectNextLine>> <Shift-Down>
- event add <<PrevPara>> <Control-Up>
- event add <<NextPara>> <Control-Down>
- event add <<SelectPrevPara>> <Control-Shift-Up>
- event add <<SelectNextPara>> <Control-Shift-Down>
- event add <<ToggleSelection>> <Control-Button-1>
- # Some OS's define a goofy (as in, not <Shift-Tab>) keysym that is
- # returned when the user presses <Shift-Tab>. In order for tab
- # traversal to work, we have to add these keysyms to the PrevWindow
- # event. We use catch just in case the keysym isn't recognized.
- # This is needed for XFree86 systems
- catch { event add <<PrevWindow>> <ISO_Left_Tab> }
- # This seems to be correct on *some* HP systems.
- catch { event add <<PrevWindow>> <hpBackTab> }
- trace add variable ::tk_strictMotif write ::tk::EventMotifBindings
- set ::tk_strictMotif $::tk_strictMotif
- # On unix, we want to always display entry/text selection,
- # regardless of which window has focus
- set ::tk::AlwaysShowSelection 1
- }
- "win32" {
- event add <<Cut>> <Control-x> <Shift-Delete> <Control-Lock-X>
- event add <<Copy>> <Control-c> <Control-Insert> <Control-Lock-C>
- event add <<Paste>> <Control-v> <Shift-Insert> <Control-Lock-V>
- event add <<Undo>> <Control-z> <Control-Lock-Z>
- event add <<Redo>> <Control-y> <Control-Lock-Y>
- event add <<SelectAll>> <Control-/> <Control-a> <Control-Lock-A>
- event add <<SelectNone>> <Control-backslash>
- event add <<NextChar>> <Right>
- event add <<SelectNextChar>> <Shift-Right>
- event add <<PrevChar>> <Left>
- event add <<SelectPrevChar>> <Shift-Left>
- event add <<NextWord>> <Control-Right>
- event add <<SelectNextWord>> <Control-Shift-Right>
- event add <<PrevWord>> <Control-Left>
- event add <<SelectPrevWord>> <Control-Shift-Left>
- event add <<LineStart>> <Home>
- event add <<SelectLineStart>> <Shift-Home>
- event add <<LineEnd>> <End>
- event add <<SelectLineEnd>> <Shift-End>
- event add <<PrevLine>> <Up>
- event add <<NextLine>> <Down>
- event add <<SelectPrevLine>> <Shift-Up>
- event add <<SelectNextLine>> <Shift-Down>
- event add <<PrevPara>> <Control-Up>
- event add <<NextPara>> <Control-Down>
- event add <<SelectPrevPara>> <Control-Shift-Up>
- event add <<SelectNextPara>> <Control-Shift-Down>
- event add <<ToggleSelection>> <Control-Button-1>
- }
- "aqua" {
- event add <<Cut>> <Command-x> <F2> <Command-Lock-X>
- event add <<Copy>> <Command-c> <F3> <Command-Lock-C>
- event add <<Paste>> <Command-v> <F4> <Command-Lock-V>
- event add <<Clear>> <Clear>
- # Official bindings
- # See https://support.apple.com/en-us/HT201236
- event add <<SelectAll>> <Command-a>
- event add <<Undo>> <Command-Key-z> <Command-Lock-Key-Z>
- event add <<Redo>> <Shift-Command-Key-z> <Shift-Command-Lock-Key-z>
- event add <<NextChar>> <Right> <Control-Key-f> <Control-Lock-Key-F>
- event add <<SelectNextChar>> <Shift-Right> <Shift-Control-Key-F> <Shift-Control-Lock-Key-F>
- event add <<PrevChar>> <Left> <Control-Key-b> <Control-Lock-Key-B>
- event add <<SelectPrevChar>> <Shift-Left> <Shift-Control-Key-B> <Shift-Control-Lock-Key-B>
- event add <<NextWord>> <Option-Right>
- event add <<SelectNextWord>> <Shift-Option-Right>
- event add <<PrevWord>> <Option-Left>
- event add <<SelectPrevWord>> <Shift-Option-Left>
- event add <<LineStart>> <Home> <Command-Left> <Control-a> <Control-Lock-A>
- event add <<SelectLineStart>> <Shift-Home> <Shift-Command-Left> <Shift-Control-A> <Shift-Control-Lock-A>
- event add <<LineEnd>> <End> <Command-Right> <Control-e> <Control-Lock-E>
- event add <<SelectLineEnd>> <Shift-End> <Shift-Command-Right> <Shift-Control-E> <Shift-Control-Lock-E>
- event add <<PrevLine>> <Up> <Control-p> <Control-Lock-P>
- event add <<SelectPrevLine>> <Shift-Up> <Shift-Control-P> <Shift-Control-Lock-P>
- event add <<NextLine>> <Down> <Control-n> <Control-Lock-N>
- event add <<SelectNextLine>> <Shift-Down> <Shift-Control-N> <Shift-Control-Lock-N>
- # Not official, but logical extensions of above. Also derived from
- # bindings present in MS Word on OSX.
- event add <<PrevPara>> <Option-Up>
- event add <<NextPara>> <Option-Down>
- event add <<SelectPrevPara>> <Shift-Option-Up>
- event add <<SelectNextPara>> <Shift-Option-Down>
- event add <<ToggleSelection>> <Command-Button-1>
- }
- }
- # ----------------------------------------------------------------------
- # Read in files that define all of the class bindings.
- # ----------------------------------------------------------------------
- if {$::tk_library ne ""} {
- proc ::tk::SourceLibFile {file} {
- namespace eval :: [list source [file join $::tk_library $file.tcl]]
- }
- namespace eval ::tk {
- SourceLibFile icons
- SourceLibFile iconbadges
- SourceLibFile button
- SourceLibFile entry
- SourceLibFile listbox
- SourceLibFile menu
- SourceLibFile panedwindow
- SourceLibFile print
- SourceLibFile scale
- SourceLibFile scrlbar
- SourceLibFile spinbox
- if {![interp issafe]} {
- SourceLibFile systray
- }
- SourceLibFile text
- }
- }
- # ----------------------------------------------------------------------
- # Default bindings for keyboard traversal.
- # ----------------------------------------------------------------------
- event add <<PrevWindow>> <Shift-Tab>
- event add <<NextWindow>> <Tab>
- bind all <<NextWindow>> {tk::TabToWindow [tk_focusNext %W]}
- bind all <<PrevWindow>> {tk::TabToWindow [tk_focusPrev %W]}
- # ::tk::CancelRepeat --
- # This procedure is invoked to cancel an auto-repeat action described
- # by ::tk::Priv(afterId). It's used by several widgets to auto-scroll
- # the widget when the mouse is dragged out of the widget with a
- # button pressed.
- #
- # Arguments:
- # None.
- proc ::tk::CancelRepeat {} {
- variable ::tk::Priv
- after cancel $Priv(afterId)
- set Priv(afterId) {}
- }
- ## ::tk::MouseWheel $w $dir $amount $factor $units
- proc ::tk::MouseWheel {w dir amount {factor -120.0} {units units}} {
- $w ${dir}view scroll [expr {$amount/$factor}] $units
- }
- ## ::tk::PreciseScrollDeltas $dxdy
- proc ::tk::PreciseScrollDeltas {dxdy} {
- set deltaX [expr {$dxdy >> 16}]
- set low [expr {$dxdy & 0xffff}]
- set deltaY [expr {$low < 0x8000 ? $low : $low - 0x10000}]
- return [list $deltaX $deltaY]
- }
- ## Helper for smooth scrolling of widgets that support xview moveto and
- ## yview moveto.
- proc ::tk::ScrollByPixels {w deltaX deltaY} {
- set fracX [lindex [$w xview] 0]
- set fracY [lindex [$w yview] 0]
- set width [expr {1.0 * [winfo width $w]}]
- set height [expr {1.0 * [winfo height $w]}]
- $w xview moveto [expr {$fracX - $deltaX / $width}]
- $w yview moveto [expr {$fracY - $deltaY / $height}]
- }
- # ::tk::TabToWindow --
- # This procedure moves the focus to the given widget.
- # It sends a <<TraverseOut>> virtual event to the previous focus window,
- # if any, before changing the focus, and a <<TraverseIn>> event
- # to the new focus window afterwards.
- #
- # Arguments:
- # w - Window to which focus should be set.
- proc ::tk::TabToWindow {w} {
- set focus [focus]
- if {$focus ne ""} {
- event generate $focus <<TraverseOut>>
- }
- focus $w
- event generate $w <<TraverseIn>>
- }
- # ::tk::UnderlineAmpersand --
- # This procedure takes some text with ampersand and returns text w/o
- # ampersand and position of the ampersand. Double ampersands are
- # converted to single ones. Position returned is -1 when there is no
- # ampersand.
- #
- proc ::tk::UnderlineAmpersand {text} {
- set s [string map {&& & & \ufeff} $text]
- set idx [string first \ufeff $s]
- return [list [string map {\ufeff {}} $s] $idx]
- }
- # ::tk::SetAmpText --
- # Given widget path and text with "magic ampersands", sets -text and
- # -underline options for the widget
- #
- proc ::tk::SetAmpText {widget text} {
- lassign [UnderlineAmpersand $text] newtext under
- $widget configure -text $newtext -underline $under
- }
- # ::tk::AmpWidget --
- # Creates new widget, turning -text option into -text and -underline
- # options, returned by ::tk::UnderlineAmpersand.
- #
- proc ::tk::AmpWidget {class path args} {
- set options {}
- foreach {opt val} $args {
- if {$opt eq "-text"} {
- lassign [UnderlineAmpersand $val] newtext under
- lappend options -text $newtext -underline $under
- } else {
- lappend options $opt $val
- }
- }
- set result [$class $path {*}$options]
- if {[string match "*button" $class]} {
- bind $path <<AltUnderlined>> [list $path invoke]
- }
- return $result
- }
- # ::tk::AmpMenuArgs --
- # Processes arguments for a menu entry, turning -label option into
- # -label and -underline options, returned by ::tk::UnderlineAmpersand.
- # The cmd argument is supposed to be either "add" or "entryconfigure"
- #
- proc ::tk::AmpMenuArgs {widget cmd type args} {
- set options {}
- foreach {opt val} $args {
- if {$opt eq "-label"} {
- lassign [UnderlineAmpersand $val] newlabel under
- lappend options -label $newlabel -underline $under
- } else {
- lappend options $opt $val
- }
- }
- $widget $cmd $type {*}$options
- }
- # ::tk::FindAltKeyTarget --
- # Search recursively through the hierarchy of visible widgets to find
- # button or label which has $char as underlined character.
- #
- proc ::tk::FindAltKeyTarget {path char} {
- set class [winfo class $path]
- if {$class in {
- Button Checkbutton Label Radiobutton
- TButton TCheckbutton TLabel TRadiobutton
- } && ([$path cget -underline] >= 0) && [string equal -nocase $char \
- [string index [$path cget -text] [$path cget -underline]]]} {
- return $path
- }
- set subwins [concat [grid content $path] [pack content $path] \
- [place content $path]]
- if {$class eq "Canvas"} {
- foreach item [$path find all] {
- if {[$path type $item] eq "window"} {
- set w [$path itemcget $item -window]
- if {$w ne ""} {lappend subwins $w}
- }
- }
- } elseif {$class eq "Text"} {
- lappend subwins {*}[$path window names]
- }
- foreach child $subwins {
- set target [FindAltKeyTarget $child $char]
- if {$target ne ""} {
- return $target
- }
- }
- }
- # ::tk::AltKeyInDialog --
- # <Alt-Key> event handler for standard dialogs. Sends <<AltUnderlined>>
- # to button or label which has appropriate underlined character.
- #
- proc ::tk::AltKeyInDialog {path key} {
- set target [FindAltKeyTarget $path $key]
- if {$target ne ""} {
- event generate $target <<AltUnderlined>>
- }
- }
- # ::tk::mcmaxamp --
- # Replacement for mcmax, used for texts with "magic ampersand" in it.
- #
- proc ::tk::mcmaxamp {args} {
- set maxlen 0
- foreach arg $args {
- # Should we run [mc] in caller's namespace?
- lassign [UnderlineAmpersand [mc $arg]] msg
- set length [string length $msg]
- if {$length > $maxlen} {
- set maxlen $length
- }
- }
- return $maxlen
- }
- if {[tk windowingsystem] eq "aqua"} {
- #stub procedures to respond to "do script" Apple Events
- proc ::tk::mac::DoScriptFile {file} {
- uplevel #0 $file
- source $file
- }
- proc ::tk::mac::DoScriptText {script} {
- uplevel #0 $script
- eval $script
- }
- #This procedure is required to silence warnings generated
- #by inline AppleScript execution.
- proc ::tk::mac::GetDynamicSdef {} {
- puts ""
- }
- }
- if {[info commands ::tk::endOfWord] eq ""} {
- proc ::tk::endOfWord {str start {locale {}}} {
- if {$start < 0} {
- set start -1
- }
- set start [tcl_endOfWord $str $start]
- if {$start < 0} {
- set start ""
- }
- return $start
- }
- }
- if {[info commands ::tk::startOfNextWord] eq ""} {
- proc ::tk::startOfNextWord {str start {locale {}}} {
- if {$start < 0} {
- set start -1
- }
- set start [tcl_startOfNextWord $str $start]
- if {$start < 0} {
- set start ""
- }
- return $start
- }
- }
- if {[info commands ::tk::startOfPreviousWord] eq ""} {
- proc ::tk::startOfPreviousWord {str start {locale {}}} {
- if {$start < 0} {
- set start -1
- }
- set start [tcl_startOfPreviousWord $str $start]
- if {$start < 0} {
- set start ""
- }
- return $start
- }
- }
- if {[info commands ::tk::wordBreakBefore] eq ""} {
- proc ::tk::wordBreakBefore {str start {locale {}}} {
- if {$start < 0} {
- set start -1
- }
- set start [tcl_wordBreakBefore $str $start]
- if {$start < 0} {
- set start ""
- }
- return $start
- }
- }
- if {[info commands ::tk::wordBreakAfter] eq ""} {
- proc ::tk::wordBreakAfter {str start {locale {}}} {
- if {$start < 0} {
- set start -1
- }
- set start [tcl_wordBreakAfter $str $start]
- if {$start < 0} {
- set start ""
- }
- return $start
- }
- }
- if {[info commands ::tk::endOfCluster] eq ""} {
- proc ::tk::endOfCluster {str start {locale {}}} {
- if {$start < 0} {
- set start -1
- } elseif {$start eq "end"} {
- set start [expr {[string length $str]-1}]
- } elseif {[string match end-* $start]} {
- set start [expr {[string length $str]-1-[string range $start 4 end]}]
- } elseif {$start >= [string length $str]} {
- return ""
- }
- incr start
- return $start
- }
- }
- if {[info commands ::tk::startOfCluster] eq ""} {
- proc ::tk::startOfCluster {str start {locale {}}} {
- if {$start < 0} {
- set start -1
- } elseif {$start eq "end"} {
- set start [expr {[string length $str]-1}]
- } elseif {[string match end-* $start]} {
- set start [expr {[string length $str]-1-[string range $start 4 end]}]
- } elseif {$start >= [string length $str]} {
- return [string length $str]
- }
- if {$start < 0} {
- return ""
- }
- return $start
- }
- }
- # Create a dictionary to store the starting index of the IME marked
- # text in an Entry or Text widget.
- set ::tk::Priv(IMETextMark) [dict create]
- # Scale the default parameters of the panedwindow sash
- option add *Panedwindow.handlePad 6p widgetDefault
- option add *Panedwindow.handleSize 6p widgetDefault
- option add *Panedwindow.sashWidth 2.25p widgetDefault
- # Scale the default size of the scale widget and its slider
- option add *Scale.length 75p widgetDefault
- option add *Scale.sliderLength 22.5p widgetDefault
- option add *Scale.width 11.25p widgetDefault
- # Scale the default scrollbar width on X11
- if {[tk windowingsystem] eq "x11"} {
- option add *Scrollbar.width 8.25p widgetDefault
- }
- # Run the Ttk themed widget set initialization
- if {$::ttk::library ne ""} {
- uplevel \#0 [list source $::ttk::library/ttk.tcl]
- }
- # Local Variables:
- # mode: tcl
- # fill-column: 78
- # End:
|