home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Practical Programming in Tcl & Tk (4th Edition)
/
TCLBOOK4.BIN
/
pc
/
exsource.old
/
35_6.tcl
< prev
next >
Wrap
Text File
|
2003-04-15
|
397b
|
17 lines
#
# Example 35-6
# Canvas bitmap items.
#
set o [$c create bitmap 10 10 -bitmap @candle.xbm -anchor nw\
-background white -foreground blue]
set x [lindex [$c bbox $o] 2] ;# Right edge of bitmap
foreach builtin {error gray12 gray50 hourglass \
info questhead question warning} {
incr x 20
set o [$c create bitmap $x 30 -bitmap $builtin -anchor c]
set x [lindex [$c bbox $o] 2]
}