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

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  3. '"
  4. '" See the file "license.terms" for information on usage and redistribution
  5. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  6. '" 
  7. '" RCS: @(#) $Id: popup.n,v 1.2.26.1 2004/10/28 12:25:22 dkf Exp $
  8. '" 
  9. .so man.macros
  10. .TH tk_popup n 4.0 Tk "Tk Built-In Commands"
  11. .BS
  12. '" Note:  do not modify the .SH NAME line immediately below!
  13. .SH NAME
  14. tk_popup - Post a popup menu
  15. .SH SYNOPSIS
  16. fBtk_popup fImenu x y fR?fIentryfR?
  17. .BE
  18. .SH DESCRIPTION
  19. .PP
  20. This procedure posts a menu at a given position on the screen and
  21. configures Tk so that the menu and its cascaded children can be
  22. traversed with the mouse or the keyboard.
  23. fIMenufR is the name of a menu widget and fIxfR and fIyfR
  24. are the root coordinates at which to display the menu.
  25. If fIentryfR is omitted or an empty string, the
  26. menu's upper left corner is positioned at the given point.
  27. Otherwise fIentryfR gives the index of an entry in fImenufR and
  28. the menu will be positioned so that the entry is positioned over
  29. the given point.
  30. .SH EXAMPLE
  31. How to attach a simple popup menu to a widget.
  32. .CS
  33. # Create a menu
  34. set m [menu .popupMenu]
  35. $m add command -label "Example 1" -command bell
  36. $m add command -label "Example 2" -command bell
  37. # Create something to attach it to
  38. pack [label .l -text "Click me!"]
  39. # Arrange for the menu to pop up when the label is clicked
  40. bind .l <1> {fBtk_popupfR .popupMenu %X %Y}
  41. .CE
  42. .SH "SEE ALSO"
  43. bind(n), menu(n), tk_optionMenu(n)
  44. .SH KEYWORDS
  45. menu, popup