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

通讯编程

开发平台:

Visual C++

  1. # menu.tcl --
  2. #
  3. # This file defines the default bindings for Tk menus and menubuttons.
  4. # It also implements keyboard traversal of menus and implements a few
  5. # other utility procedures related to menus.
  6. #
  7. # RCS: @(#) $Id: menu.tcl,v 1.18.2.5 2007/11/09 06:26:54 das Exp $
  8. #
  9. # Copyright (c) 1992-1994 The Regents of the University of California.
  10. # Copyright (c) 1994-1997 Sun Microsystems, Inc.
  11. # Copyright (c) 1998-1999 by Scriptics Corporation.
  12. # Copyright (c) 2007 Daniel A. Steffen <das@users.sourceforge.net>
  13. #
  14. # See the file "license.terms" for information on usage and redistribution
  15. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  16. #
  17. #-------------------------------------------------------------------------
  18. # Elements of tk::Priv that are used in this file:
  19. #
  20. # cursor - Saves the -cursor option for the posted menubutton.
  21. # focus - Saves the focus during a menu selection operation.
  22. # Focus gets restored here when the menu is unposted.
  23. # grabGlobal - Used in conjunction with tk::Priv(oldGrab):  if
  24. # tk::Priv(oldGrab) is non-empty, then tk::Priv(grabGlobal)
  25. # contains either an empty string or "-global" to
  26. # indicate whether the old grab was a local one or
  27. # a global one.
  28. # inMenubutton - The name of the menubutton widget containing
  29. # the mouse, or an empty string if the mouse is
  30. # not over any menubutton.
  31. # menuBar - The name of the menubar that is the root
  32. # of the cascade hierarchy which is currently
  33. # posted. This is null when there is no menu currently
  34. # being pulled down from a menu bar.
  35. # oldGrab - Window that had the grab before a menu was posted.
  36. # Used to restore the grab state after the menu
  37. # is unposted.  Empty string means there was no
  38. # grab previously set.
  39. # popup - If a menu has been popped up via tk_popup, this
  40. # gives the name of the menu.  Otherwise this
  41. # value is empty.
  42. # postedMb - Name of the menubutton whose menu is currently
  43. # posted, or an empty string if nothing is posted
  44. # A grab is set on this widget.
  45. # relief - Used to save the original relief of the current
  46. # menubutton.
  47. # window - When the mouse is over a menu, this holds the
  48. # name of the menu;  it's cleared when the mouse
  49. # leaves the menu.
  50. # tearoff - Whether the last menu posted was a tearoff or not.
  51. # This is true always for unix, for tearoffs for Mac
  52. # and Windows.
  53. # activeMenu - This is the last active menu for use
  54. # with the <<MenuSelect>> virtual event.
  55. # activeItem - This is the last active menu item for
  56. # use with the <<MenuSelect>> virtual event.
  57. #-------------------------------------------------------------------------
  58. #-------------------------------------------------------------------------
  59. # Overall note:
  60. # This file is tricky because there are five different ways that menus
  61. # can be used:
  62. #
  63. # 1. As a pulldown from a menubutton. In this style, the variable 
  64. #    tk::Priv(postedMb) identifies the posted menubutton.
  65. # 2. As a torn-off menu copied from some other menu.  In this style
  66. #    tk::Priv(postedMb) is empty, and menu's type is "tearoff".
  67. # 3. As an option menu, triggered from an option menubutton.  In this
  68. #    style tk::Priv(postedMb) identifies the posted menubutton.
  69. # 4. As a popup menu.  In this style tk::Priv(postedMb) is empty and
  70. #    the top-level menu's type is "normal".
  71. # 5. As a pulldown from a menubar. The variable tk::Priv(menubar) has
  72. #    the owning menubar, and the menu itself is of type "normal".
  73. #
  74. # The various binding procedures use the  state described above to
  75. # distinguish the various cases and take different actions in each
  76. # case.
  77. #-------------------------------------------------------------------------
  78. #-------------------------------------------------------------------------
  79. # The code below creates the default class bindings for menus
  80. # and menubuttons.
  81. #-------------------------------------------------------------------------
  82. bind Menubutton <FocusIn> {}
  83. bind Menubutton <Enter> {
  84.     tk::MbEnter %W
  85. }
  86. bind Menubutton <Leave> {
  87.     tk::MbLeave %W
  88. }
  89. bind Menubutton <1> {
  90.     if {$tk::Priv(inMenubutton) ne ""} {
  91. tk::MbPost $tk::Priv(inMenubutton) %X %Y
  92.     }
  93. }
  94. bind Menubutton <Motion> {
  95.     tk::MbMotion %W up %X %Y
  96. }
  97. bind Menubutton <B1-Motion> {
  98.     tk::MbMotion %W down %X %Y
  99. }
  100. bind Menubutton <ButtonRelease-1> {
  101.     tk::MbButtonUp %W
  102. }
  103. bind Menubutton <space> {
  104.     tk::MbPost %W
  105.     tk::MenuFirstEntry [%W cget -menu]
  106. }
  107. # Must set focus when mouse enters a menu, in order to allow
  108. # mixed-mode processing using both the mouse and the keyboard.
  109. # Don't set the focus if the event comes from a grab release,
  110. # though:  such an event can happen after as part of unposting
  111. # a cascaded chain of menus, after the focus has already been
  112. # restored to wherever it was before menu selection started.
  113. bind Menu <FocusIn> {}
  114. bind Menu <Enter> {
  115.     set tk::Priv(window) %W
  116.     if {[%W cget -type] eq "tearoff"} {
  117. if {"%m" ne "NotifyUngrab"} {
  118.     if {[tk windowingsystem] eq "x11"} {
  119. tk_menuSetFocus %W
  120.     }
  121. }
  122.     }
  123.     tk::MenuMotion %W %x %y %s
  124. }
  125. bind Menu <Leave> {
  126.     tk::MenuLeave %W %X %Y %s
  127. }
  128. bind Menu <Motion> {
  129.     tk::MenuMotion %W %x %y %s
  130. }
  131. bind Menu <ButtonPress> {
  132.     tk::MenuButtonDown %W
  133. }
  134. bind Menu <ButtonRelease> {
  135.    tk::MenuInvoke %W 1
  136. }
  137. bind Menu <space> {
  138.     tk::MenuInvoke %W 0
  139. }
  140. bind Menu <Return> {
  141.     tk::MenuInvoke %W 0
  142. }
  143. bind Menu <Escape> {
  144.     tk::MenuEscape %W
  145. }
  146. bind Menu <Left> {
  147.     tk::MenuLeftArrow %W
  148. }
  149. bind Menu <Right> {
  150.     tk::MenuRightArrow %W
  151. }
  152. bind Menu <Up> {
  153.     tk::MenuUpArrow %W
  154. }
  155. bind Menu <Down> {
  156.     tk::MenuDownArrow %W
  157. }
  158. bind Menu <KeyPress> {
  159.     tk::TraverseWithinMenu %W %A
  160. }
  161. # The following bindings apply to all windows, and are used to
  162. # implement keyboard menu traversal.
  163. if {[tk windowingsystem] eq "x11"} {
  164.     bind all <Alt-KeyPress> {
  165. tk::TraverseToMenu %W %A
  166.     }
  167.     bind all <F10> {
  168. tk::FirstMenu %W
  169.     }
  170. } else {
  171.     bind Menubutton <Alt-KeyPress> {
  172. tk::TraverseToMenu %W %A
  173.     }
  174.     bind Menubutton <F10> {
  175. tk::FirstMenu %W
  176.     }
  177. }
  178. # ::tk::MbEnter --
  179. # This procedure is invoked when the mouse enters a menubutton
  180. # widget.  It activates the widget unless it is disabled.  Note:
  181. # this procedure is only invoked when mouse button 1 is *not* down.
  182. # The procedure ::tk::MbB1Enter is invoked if the button is down.
  183. #
  184. # Arguments:
  185. # w - The  name of the widget.
  186. proc ::tk::MbEnter w {
  187.     variable ::tk::Priv
  188.     if {$Priv(inMenubutton) ne ""} {
  189. MbLeave $Priv(inMenubutton)
  190.     }
  191.     set Priv(inMenubutton) $w
  192.     if {[$w cget -state] ne "disabled" && [tk windowingsystem] ne "aqua"} {
  193. $w configure -state active
  194.     }
  195. }
  196. # ::tk::MbLeave --
  197. # This procedure is invoked when the mouse leaves a menubutton widget.
  198. # It de-activates the widget, if the widget still exists.
  199. #
  200. # Arguments:
  201. # w - The  name of the widget.
  202. proc ::tk::MbLeave w {
  203.     variable ::tk::Priv
  204.     set Priv(inMenubutton) {}
  205.     if {![winfo exists $w]} {
  206. return
  207.     }
  208.     if {[$w cget -state] eq "active" && [tk windowingsystem] ne "aqua"} {
  209. $w configure -state normal
  210.     }
  211. }
  212. # ::tk::MbPost --
  213. # Given a menubutton, this procedure does all the work of posting
  214. # its associated menu and unposting any other menu that is currently
  215. # posted.
  216. #
  217. # Arguments:
  218. # w - The name of the menubutton widget whose menu
  219. # is to be posted.
  220. # x, y - Root coordinates of cursor, used for positioning
  221. # option menus.  If not specified, then the center
  222. # of the menubutton is used for an option menu.
  223. proc ::tk::MbPost {w {x {}} {y {}}} {
  224.     global errorInfo
  225.     variable ::tk::Priv
  226.     global tcl_platform
  227.     if {[$w cget -state] eq "disabled" || $w eq $Priv(postedMb)} {
  228. return
  229.     }
  230.     set menu [$w cget -menu]
  231.     if {$menu eq ""} {
  232. return
  233.     }
  234.     set tearoff [expr {[tk windowingsystem] eq "x11" 
  235.     || [$menu cget -type] eq "tearoff"}]
  236.     if {[string first $w $menu] != 0} {
  237. error "can't post $menu:  it isn't a descendant of $w (this is a new requirement in Tk versions 3.0 and later)"
  238.     }
  239.     set cur $Priv(postedMb)
  240.     if {$cur ne ""} {
  241. MenuUnpost {}
  242.     }
  243.     set Priv(cursor) [$w cget -cursor]
  244.     $w configure -cursor arrow
  245.     if {[tk windowingsystem] ne "aqua"} {
  246. set Priv(relief) [$w cget -relief]
  247. $w configure -relief raised
  248.     } else {
  249. $w configure -state active
  250.     }
  251.     set Priv(postedMb) $w
  252.     set Priv(focus) [focus]
  253.     $menu activate none
  254.     GenerateMenuSelect $menu
  255.     # If this looks like an option menubutton then post the menu so
  256.     # that the current entry is on top of the mouse.  Otherwise post
  257.     # the menu just below the menubutton, as for a pull-down.
  258.     update idletasks
  259.     if {[catch {
  260. switch [$w cget -direction] {
  261.          above {
  262.           set x [winfo rootx $w]
  263.           set y [expr {[winfo rooty $w] - [winfo reqheight $menu]}]
  264. # if we go offscreen to the top, show as 'below'
  265. if {$y < 0} {
  266.     set y [expr {[winfo rooty $w] + [winfo height $w]}]
  267. }
  268. PostOverPoint $menu $x $y
  269.          }
  270.          below {
  271.           set x [winfo rootx $w]
  272.           set y [expr {[winfo rooty $w] + [winfo height $w]}]
  273. # if we go offscreen to the bottom, show as 'above'
  274. set mh [winfo reqheight $menu]
  275. if {($y + $mh) > [winfo screenheight $w]} {
  276.     set y [expr {[winfo rooty $w] - $mh}]
  277. }
  278. PostOverPoint $menu $x $y
  279.          }
  280.          left {
  281.           set x [expr {[winfo rootx $w] - [winfo reqwidth $menu]}]
  282.           set y [expr {(2 * [winfo rooty $w] + [winfo height $w]) / 2}]
  283.           set entry [MenuFindName $menu [$w cget -text]]
  284.           if {[$w cget -indicatoron]} {
  285.     if {$entry == [$menu index last]} {
  286.      incr y [expr {-([$menu yposition $entry] 
  287.      + [winfo reqheight $menu])/2}]
  288.     } else {
  289.      incr y [expr {-([$menu yposition $entry] 
  290.         + [$menu yposition [expr {$entry+1}]])/2}]
  291.     }
  292.           }
  293. PostOverPoint $menu $x $y
  294. if {$entry ne "" 
  295. && [$menu entrycget $entry -state] ne "disabled"} {
  296.               $menu activate $entry
  297.     GenerateMenuSelect $menu
  298.           }
  299.          }
  300.          right {
  301.           set x [expr {[winfo rootx $w] + [winfo width $w]}]
  302.           set y [expr {(2 * [winfo rooty $w] + [winfo height $w]) / 2}]
  303.           set entry [MenuFindName $menu [$w cget -text]]
  304.           if {[$w cget -indicatoron]} {
  305.     if {$entry == [$menu index last]} {
  306.      incr y [expr {-([$menu yposition $entry] 
  307.      + [winfo reqheight $menu])/2}]
  308.     } else {
  309.      incr y [expr {-([$menu yposition $entry] 
  310.         + [$menu yposition [expr {$entry+1}]])/2}]
  311.     }
  312.           }
  313. PostOverPoint $menu $x $y
  314. if {$entry ne "" 
  315. && [$menu entrycget $entry -state] ne "disabled"} {
  316.               $menu activate $entry
  317.     GenerateMenuSelect $menu
  318.           }
  319.          }
  320.          default {
  321.           if {[$w cget -indicatoron]} {
  322.     if {$y eq ""} {
  323. set x [expr {[winfo rootx $w] + [winfo width $w]/2}]
  324. set y [expr {[winfo rooty $w] + [winfo height $w]/2}]
  325.          }
  326.             PostOverPoint $menu $x $y [MenuFindName $menu [$w cget -text]]
  327. } else {
  328.     PostOverPoint $menu [winfo rootx $w] [expr {[winfo rooty $w]+[winfo height $w]}]
  329.           }
  330.          }
  331. }
  332.     } msg]} {
  333. # Error posting menu (e.g. bogus -postcommand). Unpost it and
  334. # reflect the error.
  335. set savedInfo $errorInfo
  336. MenuUnpost {}
  337. error $msg $savedInfo
  338.     }
  339.     set Priv(tearoff) $tearoff
  340.     if {$tearoff != 0} {
  341.      focus $menu
  342. if {[winfo viewable $w]} {
  343.     SaveGrabInfo $w
  344.     grab -global $w
  345. }
  346.     }
  347. }
  348. # ::tk::MenuUnpost --
  349. # This procedure unposts a given menu, plus all of its ancestors up
  350. # to (and including) a menubutton, if any.  It also restores various
  351. # values to what they were before the menu was posted, and releases
  352. # a grab if there's a menubutton involved.  Special notes:
  353. # 1. It's important to unpost all menus before releasing the grab, so
  354. #    that any Enter-Leave events (e.g. from menu back to main
  355. #    application) have mode NotifyGrab.
  356. # 2. Be sure to enclose various groups of commands in "catch" so that
  357. #    the procedure will complete even if the menubutton or the menu
  358. #    or the grab window has been deleted.
  359. #
  360. # Arguments:
  361. # menu - Name of a menu to unpost.  Ignored if there
  362. # is a posted menubutton.
  363. proc ::tk::MenuUnpost menu {
  364.     global tcl_platform
  365.     variable ::tk::Priv
  366.     set mb $Priv(postedMb)
  367.     # Restore focus right away (otherwise X will take focus away when
  368.     # the menu is unmapped and under some window managers (e.g. olvwm)
  369.     # we'll lose the focus completely).
  370.     catch {focus $Priv(focus)}
  371.     set Priv(focus) ""
  372.     # Unpost menu(s) and restore some stuff that's dependent on
  373.     # what was posted.
  374.     catch {
  375. if {$mb ne ""} {
  376.     set menu [$mb cget -menu]
  377.     $menu unpost
  378.     set Priv(postedMb) {}
  379.     $mb configure -cursor $Priv(cursor)
  380.     if {[tk windowingsystem] ne "aqua"} {
  381. $mb configure -relief $Priv(relief)
  382.     } else {
  383. $mb configure -state normal
  384.     }
  385. } elseif {$Priv(popup) ne ""} {
  386.     $Priv(popup) unpost
  387.     set Priv(popup) {}
  388. } elseif {[$menu cget -type] ne "menubar" && [$menu cget -type] ne "tearoff"} {
  389.     # We're in a cascaded sub-menu from a torn-off menu or popup.
  390.     # Unpost all the menus up to the toplevel one (but not
  391.     # including the top-level torn-off one) and deactivate the
  392.     # top-level torn off menu if there is one.
  393.     while {1} {
  394. set parent [winfo parent $menu]
  395. if {[winfo class $parent] ne "Menu" || ![winfo ismapped $parent]} {
  396.     break
  397. }
  398. $parent activate none
  399. $parent postcascade none
  400. GenerateMenuSelect $parent
  401. set type [$parent cget -type]
  402. if {$type eq "menubar" || $type eq "tearoff"} {
  403.     break
  404. }
  405. set menu $parent
  406.     }
  407.     if {[$menu cget -type] ne "menubar"} {
  408. $menu unpost
  409.     }
  410. }
  411.     }
  412.     if {($Priv(tearoff) != 0) || $Priv(menuBar) ne ""} {
  413.      # Release grab, if any, and restore the previous grab, if there
  414.      # was one.
  415. if {$menu ne ""} {
  416.     set grab [grab current $menu]
  417.     if {$grab ne ""} {
  418. grab release $grab
  419.     }
  420. }
  421. RestoreOldGrab
  422. if {$Priv(menuBar) ne ""} {
  423.     $Priv(menuBar) configure -cursor $Priv(cursor)
  424.     set Priv(menuBar) {}
  425. }
  426. if {[tk windowingsystem] ne "x11"} {
  427.     set Priv(tearoff) 0
  428. }
  429.     }
  430. }
  431. # ::tk::MbMotion --
  432. # This procedure handles mouse motion events inside menubuttons, and
  433. # also outside menubuttons when a menubutton has a grab (e.g. when a
  434. # menu selection operation is in progress).
  435. #
  436. # Arguments:
  437. # w - The name of the menubutton widget.
  438. # upDown -  "down" means button 1 is pressed, "up" means
  439. # it isn't.
  440. # rootx, rooty - Coordinates of mouse, in (virtual?) root window.
  441. proc ::tk::MbMotion {w upDown rootx rooty} {
  442.     variable ::tk::Priv
  443.     if {$Priv(inMenubutton) eq $w} {
  444. return
  445.     }
  446.     set new [winfo containing $rootx $rooty]
  447.     if {$new ne $Priv(inMenubutton) 
  448.     && ($new eq "" || [winfo toplevel $new] eq [winfo toplevel $w])} {
  449. if {$Priv(inMenubutton) ne ""} {
  450.     MbLeave $Priv(inMenubutton)
  451. }
  452. if {$new ne "" 
  453. && [winfo class $new] eq "Menubutton" 
  454. && ([$new cget -indicatoron] == 0) 
  455. && ([$w cget -indicatoron] == 0)} {
  456.     if {$upDown eq "down"} {
  457. MbPost $new $rootx $rooty
  458.     } else {
  459. MbEnter $new
  460.     }
  461. }
  462.     }
  463. }
  464. # ::tk::MbButtonUp --
  465. # This procedure is invoked to handle button 1 releases for menubuttons.
  466. # If the release happens inside the menubutton then leave its menu
  467. # posted with element 0 activated.  Otherwise, unpost the menu.
  468. #
  469. # Arguments:
  470. # w - The name of the menubutton widget.
  471. proc ::tk::MbButtonUp w {
  472.     variable ::tk::Priv
  473.     global tcl_platform
  474.     set menu [$w cget -menu]
  475.     set tearoff [expr {[tk windowingsystem] eq "x11" || 
  476.     ($menu ne "" && [$menu cget -type] eq "tearoff")}]
  477.     if {($tearoff != 0) && $Priv(postedMb) eq $w 
  478.     && $Priv(inMenubutton) eq $w} {
  479. MenuFirstEntry [$Priv(postedMb) cget -menu]
  480.     } else {
  481. MenuUnpost {}
  482.     }
  483. }
  484. # ::tk::MenuMotion --
  485. # This procedure is called to handle mouse motion events for menus.
  486. # It does two things.  First, it resets the active element in the
  487. # menu, if the mouse is over the menu.  Second, if a mouse button
  488. # is down, it posts and unposts cascade entries to match the mouse
  489. # position.
  490. #
  491. # Arguments:
  492. # menu - The menu window.
  493. # x - The x position of the mouse.
  494. # y - The y position of the mouse.
  495. # state - Modifier state (tells whether buttons are down).
  496. proc ::tk::MenuMotion {menu x y state} {
  497.     variable ::tk::Priv
  498.     if {$menu eq $Priv(window)} {
  499. if {[$menu cget -type] eq "menubar"} {
  500.     if {[info exists Priv(focus)] && $menu ne $Priv(focus)} {
  501. $menu activate @$x,$y
  502. GenerateMenuSelect $menu
  503.     }
  504. } else {
  505.     $menu activate @$x,$y
  506.     GenerateMenuSelect $menu
  507. }
  508.     }
  509.     if {($state & 0x1f00) != 0} {
  510. $menu postcascade active
  511.     }
  512. }
  513. # ::tk::MenuButtonDown --
  514. # Handles button presses in menus.  There are a couple of tricky things
  515. # here:
  516. # 1. Change the posted cascade entry (if any) to match the mouse position.
  517. # 2. If there is a posted menubutton, must grab to the menubutton;  this
  518. #    overrrides the implicit grab on button press, so that the menu
  519. #    button can track mouse motions over other menubuttons and change
  520. #    the posted menu.
  521. # 3. If there's no posted menubutton (e.g. because we're a torn-off menu
  522. #    or one of its descendants) must grab to the top-level menu so that
  523. #    we can track mouse motions across the entire menu hierarchy.
  524. #
  525. # Arguments:
  526. # menu - The menu window.
  527. proc ::tk::MenuButtonDown menu {
  528.     variable ::tk::Priv
  529.     global tcl_platform
  530.     if {![winfo viewable $menu]} {
  531.         return
  532.     }
  533.     $menu postcascade active
  534.     if {$Priv(postedMb) ne "" && [winfo viewable $Priv(postedMb)]} {
  535. grab -global $Priv(postedMb)
  536.     } else {
  537. while {[$menu cget -type] eq "normal" 
  538. && [winfo class [winfo parent $menu]] eq "Menu" 
  539. && [winfo ismapped [winfo parent $menu]]} {
  540.     set menu [winfo parent $menu]
  541. }
  542. if {$Priv(menuBar) eq ""} {
  543.     set Priv(menuBar) $menu
  544.     set Priv(cursor) [$menu cget -cursor]
  545.     $menu configure -cursor arrow
  546.         }
  547. # Don't update grab information if the grab window isn't changing.
  548. # Otherwise, we'll get an error when we unpost the menus and
  549. # restore the grab, since the old grab window will not be viewable
  550. # anymore.
  551. if {$menu ne [grab current $menu]} {
  552.     SaveGrabInfo $menu
  553. }
  554. # Must re-grab even if the grab window hasn't changed, in order
  555. # to release the implicit grab from the button press.
  556. if {[tk windowingsystem] eq "x11"} {
  557.     grab -global $menu
  558. }
  559.     }
  560. }
  561. # ::tk::MenuLeave --
  562. # This procedure is invoked to handle Leave events for a menu.  It
  563. # deactivates everything unless the active element is a cascade element
  564. # and the mouse is now over the submenu.
  565. #
  566. # Arguments:
  567. # menu - The menu window.
  568. # rootx, rooty - Root coordinates of mouse.
  569. # state - Modifier state.
  570. proc ::tk::MenuLeave {menu rootx rooty state} {
  571.     variable ::tk::Priv
  572.     set Priv(window) {}
  573.     if {[$menu index active] eq "none"} {
  574. return
  575.     }
  576.     if {[$menu type active] eq "cascade" 
  577.     && [winfo containing $rootx $rooty] eq [$menu entrycget active -menu]} {
  578. return
  579.     }
  580.     $menu activate none
  581.     GenerateMenuSelect $menu
  582. }
  583. # ::tk::MenuInvoke --
  584. # This procedure is invoked when button 1 is released over a menu.
  585. # It invokes the appropriate menu action and unposts the menu if
  586. # it came from a menubutton.
  587. #
  588. # Arguments:
  589. # w - Name of the menu widget.
  590. # buttonRelease - 1 means this procedure is called because of
  591. # a button release;  0 means because of keystroke.
  592. proc ::tk::MenuInvoke {w buttonRelease} {
  593.     variable ::tk::Priv
  594.     if {$buttonRelease && $Priv(window) eq ""} {
  595. # Mouse was pressed over a menu without a menu button, then
  596. # dragged off the menu (possibly with a cascade posted) and
  597. # released.  Unpost everything and quit.
  598. $w postcascade none
  599. $w activate none
  600. event generate $w <<MenuSelect>>
  601. MenuUnpost $w
  602. return
  603.     }
  604.     if {[$w type active] eq "cascade"} {
  605. $w postcascade active
  606. set menu [$w entrycget active -menu]
  607. MenuFirstEntry $menu
  608.     } elseif {[$w type active] eq "tearoff"} {
  609. ::tk::TearOffMenu $w
  610. MenuUnpost $w
  611.     } elseif {[$w cget -type] eq "menubar"} {
  612. $w postcascade none
  613. set active [$w index active]
  614. set isCascade [string equal [$w type $active] "cascade"]
  615. # Only de-activate the active item if it's a cascade; this prevents
  616. # the annoying "activation flicker" you otherwise get with 
  617. # checkbuttons/commands/etc. on menubars
  618. if { $isCascade } {
  619.     $w activate none
  620.     event generate $w <<MenuSelect>>
  621. }
  622. MenuUnpost $w
  623. # If the active item is not a cascade, invoke it.  This enables
  624. # the use of checkbuttons/commands/etc. on menubars (which is legal,
  625. # but not recommended)
  626. if { !$isCascade } {
  627.     uplevel #0 [list $w invoke $active]
  628. }
  629.     } else {
  630. set active [$w index active]
  631. if {$Priv(popup) eq "" || $active ne "none"} {
  632.     MenuUnpost $w
  633. }
  634. uplevel #0 [list $w invoke active]
  635.     }
  636. }
  637. # ::tk::MenuEscape --
  638. # This procedure is invoked for the Cancel (or Escape) key.  It unposts
  639. # the given menu and, if it is the top-level menu for a menu button,
  640. # unposts the menu button as well.
  641. #
  642. # Arguments:
  643. # menu - Name of the menu window.
  644. proc ::tk::MenuEscape menu {
  645.     set parent [winfo parent $menu]
  646.     if {[winfo class $parent] ne "Menu"} {
  647. MenuUnpost $menu
  648.     } elseif {[$parent cget -type] eq "menubar"} {
  649. MenuUnpost $menu
  650. RestoreOldGrab
  651.     } else {
  652. MenuNextMenu $menu left
  653.     }
  654. }
  655. # The following routines handle arrow keys. Arrow keys behave
  656. # differently depending on whether the menu is a menu bar or not.
  657. proc ::tk::MenuUpArrow {menu} {
  658.     if {[$menu cget -type] eq "menubar"} {
  659. MenuNextMenu $menu left
  660.     } else {
  661. MenuNextEntry $menu -1
  662.     }
  663. }
  664. proc ::tk::MenuDownArrow {menu} {
  665.     if {[$menu cget -type] eq "menubar"} {
  666. MenuNextMenu $menu right
  667.     } else {
  668. MenuNextEntry $menu 1
  669.     }
  670. }
  671. proc ::tk::MenuLeftArrow {menu} {
  672.     if {[$menu cget -type] eq "menubar"} {
  673. MenuNextEntry $menu -1
  674.     } else {
  675. MenuNextMenu $menu left
  676.     }
  677. }
  678. proc ::tk::MenuRightArrow {menu} {
  679.     if {[$menu cget -type] eq "menubar"} {
  680. MenuNextEntry $menu 1
  681.     } else {
  682. MenuNextMenu $menu right
  683.     }
  684. }
  685. # ::tk::MenuNextMenu --
  686. # This procedure is invoked to handle "left" and "right" traversal
  687. # motions in menus.  It traverses to the next menu in a menu bar,
  688. # or into or out of a cascaded menu.
  689. #
  690. # Arguments:
  691. # menu - The menu that received the keyboard
  692. # event.
  693. # direction - Direction in which to move: "left" or "right"
  694. proc ::tk::MenuNextMenu {menu direction} {
  695.     variable ::tk::Priv
  696.     # First handle traversals into and out of cascaded menus.
  697.     if {$direction eq "right"} {
  698. set count 1
  699. set parent [winfo parent $menu]
  700. set class [winfo class $parent]
  701. if {[$menu type active] eq "cascade"} {
  702.     $menu postcascade active
  703.     set m2 [$menu entrycget active -menu]
  704.     if {$m2 ne ""} {
  705. MenuFirstEntry $m2
  706.     }
  707.     return
  708. } else {
  709.     set parent [winfo parent $menu]
  710.     while {$parent ne "."} {
  711. if {[winfo class $parent] eq "Menu" && [$parent cget -type] eq "menubar"} {
  712.     tk_menuSetFocus $parent
  713.     MenuNextEntry $parent 1
  714.     return
  715. }
  716. set parent [winfo parent $parent]
  717.     }
  718. }
  719.     } else {
  720. set count -1
  721. set m2 [winfo parent $menu]
  722. if {[winfo class $m2] eq "Menu"} {
  723.     $menu activate none
  724.     GenerateMenuSelect $menu
  725.     tk_menuSetFocus $m2
  726.     $m2 postcascade none
  727.     if {[$m2 cget -type] ne "menubar"} {
  728. return
  729.     }
  730. }
  731.     }
  732.     # Can't traverse into or out of a cascaded menu.  Go to the next
  733.     # or previous menubutton, if that makes sense.
  734.     set m2 [winfo parent $menu]
  735.     if {[winfo class $m2] eq "Menu"} {
  736. if {[$m2 cget -type] eq "menubar"} {
  737.     tk_menuSetFocus $m2
  738.     MenuNextEntry $m2 -1
  739.     return
  740. }
  741.     }
  742.     set w $Priv(postedMb)
  743.     if {$w eq ""} {
  744. return
  745.     }
  746.     set buttons [winfo children [winfo parent $w]]
  747.     set length [llength $buttons]
  748.     set i [expr {[lsearch -exact $buttons $w] + $count}]
  749.     while {1} {
  750. while {$i < 0} {
  751.     incr i $length
  752. }
  753. while {$i >= $length} {
  754.     incr i -$length
  755. }
  756. set mb [lindex $buttons $i]
  757. if {[winfo class $mb] eq "Menubutton" 
  758. && [$mb cget -state] ne "disabled" 
  759. && [$mb cget -menu] ne "" 
  760. && [[$mb cget -menu] index last] ne "none"} {
  761.     break
  762. }
  763. if {$mb eq $w} {
  764.     return
  765. }
  766. incr i $count
  767.     }
  768.     MbPost $mb
  769.     MenuFirstEntry [$mb cget -menu]
  770. }
  771. # ::tk::MenuNextEntry --
  772. # Activate the next higher or lower entry in the posted menu,
  773. # wrapping around at the ends.  Disabled entries are skipped.
  774. #
  775. # Arguments:
  776. # menu - Menu window that received the keystroke.
  777. # count - 1 means go to the next lower entry,
  778. # -1 means go to the next higher entry.
  779. proc ::tk::MenuNextEntry {menu count} {
  780.     if {[$menu index last] eq "none"} {
  781. return
  782.     }
  783.     set length [expr {[$menu index last]+1}]
  784.     set quitAfter $length
  785.     set active [$menu index active]
  786.     if {$active eq "none"} {
  787. set i 0
  788.     } else {
  789. set i [expr {$active + $count}]
  790.     }
  791.     while {1} {
  792. if {$quitAfter <= 0} {
  793.     # We've tried every entry in the menu.  Either there are
  794.     # none, or they're all disabled.  Just give up.
  795.     return
  796. }
  797. while {$i < 0} {
  798.     incr i $length
  799. }
  800. while {$i >= $length} {
  801.     incr i -$length
  802. }
  803. if {[catch {$menu entrycget $i -state} state] == 0} {
  804.     if {$state ne "disabled" && 
  805.     ($i!=0 || [$menu cget -type] ne "tearoff" 
  806.     || [$menu type 0] ne "tearoff")} {
  807. break
  808.     }
  809. }
  810. if {$i == $active} {
  811.     return
  812. }
  813. incr i $count
  814. incr quitAfter -1
  815.     }
  816.     $menu activate $i
  817.     GenerateMenuSelect $menu
  818.     if {[$menu type $i] eq "cascade" && [$menu cget -type] eq "menubar"} {
  819. set cascade [$menu entrycget $i -menu]
  820. if {$cascade ne ""} {
  821.     # Here we auto-post a cascade.  This is necessary when
  822.     # we traverse left/right in the menubar, but undesirable when
  823.     # we traverse up/down in a menu.
  824.     $menu postcascade $i
  825.     MenuFirstEntry $cascade
  826. }
  827.     }
  828. }
  829. # ::tk::MenuFind --
  830. # This procedure searches the entire window hierarchy under w for
  831. # a menubutton that isn't disabled and whose underlined character
  832. # is "char" or an entry in a menubar that isn't disabled and whose
  833. # underlined character is "char".
  834. # It returns the name of that window, if found, or an
  835. # empty string if no matching window was found.  If "char" is an
  836. # empty string then the procedure returns the name of the first
  837. # menubutton found that isn't disabled.
  838. #
  839. # Arguments:
  840. # w - Name of window where key was typed.
  841. # char - Underlined character to search for;
  842. # may be either upper or lower case, and
  843. # will match either upper or lower case.
  844. proc ::tk::MenuFind {w char} {
  845.     set char [string tolower $char]
  846.     set windowlist [winfo child $w]
  847.     foreach child $windowlist {
  848. # Don't descend into other toplevels.
  849.         if {[winfo toplevel $w] ne [winfo toplevel $child]} {
  850.     continue
  851. }
  852. if {[winfo class $child] eq "Menu" && [$child cget -type] eq "menubar"} {
  853.     if {$char eq ""} {
  854. return $child
  855.     }
  856.     set last [$child index last]
  857.     for {set i [$child cget -tearoff]} {$i <= $last} {incr i} {
  858. if {[$child type $i] eq "separator"} {
  859.     continue
  860. }
  861. set char2 [string index [$child entrycget $i -label] 
  862. [$child entrycget $i -underline]]
  863. if {$char eq [string tolower $char2] || $char eq ""} {
  864.     if {[$child entrycget $i -state] ne "disabled"} {
  865. return $child
  866.     }
  867. }
  868.     }
  869. }
  870.     }
  871.     foreach child $windowlist {
  872. # Don't descend into other toplevels.
  873.         if {[winfo toplevel $w] ne [winfo toplevel $child]} {
  874.     continue
  875. }
  876. switch [winfo class $child] {
  877.     Menubutton {
  878. set char2 [string index [$child cget -text] 
  879. [$child cget -underline]]
  880. if {$char eq [string tolower $char2] || $char eq ""} {
  881.     if {[$child cget -state] ne "disabled"} {
  882. return $child
  883.     }
  884. }
  885.     }
  886.     default {
  887. set match [MenuFind $child $char]
  888. if {$match ne ""} {
  889.     return $match
  890. }
  891.     }
  892. }
  893.     }
  894.     return {}
  895. }
  896. # ::tk::TraverseToMenu --
  897. # This procedure implements keyboard traversal of menus.  Given an
  898. # ASCII character "char", it looks for a menubutton with that character
  899. # underlined.  If one is found, it posts the menubutton's menu
  900. #
  901. # Arguments:
  902. # w - Window in which the key was typed (selects
  903. # a toplevel window).
  904. # char - Character that selects a menu.  The case
  905. # is ignored.  If an empty string, nothing
  906. # happens.
  907. proc ::tk::TraverseToMenu {w char} {
  908.     variable ::tk::Priv
  909.     if {$char eq ""} {
  910. return
  911.     }
  912.     while {[winfo class $w] eq "Menu"} {
  913. if {[$w cget -type] eq "menubar"} {
  914.     break
  915. } elseif {$Priv(postedMb) eq ""} {
  916.     return
  917. }
  918. set w [winfo parent $w]
  919.     }
  920.     set w [MenuFind [winfo toplevel $w] $char]
  921.     if {$w ne ""} {
  922. if {[winfo class $w] eq "Menu"} {
  923.     tk_menuSetFocus $w
  924.     set Priv(window) $w
  925.     SaveGrabInfo $w
  926.     grab -global $w
  927.     TraverseWithinMenu $w $char
  928. } else {
  929.     MbPost $w
  930.     MenuFirstEntry [$w cget -menu]
  931. }
  932.     }
  933. }
  934. # ::tk::FirstMenu --
  935. # This procedure traverses to the first menubutton in the toplevel
  936. # for a given window, and posts that menubutton's menu.
  937. #
  938. # Arguments:
  939. # w - Name of a window.  Selects which toplevel
  940. # to search for menubuttons.
  941. proc ::tk::FirstMenu w {
  942.     variable ::tk::Priv
  943.     set w [MenuFind [winfo toplevel $w] ""]
  944.     if {$w ne ""} {
  945. if {[winfo class $w] eq "Menu"} {
  946.     tk_menuSetFocus $w
  947.     set Priv(window) $w
  948.     SaveGrabInfo $w
  949.     grab -global $w
  950.     MenuFirstEntry $w
  951. } else {
  952.     MbPost $w
  953.     MenuFirstEntry [$w cget -menu]
  954. }
  955.     }
  956. }
  957. # ::tk::TraverseWithinMenu
  958. # This procedure implements keyboard traversal within a menu.  It
  959. # searches for an entry in the menu that has "char" underlined.  If
  960. # such an entry is found, it is invoked and the menu is unposted.
  961. #
  962. # Arguments:
  963. # w - The name of the menu widget.
  964. # char - The character to look for;  case is
  965. # ignored.  If the string is empty then
  966. # nothing happens.
  967. proc ::tk::TraverseWithinMenu {w char} {
  968.     if {$char eq ""} {
  969. return
  970.     }
  971.     set char [string tolower $char]
  972.     set last [$w index last]
  973.     if {$last eq "none"} {
  974. return
  975.     }
  976.     for {set i 0} {$i <= $last} {incr i} {
  977. if {[catch {set char2 [string index 
  978. [$w entrycget $i -label] [$w entrycget $i -underline]]}]} {
  979.     continue
  980. }
  981. if {$char eq [string tolower $char2]} {
  982.     if {[$w type $i] eq "cascade"} {
  983. $w activate $i
  984. $w postcascade active
  985. event generate $w <<MenuSelect>>
  986. set m2 [$w entrycget $i -menu]
  987. if {$m2 ne ""} {
  988.     MenuFirstEntry $m2
  989. }
  990.     } else {
  991. MenuUnpost $w
  992. uplevel #0 [list $w invoke $i]
  993.     }
  994.     return
  995. }
  996.     }
  997. }
  998. # ::tk::MenuFirstEntry --
  999. # Given a menu, this procedure finds the first entry that isn't
  1000. # disabled or a tear-off or separator, and activates that entry.
  1001. # However, if there is already an active entry in the menu (e.g.,
  1002. # because of a previous call to tk::PostOverPoint) then the active
  1003. # entry isn't changed.  This procedure also sets the input focus
  1004. # to the menu.
  1005. #
  1006. # Arguments:
  1007. # menu - Name of the menu window (possibly empty).
  1008. proc ::tk::MenuFirstEntry menu {
  1009.     if {$menu eq ""} {
  1010. return
  1011.     }
  1012.     tk_menuSetFocus $menu
  1013.     if {[$menu index active] ne "none"} {
  1014. return
  1015.     }
  1016.     set last [$menu index last]
  1017.     if {$last eq "none"} {
  1018. return
  1019.     }
  1020.     for {set i 0} {$i <= $last} {incr i} {
  1021. if {([catch {set state [$menu entrycget $i -state]}] == 0) 
  1022. && $state ne "disabled" 
  1023. && [$menu type $i] ne "tearoff"} {
  1024.     $menu activate $i
  1025.     GenerateMenuSelect $menu
  1026.     # Only post the cascade if the current menu is a menubar;
  1027.     # otherwise, if the first entry of the cascade is a cascade,
  1028.     # we can get an annoying cascading effect resulting in a bunch of
  1029.     # menus getting posted (bug 676)
  1030.     if {[$menu type $i] eq "cascade" && [$menu cget -type] eq "menubar"} {
  1031. set cascade [$menu entrycget $i -menu]
  1032. if {$cascade ne ""} {
  1033.     $menu postcascade $i
  1034.     MenuFirstEntry $cascade
  1035. }
  1036.     }
  1037.     return
  1038. }
  1039.     }
  1040. }
  1041. # ::tk::MenuFindName --
  1042. # Given a menu and a text string, return the index of the menu entry
  1043. # that displays the string as its label.  If there is no such entry,
  1044. # return an empty string.  This procedure is tricky because some names
  1045. # like "active" have a special meaning in menu commands, so we can't
  1046. # always use the "index" widget command.
  1047. #
  1048. # Arguments:
  1049. # menu - Name of the menu widget.
  1050. # s - String to look for.
  1051. proc ::tk::MenuFindName {menu s} {
  1052.     set i ""
  1053.     if {![regexp {^active$|^last$|^none$|^[0-9]|^@} $s]} {
  1054. catch {set i [$menu index $s]}
  1055. return $i
  1056.     }
  1057.     set last [$menu index last]
  1058.     if {$last eq "none"} {
  1059. return
  1060.     }
  1061.     for {set i 0} {$i <= $last} {incr i} {
  1062. if {![catch {$menu entrycget $i -label} label]} {
  1063.     if {$label eq $s} {
  1064. return $i
  1065.     }
  1066. }
  1067.     }
  1068.     return ""
  1069. }
  1070. # ::tk::PostOverPoint --
  1071. # This procedure posts a given menu such that a given entry in the
  1072. # menu is centered over a given point in the root window.  It also
  1073. # activates the given entry.
  1074. #
  1075. # Arguments:
  1076. # menu - Menu to post.
  1077. # x, y - Root coordinates of point.
  1078. # entry - Index of entry within menu to center over (x,y).
  1079. # If omitted or specified as {}, then the menu's
  1080. # upper-left corner goes at (x,y).
  1081. proc ::tk::PostOverPoint {menu x y {entry {}}}  {
  1082.     global tcl_platform
  1083.     
  1084.     if {$entry ne ""} {
  1085. if {$entry == [$menu index last]} {
  1086.     incr y [expr {-([$menu yposition $entry] 
  1087.     + [winfo reqheight $menu])/2}]
  1088. } else {
  1089.     incr y [expr {-([$menu yposition $entry] 
  1090.     + [$menu yposition [expr {$entry+1}]])/2}]
  1091. }
  1092. incr x [expr {-[winfo reqwidth $menu]/2}]
  1093.     }
  1094.     if {$tcl_platform(platform) eq "windows"} {
  1095. # We need to fix some problems with menu posting on Windows,
  1096. # where, if the menu would overlap top or bottom of screen,
  1097. # Windows puts it in the wrong place for us.  We must also
  1098. # subtract an extra amount for half the height of the current
  1099. # entry.  To be safe we subtract an extra 10.
  1100. set yoffset [expr {[winfo screenheight $menu] 
  1101. - $y - [winfo reqheight $menu] - 10}]
  1102. if {$yoffset < 0} {
  1103.     # The bottom of the menu is offscreen, so adjust upwards
  1104.     incr y $yoffset
  1105.     if {$y < 0} { set y 0 }
  1106. }
  1107. # If we're off the top of the screen (either because we were
  1108. # originally or because we just adjusted too far upwards),
  1109. # then make the menu popup on the top edge.
  1110. if {$y < 0} {
  1111.     set y 0
  1112. }
  1113.     }
  1114.     $menu post $x $y
  1115.     if {$entry ne "" && [$menu entrycget $entry -state] ne "disabled"} {
  1116. $menu activate $entry
  1117. GenerateMenuSelect $menu
  1118.     }
  1119. }
  1120. # ::tk::SaveGrabInfo --
  1121. # Sets the variables tk::Priv(oldGrab) and tk::Priv(grabStatus) to record
  1122. # the state of any existing grab on the w's display.
  1123. #
  1124. # Arguments:
  1125. # w - Name of a window;  used to select the display
  1126. # whose grab information is to be recorded.
  1127. proc tk::SaveGrabInfo w {
  1128.     variable ::tk::Priv
  1129.     set Priv(oldGrab) [grab current $w]
  1130.     if {$Priv(oldGrab) ne ""} {
  1131. set Priv(grabStatus) [grab status $Priv(oldGrab)]
  1132.     }
  1133. }
  1134. # ::tk::RestoreOldGrab --
  1135. # Restores the grab to what it was before TkSaveGrabInfo was called.
  1136. #
  1137. proc ::tk::RestoreOldGrab {} {
  1138.     variable ::tk::Priv
  1139.     if {$Priv(oldGrab) ne ""} {
  1140.      # Be careful restoring the old grab, since it's window may not
  1141. # be visible anymore.
  1142. catch {
  1143.           if {$Priv(grabStatus) eq "global"} {
  1144. grab set -global $Priv(oldGrab)
  1145.     } else {
  1146. grab set $Priv(oldGrab)
  1147.     }
  1148. }
  1149. set Priv(oldGrab) ""
  1150.     }
  1151. }
  1152. proc ::tk_menuSetFocus {menu} {
  1153.     variable ::tk::Priv
  1154.     if {![info exists Priv(focus)] || $Priv(focus) eq ""} {
  1155. set Priv(focus) [focus]
  1156.     }
  1157.     focus $menu
  1158. }
  1159. proc ::tk::GenerateMenuSelect {menu} {
  1160.     variable ::tk::Priv
  1161.     if {$Priv(activeMenu) eq $menu && $Priv(activeItem) eq [$menu index active]} {
  1162. return
  1163.     }
  1164.     set Priv(activeMenu) $menu
  1165.     set Priv(activeItem) [$menu index active]
  1166.     event generate $menu <<MenuSelect>>
  1167. }
  1168. # ::tk_popup --
  1169. # This procedure pops up a menu and sets things up for traversing
  1170. # the menu and its submenus.
  1171. #
  1172. # Arguments:
  1173. # menu - Name of the menu to be popped up.
  1174. # x, y - Root coordinates at which to pop up the
  1175. # menu.
  1176. # entry - Index of a menu entry to center over (x,y).
  1177. # If omitted or specified as {}, then menu's
  1178. # upper-left corner goes at (x,y).
  1179. proc ::tk_popup {menu x y {entry {}}} {
  1180.     variable ::tk::Priv
  1181.     global tcl_platform
  1182.     if {$Priv(popup) ne "" || $Priv(postedMb) ne ""} {
  1183. tk::MenuUnpost {}
  1184.     }
  1185.     tk::PostOverPoint $menu $x $y $entry
  1186.     if {[tk windowingsystem] eq "x11" && [winfo viewable $menu]} {
  1187.         tk::SaveGrabInfo $menu
  1188. grab -global $menu
  1189. set Priv(popup) $menu
  1190. tk_menuSetFocus $menu
  1191.     }
  1192. }