home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activetcltk / ActiveTcl8.3.4.1-8.win32-ix86.exe / ActiveTcl8.3.4.1-win32-ix86 / demos / IWidgets / radiobox < prev    next >
Encoding:
Text File  |  2001-10-22  |  433 b   |  15 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: radiobox in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. iwidgets::radiobox .rb -labeltext "Size:" -labelpos nw
  7. pack .rb -padx 4 -pady 4 -fill both
  8.  
  9. .rb add small -text "Small"
  10. .rb add med -text "Medium"
  11. .rb add large -text "Large"
  12. .rb add xlarge -text "Biggie"
  13.  
  14. .rb select med
  15.