Lines Matching refs:Command
162 class Command:
207 class InsertCommand(Command):
208 # Undoable insert command
211 Command.__init__(self, index1, None, chars, tags)
264 class DeleteCommand(Command):
265 # Undoable delete command
268 Command.__init__(self, index1, index2, None, None)
300 class CommandSequence(Command):
354 undo = Button(undowin, text="Undo", command=lambda:d.undo_event(None))
356 redo = Button(undowin, text="Redo", command=lambda:d.redo_event(None))
358 dump = Button(undowin, text="Dump", command=lambda:d.dump_event(None))