home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / programs / prog9 < prev    next >
Encoding:
Text File  |  1995-06-29  |  312 b   |  15 lines

  1. # dialog test with unmanage on cancel
  2. xtAppInitialize -class Program
  3.  
  4. xmPushButton .button managed -labelString "file selection: push me"
  5. .button activateCallback doFile
  6.  
  7. proc doFile {} {
  8.     xmFileSelectionDialog .fileSD managed
  9.     .fileSD cancelCallback ".fileSD unmanageChild"
  10. }
  11.  
  12. . realizeWidget
  13.  
  14. . mainLoop
  15.