Home | History | Annotate | Download | only in idlelib

Lines Matching refs:Command

160 class Command:
206 class InsertCommand(Command):
208 # Undoable insert command
211 Command.__init__(self, index1, None, chars, tags)
264 class DeleteCommand(Command):
266 # Undoable delete command
269 Command.__init__(self, index1, index2, None, None)
300 class CommandSequence(Command):
354 undo = Button(root, text="Undo", command=lambda:d.undo_event(None))
356 redo = Button(root, text="Redo", command=lambda:d.redo_event(None))
358 dump = Button(root, text="Dump", command=lambda:d.dump_event(None))