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

  1. # ----------------------------------------------------------------------
  2. #  DEMO: menubar in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. iwidgets::menubar .mb -helpvariable helpVar -menubuttons {
  7.     menubutton file -text "File" -menu {
  8.         options -tearoff false
  9.  
  10.         command new -label "New" \
  11.                 -helpstr "Open new document" \
  12.                 -command {puts "selected: New"}
  13.  
  14.         command close -label "Close" \
  15.                 -helpstr "Close current document" \
  16.                 -command {puts "selected: Close"}
  17.  
  18.         separator sep1
  19.  
  20.         command exit -label "Exit" -command {exit} \
  21.                 -helpstr "Exit application"
  22.     }
  23.  
  24.     menubutton edit -text "Edit" -menu {
  25.         options -tearoff false
  26.  
  27.         command undo -label "Undo" -underline 0 \
  28.                 -helpstr "Undo last command" \
  29.                 -command {puts "selected: Undo"}
  30.  
  31.         separator sep2
  32.  
  33.         command cut -label "Cut" -underline 1 \
  34.                 -helpstr "Cut selection to clipboard" \
  35.                 -command {puts CUT}
  36.  
  37.         command copy -label "Copy" -underline 1 \
  38.                 -helpstr "Copy selection to clipboard" \
  39.                 -command {puts "selected: Copy"}
  40.  
  41.         command paste -label "Paste" -underline 0 \
  42.                 -helpstr "Paste clipboard contents into document" \
  43.                 -command {puts "selected: Paste"}
  44.     }
  45.  
  46.     menubutton options -text "Options" -menu {
  47.         options -tearoff false -selectcolor blue
  48.  
  49.         radiobutton byName -variable viewMode \
  50.                 -value NAME -label "by Name" \
  51.                 -helpstr "View files by name order" \
  52.                 -command {puts "selected: by Name"}
  53.  
  54.         radiobutton byDate -variable viewMode \
  55.                 -value DATE -label "by Date" \
  56.                 -helpstr "View files by date order" \
  57.                 -command {puts "selected: by Date"}
  58.  
  59.         cascade prefs -label "Preferences" -menu {
  60.             command colors -label Colors... \
  61.                 -helpstr "Change text colors" \
  62.                 -command {puts "selected: Colors..."}
  63.  
  64.             command fonts -label "Fonts..." \
  65.                 -helpstr "Change text font" \
  66.                 -command {puts "selected: Fonts..."}
  67.         }
  68.     }
  69. }
  70. pack .mb -fill x
  71.  
  72. frame .fr -width 200 -height 200 -background white
  73. pack .fr -fill both
  74.  
  75. label .help -anchor w -textvariable helpVar -width 40
  76. pack .help -fill x
  77.