Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

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:

...
dataStream << undoStack->count(); // store number of commands

for (int i = 0; i < undoStack->count(); i++)
{
    // store each command's unique information
    dataStream << undoStack->command(i)->someMemberVariable;
}
...

Then you would use QDataStream again to deserialize the data back into QUndoCommands.

You can use QFile to handle the file management.

share|improve this answer
There are other reasons for writing to disk - if you have 500 undo commands it will ramp up the memory usage. – paulm Feb 12 at 13:26

Use Qt's serialization as described here:

Serialization with Qt

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.