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

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