home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / messagedialog < prev    next >
Text File  |  2003-09-01  |  578b  |  21 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: messagedialog in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. button .b -text "Confirm..." -command {
  7.     if {[.md activate]} {
  8.         puts "selected: Yes"
  9.     } else {
  10.         puts "selected: No"
  11.     }
  12. }
  13. pack .b
  14.  
  15. iwidgets::messagedialog .md -title "Message Dialog" -modality application \
  16.     -bitmap questhead -text "Are you sure?"
  17.  
  18. .md hide Help
  19. .md buttonconfigure OK -text "Yes"
  20. .md buttonconfigure Cancel -text "No"
  21.