Re: Undo/Redo in PyQt

2010-01-13 Thread David Boddie
On Wednesday 13 January 2010 02:20, Zabin wrote: > I am trying to implement the undo and redo facility in pyqt. I have > gone through some sites and was wondering whether iyou always need to > create subclasses and their definitions for the undo/redo action. My > program currently has a single win

Undo/Redo in PyQt

2010-01-12 Thread Zabin
Hey! I am trying to implement the undo and redo facility in pyqt. I have gone through some sites and was wondering whether iyou always need to create subclasses and their definitions for the undo/redo action. My program currently has a single window in which the user enters information which is us

efficient undo/redo in pyqt

2009-06-15 Thread CoolGenie
Hello, I'm writing a small component for drawing, in PyQt4. Currently I'm implementing undo/redo through Qt's framework. I create a list which contains points, lines, etc. which appear as the user draws on the screen. On every paint event the list is read, processed and drawn. This way doing is jus