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 / tabnotebook < prev    next >
Text File  |  2003-09-01  |  2KB  |  73 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: tabnotebook in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. option add *textBackground seashell
  7. option add *Tabnotebook.backdrop DimGray
  8. option add *Scale.width 8
  9. . configure -background white
  10.  
  11. iwidgets::tabnotebook .tnb -width 5i -height 3i
  12. pack .tnb -padx 4 -pady 4
  13.  
  14. # Page #1
  15. # ----------------------------------------------------------------------
  16. set page [.tnb add -label "Personal Info"]
  17.  
  18. iwidgets::entryfield $page.name -labeltext "Name:" -labelpos nw
  19. pack $page.name
  20. iwidgets::entryfield $page.addr -labeltext "Address:" -labelpos nw
  21. pack $page.addr
  22. iwidgets::entryfield $page.addr2 -labeltext "City, State:" -labelpos nw
  23. pack $page.addr2
  24. iwidgets::entryfield $page.email -labeltext "E-mail:" -labelpos nw
  25. pack $page.email
  26.  
  27.  
  28. # Page #2
  29. # ----------------------------------------------------------------------
  30. set page [.tnb add -label "Favorite Color"]
  31.  
  32. frame $page.sample -width 20 -height 20 \
  33.     -borderwidth 2 -relief raised
  34. pack $page.sample -fill both -pady 4
  35. scale $page.r -label "Red" -orient horizontal \
  36.     -from 0 -to 255 -command "set_color $page"
  37. pack $page.r -fill x
  38. scale $page.g -label "Green" -orient horizontal \
  39.     -from 0 -to 255 -command "set_color $page"
  40. pack $page.g -fill x
  41. scale $page.b -label "Blue" -orient horizontal \
  42.     -from 0 -to 255 -command "set_color $page"
  43. pack $page.b -fill x
  44.  
  45. proc set_color {page {val 0}} {
  46.     set r [$page.r get]
  47.     set g [$page.g get]
  48.     set b [$page.b get]
  49.     set color [format "#%.2x%.2x%.2x" $r $g $b]
  50.     $page.sample configure -background $color
  51. }
  52. set_color $page
  53.  
  54.  
  55. # Page #3
  56. # ----------------------------------------------------------------------
  57. set page [.tnb add -label "Blank Page"]
  58.  
  59. label $page.title -text "(put your widgets here)" \
  60.     -background black -foreground white \
  61.     -width 25 -height 3
  62. pack $page.title -expand yes -fill both
  63.  
  64.  
  65. iwidgets::optionmenu .orient -labeltext "Tabs:" -command {
  66.     .tnb configure -tabpos [.orient get]
  67. }
  68. pack .orient -padx 4 -pady 4
  69. .orient insert end n s e w
  70.  
  71. .tnb view "Personal Info"
  72. .tnb configure -tabpos [.orient get]
  73.