home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / tcl / tclmotif.1 / tclmotif / tm.1.2 / programs / prog16 < prev    next >
Encoding:
Text File  |  1993-11-15  |  285 b   |  15 lines

  1. # testing selectionBox callback info
  2. xtAppInitialize -class Program
  3.  
  4. xmSelectionBox .selectionBox managed
  5. .selectionBox okCallback print_selectionBox
  6.  
  7. proc print_selectionBox {} {
  8.     .selectionBox getValues -textString c
  9.     puts stdout "Selection: $c"
  10. }
  11.  
  12. . realizeWidget
  13.  
  14. . mainLoop
  15.