home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / doc / examples / test_hierarchy.tcl < prev    next >
Encoding:
Text File  |  1995-06-29  |  403 b   |  23 lines

  1. #! moat
  2.  
  3. xtAppInitialize
  4.  
  5. xmBulletinBoard .top managed \
  6.     -background #A22 \
  7.     -buttonFontList "-*-courier-*-o-*--20-*"
  8. xmPushButton .top.bold managed \
  9.     -y 10 \
  10.     -labelString Bold
  11. xmPushButton .top.quit  managed \
  12.     -y 40 \
  13.     -labelString Quit
  14.  
  15. .top.bold activateCallback {
  16.     .top setValues \
  17.         -buttonFontList "-*-courier-bold-o-*--20-*"
  18. }
  19. .top.quit  activateCallback {exit 0}
  20.  
  21. . realizeWidget
  22. . mainLoop
  23.