home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Practical Programming in Tcl & Tk (4th Edition)
/
TCLBOOK4.BIN
/
mac
/
exsource.old
/
44_2.tcl
< prev
next >
Wrap
Text File
|
2003-04-15
|
293b
|
17 lines
#
# Example 44-2
# Bind_Display presents the bindings for a widget or class.
#
proc Bind_Display { frame } {
global bind
$frame.key delete 0 end
$frame.cmd delete 0 end
foreach seq [bind $bind(class)] {
$frame.key insert end $seq
$frame.cmd insert end [bind $bind(class) $seq]
}
}