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 / selectiondialog < prev    next >
Text File  |  2003-09-01  |  623b  |  23 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: selectiondialog in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. option add *textBackground seashell
  7.  
  8. iwidgets::selectiondialog .sd -modality application
  9. .sd configure -selectionlabel "Font:"
  10.  
  11. .sd insert items end Ariel Courier Helvetica Knarly Lucida \
  12.     Rumpus Symbol Times "Zapf Dingbats"
  13.  
  14. button .select -text "Font..." -command {
  15.     if {[.sd activate]} {
  16.         puts "selected: [.sd get]"
  17.     } else {
  18.         puts "cancelled"
  19.     }
  20. }
  21. pack .select -side left
  22.  
  23.