Home | History | Annotate | Download | only in lib-tk

Lines Matching defs:Menu

2064         highlightcolor, highlightthickness, menu, relief, screen, takefocus,
2633 class Menu(Widget):
2634 """Menu widget which allows to display menu bars, pull-down menus and pop-up menus."""
2636 """Construct menu widget with the parent MASTER.
2642 Widget.__init__(self, master, 'menu', cnf, kw)
2666 """Post the menu at position X,Y with entry ENTRY."""
2676 """Add hierarchical menu item."""
2679 """Add checkbutton menu item."""
2682 """Add command menu item."""
2685 """Addd radio menu item."""
2695 """Add hierarchical menu item at INDEX."""
2698 """Add checkbutton menu item at INDEX."""
2701 """Add command menu item at INDEX."""
2704 """Addd radio menu item at INDEX."""
2710 """Delete menu items between INDEX1 and INDEX2 (included)."""
2725 """Return the resource value of an menu item for OPTION at INDEX."""
2728 """Configure a menu item at INDEX."""
2732 """Return the index of a menu item identified by INDEX."""
2737 """Invoke a menu item identified by INDEX and execute
2741 """Display a menu at position X,Y."""
2744 """Return the type of the menu item at INDEX."""
2747 menu."""
2750 """Return the y-position of the topmost pixel of the menu item at INDEX."""
3203 """OptionMenu which allows the user to select a value from a menu."""
3207 value VALUE, the other menu values VALUES and an additional
3214 menu = self.__menu = Menu(self, name="menu", tearoff=0)
3215 self.menuname = menu._w
3222 menu.add_command(label=value,
3225 menu.add_command(label=v,
3227 self["menu"] = menu
3230 if name == 'menu':
3235 """Destroy this widget and the associated menu."""