I am using qt's undo framework , which use qundocommand to do some application support undo. Is there an easy way I can use to save those qundocommand to a file and reload it?
|
There's no built-in way. I don't think it's very common to save the undo stack between sessions. You'll have to serialize the commands yourself by iterating through the commands on the stack, and saving each one's unique data using QDataStream. It might look something like this:
Then you would use QDataStream again to deserialize the data back into QUndoCommands. You can use QFile to handle the file management. |
||||
|
|
Use Qt's serialization as described here: Then within your QUndoCommands you can use a temp file to write the data to it: http://qt-project.org/doc/qt-4.8/qtemporaryfile.html However this might cause you an issue since each file is kept open and so on some platforms (Linux) you may run out of open file handles. To combat this you'd have to create some other factory type object which handles your commands - then this could pass in a reference to a QTemporaryFile automatically. This factory/QUndoCommand care taker object must have the same life time as the QUndoCommands. If not then the temp file will be removed from disk and your QUndoCommands will break. The other thing you can do is use QUndoCommand as a proxy to your real undo command - this means you can save quite a bit of memory since when your undo command is saved to file you can delete the internal pointer/set it to null. Then restore it later. |
|||
|
|