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)
167 num - mouse button pressed (ButtonPress, ButtonRelease)
1069 ButtonPress, Button, Expose, Motion, ButtonRelease
1073 Leave and DETAIL is the button number for ButtonPress,
1076 <Control-Button-1> for pressing Control and mouse button 1 or
1253 # number of button: ButtonPress and ButtonRelease events only
2145 class Button(Widget):
2146 """Button widget."""
2148 """Construct a button widget with the parent MASTER.
2166 Widget.__init__(self, master, 'button', cnf, kw)
2184 """Flash the button.
2187 the button several times, alternating between active and
2188 normal colors. At the end of the flash the button is left
2190 invoked. This command is ignored if the button's state is
2196 """Invoke the command associated with the button.
2200 the button. This command is ignored if the button's state
2479 """Put the button in off-state."""
2482 """Flash the button."""
2485 """Toggle the button and invoke a command if given as resource."""
2488 """Put the button in on-state."""
2491 """Toggle the button."""
2839 """Put the button in off-state."""
2843 """Flash the button."""
2846 """Toggle the button and invoke a command if given as resource."""
2849 """Put the button in on-state."""
3548 Typically this command is associated with a mouse button
3815 class Studbutton(Button):
3823 class Tributton(Button):
3847 test = Button(root, text="Click me!",
3852 quit = Button(root, text="QUIT", command=root.destroy)