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

Lines Matching defs:Button

5 widgets are Frame, Label, Entry, Text, Canvas, Button, Radiobutton,
28 button = Tkinter.Button(frame,text="Exit",command=tk.destroy)
29 button.pack(side=BOTTOM)
144 num - mouse button pressed (ButtonPress, ButtonRelease)
1007 ButtonPress, Button, Expose, Motion, ButtonRelease
1011 Leave and DETAIL is the button number for ButtonPress,
1014 <Control-Button-1> for pressing Control and mouse button 1 or
1191 # number of button: ButtonPress and ButtonRelease events only
2085 class Button(Widget):
2086 """Button widget."""
2088 """Construct a button widget with the parent MASTER.
2106 Widget.__init__(self, master, 'button', cnf, kw)
2124 """Flash the button.
2127 the button several times, alternating between active and
2128 normal colors. At the end of the flash the button is left
2130 invoked. This command is ignored if the button's state is
2136 """Invoke the command associated with the button.
2140 the button. This command is ignored if the button's state
2419 """Put the button in off-state."""
2422 """Flash the button."""
2425 """Toggle the button and invoke a command if given as resource."""
2428 """Put the button in on-state."""
2431 """Toggle the button."""
2778 """Put the button in off-state."""
2782 """Flash the button."""
2785 """Toggle the button and invoke a command if given as resource."""
2788 """Put the button in on-state."""
3475 Typically this command is associated with a mouse button
3748 class Studbutton(Button):
3756 class Tributton(Button):
3780 test = Button(root, text="Click me!",
3785 quit = Button(root, text="QUIT", command=root.destroy)