]> git.zerfleddert.de Git - micropolis/blame - src/tk/library/tk.tcl
Import Micropolis from http://www.donhopkins.com/home/micropolis/
[micropolis] / src / tk / library / tk.tcl
CommitLineData
6a5fa4e0
MG
1# tk.tcl --
2#
3# Initialization script normally executed in the interpreter for each
4# Tk-based application. Arranges class bindings for widgets.
5#
6# $Header: /user6/ouster/wish/scripts/RCS/tk.tcl,v 1.19 92/08/08 14:50:08 ouster Exp $ SPRITE (Berkeley)
7#
8# Copyright 1992 Regents of the University of California
9# Permission to use, copy, modify, and distribute this
10# software and its documentation for any purpose and without
11# fee is hereby granted, provided that this copyright
12# notice appears in all copies. The University of California
13# makes no representations about the suitability of this
14# software for any purpose. It is provided "as is" without
15# express or implied warranty.
16
17# Insist on running with a compatible version of Tcl.
18
19if "[info tclversion] != {6.4}" {
20 error "wrong version of Tcl loaded ([info tclversion]): need 6.4"
21}
22
23# Initialize the auto-load path to include Tk's directory as well as
24# Tcl's directory:
25
26set auto_path "$tk_library [info library]"
27
28# Turn off strict Motif look and feel as a default.
29
30set tk_strictMotif 0
31
32# ----------------------------------------------------------------------
33# Class bindings for various flavors of button widgets. $tk_priv(window)
34# keeps track of the button containing the mouse, and $tk_priv(relief)
35# saves the original relief of the button so it can be restored when
36# the mouse button is released.
37# ----------------------------------------------------------------------
38
39bind Button <Any-Enter> {tk_butEnter %W}
40bind Button <Any-Leave> {tk_butLeave %W}
41bind Button <1> {tk_butDown %W}
42bind Button <ButtonRelease-1> {tk_butUp %W}
43
44bind CheckButton <Any-Enter> {tk_butEnter %W}
45bind CheckButton <Any-Leave> {tk_butLeave %W}
46bind CheckButton <1> {tk_butDown %W}
47bind CheckButton <ButtonRelease-1> {tk_butUp %W}
48
49bind RadioButton <Any-Enter> {tk_butEnter %W}
50bind RadioButton <Any-Leave> {tk_butLeave %W}
51bind RadioButton <1> {tk_butDown %W}
52bind RadioButton <ButtonRelease-1> {tk_butUp %W}
53
54# ----------------------------------------------------------------------
55# Class bindings for entry widgets.
56# ----------------------------------------------------------------------
57
58bind Entry <1> {
59 %W cursor @%x
60 %W select from @%x
61 if {[lindex [%W config -state] 4] == "normal"} {focus %W}
62}
63bind Entry <B1-Motion> {%W select to @%x}
64bind Entry <Shift-1> {%W select adjust @%x}
65bind Entry <Shift-B1-Motion> {%W select to @%x}
66bind Entry <2> {%W scan mark %x}
67bind Entry <B2-Motion> {%W scan dragto %x}
68bind Entry <Any-KeyPress> {
69 if {"%A" != ""} {
70 %W insert cursor %A
71 tk_entrySeeCaret %W
72 }
73}
74bind Entry <Delete> {tk_entryBackspace %W; tk_entrySeeCaret %W}
75bind Entry <BackSpace> {tk_entryBackspace %W; tk_entrySeeCaret %W}
76bind Entry <Control-h> {tk_entryBackspace %W; tk_entrySeeCaret %W}
77bind Entry <Control-d> {%W delete sel.first sel.last; tk_entrySeeCaret %W}
78bind Entry <Control-u> {%W delete 0 end}
79bind Entry <Control-v> {%W insert cursor [selection get]; tk_entrySeeCaret %W}
80bind Entry <Control-w> {tk_entryBackword %W; tk_entrySeeCaret %W}
81tk_bindForTraversal Entry
82
83# ----------------------------------------------------------------------
84# Class bindings for listbox widgets.
85# ----------------------------------------------------------------------
86
87bind Listbox <1> {%W select from [%W nearest %y]}
88bind Listbox <B1-Motion> {%W select to [%W nearest %y]}
89bind Listbox <Shift-1> {%W select adjust [%W nearest %y]}
90bind Listbox <Shift-B1-Motion> {%W select to [%W nearest %y]}
91bind Listbox <2> {%W scan mark %x %y}
92bind Listbox <B2-Motion> {%W scan dragto %x %y}
93
94# ----------------------------------------------------------------------
95# Class bindings for scrollbar widgets. When strict Motif is requested,
96# the bindings use $tk_priv(buttons) and $tk_priv(activeFg) to set the
97# -activeforeground color to -foreground when the mouse is in the window
98# and restore it when the mouse leaves.
99# ----------------------------------------------------------------------
100
101bind Scrollbar <Any-Enter> {
102 if $tk_strictMotif {
103 set tk_priv(activeFg) [lindex [%W config -activeforeground] 4]
104 %W config -activeforeground [lindex [%W config -foreground] 4]
105 }
106}
107bind Scrollbar <Any-Leave> {
108 if {$tk_strictMotif && ($tk_priv(buttons) == 0)} {
109 %W config -activeforeground $tk_priv(activeFg)
110 }
111}
112bind Scrollbar <Any-ButtonPress> {incr tk_priv(buttons)}
113bind Scrollbar <Any-ButtonRelease> {incr tk_priv(buttons) -1}
114
115# ----------------------------------------------------------------------
116# Class bindings for scale widgets. When strict Motif is requested,
117# the bindings use $tk_priv(buttons) and $tk_priv(activeFg) to set the
118# -activeforeground color to -foreground when the mouse is in the window
119# and restore it when the mouse leaves.
120# ----------------------------------------------------------------------
121
122bind Scale <Any-Enter> {
123 if $tk_strictMotif {
124 set tk_priv(activeFg) [lindex [%W config -activeforeground] 4]
125 %W config -activeforeground [lindex [%W config -sliderforeground] 4]
126 }
127}
128bind Scale <Any-Leave> {
129 if {$tk_strictMotif && ($tk_priv(buttons) == 0)} {
130 %W config -activeforeground $tk_priv(activeFg)
131 }
132}
133bind Scale <Any-ButtonPress> {incr tk_priv(buttons)}
134bind Scale <Any-ButtonRelease> {incr tk_priv(buttons) -1}
135
136# ----------------------------------------------------------------------
137# Class bindings for menubutton widgets. Variables used:
138# $tk_priv(posted) - keeps track of the menubutton whose menu is
139# currently posted (or empty string, if none).
140# $tk_priv(inMenuButton)- if non-null, identifies menu button
141# containing mouse pointer.
142# $tk_priv(relief) - keeps track of original relief of posted
143# menu button, so it can be restored later.
144# $tk_priv(dragging) - if non-null, identifies menu button whose
145# menu is currently being dragged in a tear-off
146# operation.
147# $tk_priv(focus) - records old focus window so focus can be
148# returned there after keyboard traversal
149# to menu.
150# ----------------------------------------------------------------------
151
152bind Menubutton <Enter> {
153 set tk_priv(inMenuButton) %W
154 if {[lindex [%W config -state] 4] != "disabled"} {
155 if {!$tk_strictMotif} {
156 %W config -state active
157 }
158 }
159}
160bind Menubutton <Any-Leave> {
161 set tk_priv(inMenuButton) {}
162 if {[lindex [%W config -state] 4] != "disabled"} {
163 if {!$tk_strictMotif} {
164 %W config -state normal
165 }
166 }
167}
168bind Menubutton <1> {tk_mbButtonDown %W}
169bind Menubutton <Any-ButtonRelease-1> {
170 if {($tk_priv(inMenuButton) != "") && ($tk_priv(posted) != "")} {
171 [lindex [$tk_priv(posted) config -menu] 4] activate 0
172 } else {
173 tk_mbUnpost
174 }
175}
176
177# In the binding below, it's important to ignore grab-related entries
178# and exits because they lag reality and can cause menus to chase
179# their own tail, repeatedly posting and unposting.
180
181bind Menubutton <B1-Enter> {
182 set tk_priv(inMenuButton) %W
183 if {([lindex [%W config -state] 4] != "disabled")
184 && ("%m" != "NotifyGrab") && ("%m" != "NotifyUngrab")} {
185 if {!$tk_strictMotif} {
186 %W config -state active
187 }
188 tk_mbPost %W
189 }
190}
191bind Menubutton <2> {
192 if {($tk_priv(posted) == "")
193 && ([lindex [%W config -state] 4] != "disabled")} {
194 set tk_priv(dragging) %W
195 [lindex [$tk_priv(dragging) config -menu] 4] post %X %Y
196 }
197}
198bind Menubutton <B2-Motion> {
199 if {$tk_priv(dragging) != ""} {
200 [lindex [$tk_priv(dragging) config -menu] 4] post %X %Y
201 }
202}
203bind Menubutton <ButtonRelease-2> {set tk_priv(dragging) ""}
204
205# ----------------------------------------------------------------------
206# Class bindings for menu widgets. $tk_priv(x) and $tk_priv(y) are used
207# to keep track of the position of the mouse cursor in the menu window
208# during dragging of tear-off menus. $tk_priv(window) keeps track of
209# the menu containing the mouse, if any.
210# ----------------------------------------------------------------------
211
212bind Menu <Any-Enter> {set tk_priv(window) %W; %W activate @%y}
213bind Menu <Any-Leave> {set tk_priv(window) {}; %W activate none}
214bind Menu <Any-Motion> {
215 if {$tk_priv(window) != ""} {
216 %W activate @%y
217 }
218}
219bind Menu <ButtonRelease-1> {tk_invokeMenu %W}
220bind Menu <2> {set tk_priv(x) %x; set tk_priv(y) %y}
221bind Menu <B2-Motion> {
222 if {$tk_priv(posted) == ""} {
223 %W post [expr %X-$tk_priv(x)] [expr %Y-$tk_priv(y)]
224 }
225}
226bind Menu <B2-Leave> { }
227bind Menu <B2-Enter> { }
228bind Menu <Escape> {tk_mbUnpost}
229bind Menu <Any-KeyPress> {tk_traverseWithinMenu %W %A}
230bind Menu <Left> {tk_nextMenu -1}
231bind Menu <Right> {tk_nextMenu 1}
232bind Menu <Up> {tk_nextMenuEntry -1}
233bind Menu <Down> {tk_nextMenuEntry 1}
234bind Menu <Return> {tk_invokeMenu %W}
235
236# ----------------------------------------------------------------------
237# Class bindings for text widgets. $tk_priv(selectMode) holds one of
238# "char", "word", or "line" to indicate which selection mode is active.
239# ----------------------------------------------------------------------
240
241bind Text <1> {
242 set tk_priv(selectMode) char
243 %W mark set insert @%x,%y
244 %W mark set anchor insert
245 if {[lindex [%W config -state] 4] == "normal"} {focus %W}
246}
247bind Text <Double-1> {
248 set tk_priv(selectMode) word
249 %W mark set insert "@%x,%y wordstart"
250 tk_textSelectTo %W insert
251}
252bind Text <Triple-1> {
253 set tk_priv(selectMode) line
254 %W mark set insert "@%x,%y linestart"
255 tk_textSelectTo %W insert
256}
257bind Text <B1-Motion> {tk_textSelectTo %W @%x,%y}
258bind Text <Shift-1> {
259 tk_textResetAnchor %W @%x,%y
260 tk_textSelectTo %W @%x,%y
261}
262bind Text <Shift-B1-Motion> {tk_textSelectTo %W @%x,%y}
263bind Text <2> {%W scan mark %y}
264bind Text <B2-Motion> {%W scan dragto %y}
265bind Text <Any-KeyPress> {
266 if {"%A" != ""} {
267 %W insert insert %A
268 %W yview -pickplace insert
269 }
270}
271bind Text <Return> {%W insert insert \n; %W yview -pickplace insert}
272bind Text <BackSpace> {tk_textBackspace %W; %W yview -pickplace insert}
273bind Text <Delete> {tk_textBackspace %W; %W yview -pickplace insert}
274bind Text <Control-h> {tk_textBackspace %W; %W yview -pickplace insert}
275bind Text <Control-d> {%W delete sel.first sel.last}
276bind Text <Control-v> {
277 %W insert insert [selection get]
278 %W yview -pickplace insert
279}
280tk_bindForTraversal Text
281
282# Initialize the elements of tk_priv that require initialization.
283
284set tk_priv(buttons) 0
285set tk_priv(dragging) {}
286set tk_priv(focus) {}
287set tk_priv(inMenuButton) {}
288set tk_priv(posted) {}
289set tk_priv(selectMode) char
290set tk_priv(window) {}
Impressum, Datenschutz