menu.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:7k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # menu.tcl --
  2. #
  3. # This demonstration script creates a window with a bunch of menus
  4. # and cascaded menus using menubars.
  5. #
  6. # RCS: @(#) $Id: menu.tcl,v 1.4.2.3 2007/04/29 02:24:24 das Exp $
  7. if {![info exists widgetDemo]} {
  8.     error "This script should be run from the "widget" demo."
  9. }
  10. set w .menu
  11. catch {destroy $w}
  12. toplevel $w
  13. wm title $w "Menu Demonstration"
  14. wm iconname $w "menu"
  15. positionWindow $w
  16. label $w.msg -font $font -wraplength 4i -justify left 
  17. if {[string equal [tk windowingsystem] "classic"]
  18. || [string equal [tk windowingsystem] "aqua"]} {
  19.     catch {set origUseCustomMDEF $::tk::mac::useCustomMDEF; set ::tk::mac::useCustomMDEF 1}
  20.     $w.msg configure -text "This window has a menubar with cascaded menus.  You can invoke entries with an accelerator by typing Command+x, where "x" is the character next to the command key symbol. The rightmost menu can be torn off into a palette by selecting the first item in the menu."
  21. } else {
  22.     $w.msg configure -text "This window contains a menubar with cascaded menus.  You can post a menu from the keyboard by typing Alt+x, where "x" is the character underlined on the menu.  You can then traverse among the menus using the arrow keys.  When a menu is posted, you can invoke the current entry by typing space, or you can invoke any entry by typing its underlined character.  If a menu entry has an accelerator, you can invoke the entry without posting the menu just by typing the accelerator. The rightmost menu can be torn off into a palette by selecting the first item in the menu."
  23. }
  24. pack $w.msg -side top
  25. set menustatus "    "
  26. frame $w.statusBar
  27. label $w.statusBar.label -textvariable menustatus -relief sunken -bd 1 -font "Helvetica 10" -anchor w
  28. pack $w.statusBar.label -side left -padx 2 -expand yes -fill both
  29. pack $w.statusBar -side bottom -fill x -pady 2
  30. frame $w.buttons
  31. pack $w.buttons -side bottom -fill x -pady 2m
  32. button $w.buttons.dismiss -text Dismiss -command "destroy $w"
  33. button $w.buttons.code -text "See Code" -command "showCode $w"
  34. pack $w.buttons.dismiss $w.buttons.code -side left -expand 1
  35. menu $w.menu -tearoff 0
  36. set m $w.menu.file
  37. menu $m -tearoff 0
  38. $w.menu add cascade -label "File" -menu $m -underline 0
  39. $m add command -label "Open..." -command {error "this is just a demo: no action has been defined for the "Open..." entry"}
  40. $m add command -label "New" -command {error "this is just a demo: no action has been defined for the "New" entry"}
  41. $m add command -label "Save" -command {error "this is just a demo: no action has been defined for the "Save" entry"}
  42. $m add command -label "Save As..." -command {error "this is just a demo: no action has been defined for the "Save As..." entry"}
  43. $m add separator
  44. $m add command -label "Print Setup..." -command {error "this is just a demo: no action has been defined for the "Print Setup..." entry"}
  45. $m add command -label "Print..." -command {error "this is just a demo: no action has been defined for the "Print..." entry"}
  46. $m add separator
  47. $m add command -label "Dismiss Menus Demo" -command "destroy $w"
  48. set m $w.menu.basic
  49. $w.menu add cascade -label "Basic" -menu $m -underline 0
  50. menu $m -tearoff 0
  51. $m add command -label "Long entry that does nothing"
  52. if {[string equal [tk windowingsystem] "classic"] 
  53. || [string equal [tk windowingsystem] "aqua"]} {
  54.     set modifier Command
  55. } elseif {$tcl_platform(platform) == "windows"} {
  56.     set modifier Control
  57. } else {
  58.     set modifier Meta
  59. }
  60. foreach i {A B C D E F} {
  61.     $m add command -label "Print letter "$i"" -underline 14 
  62.     -accelerator Meta+$i -command "puts $i" -accelerator $modifier+$i
  63.     bind $w <$modifier-[string tolower $i]> "puts $i"
  64. }
  65. set m $w.menu.cascade
  66. $w.menu add cascade -label "Cascades" -menu $m -underline 0
  67. menu $m -tearoff 0
  68. $m add command -label "Print hello" 
  69. -command {puts stdout "Hello"} -accelerator $modifier+H -underline 6
  70. bind $w <$modifier-h> {puts stdout "Hello"}
  71. $m add command -label "Print goodbye" -command {
  72.     puts stdout "Goodbye"} -accelerator $modifier+G -underline 6
  73. bind $w <$modifier-g> {puts stdout "Goodbye"}
  74. $m add cascade -label "Check buttons" 
  75. -menu $w.menu.cascade.check -underline 0
  76. $m add cascade -label "Radio buttons" 
  77. -menu $w.menu.cascade.radio -underline 0
  78. set m $w.menu.cascade.check
  79. menu $m -tearoff 0
  80. $m add check -label "Oil checked" -variable oil
  81. $m add check -label "Transmission checked" -variable trans
  82. $m add check -label "Brakes checked" -variable brakes
  83. $m add check -label "Lights checked" -variable lights
  84. $m add separator
  85. $m add command -label "Show current values" 
  86.     -command "showVars $w.menu.cascade.dialog oil trans brakes lights"
  87. $m invoke 1
  88. $m invoke 3
  89. set m $w.menu.cascade.radio
  90. menu $m -tearoff 0
  91. $m add radio -label "10 point" -variable pointSize -value 10
  92. $m add radio -label "14 point" -variable pointSize -value 14
  93. $m add radio -label "18 point" -variable pointSize -value 18
  94. $m add radio -label "24 point" -variable pointSize -value 24
  95. $m add radio -label "32 point" -variable pointSize -value 32
  96. $m add sep
  97. $m add radio -label "Roman" -variable style -value roman
  98. $m add radio -label "Bold" -variable style -value bold
  99. $m add radio -label "Italic" -variable style -value italic
  100. $m add sep
  101. $m add command -label "Show current values" 
  102. -command "showVars $w.menu.cascade.dialog pointSize style"
  103. $m invoke 1
  104. $m invoke 7
  105. set m $w.menu.icon
  106. $w.menu add cascade -label "Icons" -menu $m -underline 0
  107. menu $m -tearoff 0
  108. $m add command -bitmap @[file join $tk_library demos images pattern.bmp] 
  109. -hidemargin 1 -command [list 
  110. tk_dialog $w.pattern {Bitmap Menu Entry} 
  111. "The menu entry you invoked displays a bitmap rather than
  112. a text string.  Other than this, it is just like any other
  113. menu entry." {} 0 OK ]
  114. foreach i {info questhead error} {
  115.     $m add command -bitmap $i -hidemargin 1 -command [list 
  116.     puts "You invoked the $i bitmap" ]
  117. }
  118. $m entryconfigure 2 -columnbreak 1
  119. set m $w.menu.more
  120. $w.menu add cascade -label "More" -menu $m -underline 0
  121. menu $m -tearoff 0
  122. foreach i {{An entry} {Another entry} {Does nothing} {Does almost nothing} {Make life meaningful}} {
  123.     $m add command -label $i -command [list puts "You invoked "$i""]
  124. }
  125. $m entryconfigure "Does almost nothing" -bitmap questhead -compound left 
  126. -command [list 
  127. tk_dialog $w.compound {Compound Menu Entry} 
  128. "The menu entry you invoked displays both a bitmap and a
  129. text string.  Other than this, it is just like any other
  130. menu entry." {} 0 OK ]
  131. set m $w.menu.colors
  132. $w.menu add cascade -label "Colors" -menu $m -underline 1
  133. menu $m -tearoff 1
  134. foreach i {red orange yellow green blue} {
  135.     $m add command -label $i -background $i -command [list 
  136.     puts "You invoked "$i"" ]
  137. }
  138. $w configure -menu $w.menu
  139. bind Menu <<MenuSelect>> {
  140.     global $menustatus
  141.     if {[catch {%W entrycget active -label} label]} {
  142. set label "    "
  143.     }
  144.     set menustatus $label
  145.     update idletasks
  146. }
  147. if {[tk windowingsystem] eq "classic" || [tk windowingsystem] eq "aqua"} {
  148.     catch {set ::tk::mac::useCustomMDEF $origUseCustomMDEF}
  149. }