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 / labeledwidget < prev    next >
Text File  |  2003-09-01  |  696b  |  24 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: labeledwidget in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. . configure -background white
  7.  
  8. iwidgets::labeledwidget .lw -labeltext "Label Text:"
  9. pack .lw -padx 4 -pady 4
  10.  
  11. set win [.lw childsite]
  12. label $win.ex -text "(put your widgets here)" \
  13.     -background black -foreground white \
  14.     -width 30 -height 3
  15. pack $win.ex -expand yes -fill both -padx 4 -pady 4
  16.  
  17. iwidgets::optionmenu .pos -labeltext "Position:" -command {
  18.     .lw configure -labelpos [.pos get]
  19. }
  20. pack .pos -padx 4 -pady 4
  21.  
  22. .pos insert end e n ne nw s se sw w
  23. .pos select w
  24.