Improved handling of case where child is killed by a signal
[tcl-tlc.git] / examples / test_domino.tcl
bloba9050737a5b1105f57478b77aec0999928f53080
1 #!/usr/bin/itkwish3.1
3 package require TLC
4 namespace import tlc::*
5 eval [go_home]
7 Log log -threshold debug
9 Domino #auto domfoo
11 proc changed {text} {
12 log notice "changed: ($text)"
13 $::domfoo tip
16 proc domchanged {} {
17 log notice "domchanged"
20 $domfoo attach_output domchanged
22 mycombobox .cb -choices {foo bar bax} -cb changed
23 pack .cb
25 wm deiconify .