Lines Matching defs:undo
12 #$ event <<undo>>
16 #$ event <<dump-undo-state>>
31 self.unbind("<<undo>>")
33 self.unbind("<<dump-undo-state>>")
36 self.bind("<<undo>>", self.undo_event)
38 self.bind("<<dump-undo-state>>", self.dump_event)
90 # undo & redo. Nested matching calls are OK, and the inner calls
94 # directly into the undo list, as if undo_block_xxx hadn't been
131 ##print "truncating undo list"
144 cmd.undo(self.delegate)
189 def undo(self, text):
231 def undo(self, text):
236 ##sys.__stderr__.write("undo: %s\n" % self)
292 def undo(self, text):
297 ##sys.__stderr__.write("undo: %s\n" % self)
328 def undo(self, text):
332 cmd.undo(text)
354 undo = Button(undowin, text="Undo", command=lambda:d.undo_event(None))
355 undo.pack(side='left')