Undo History for the Application.
The undo history for the application. Allows access to the command history and provides the ability to create new undo accumulations from scripts being run in the Object Model.
Provided via the project attribute OMC::Project::history.
Create an Action and Undo It.
from ToonBoom import harmony
sess = harmony.session()
proj = sess.project
history = proj.history
history.begin( "Accumulate Actions" )
scn = proj.scene
top = scn.top
new_node = top.nodes.create( "PEG", "PEG_001" )
new_node = top.nodes.create( "PEG", "PEG_002" )
new_node = top.nodes.create( "PEG", "PEG_003" )
history.end()
print( "Items in History: %s"%(len(history)) )
for idx in range( len(history) ):
print( "History Item %s : %s"%(idx, history[idx]) )
history.undo()
history.undo( len(history) )
print( "Actions Executed : %s"%(history.size_executed) )
print( "Actions Unexecuted : %s"%(history.size_unexecuted) )
|
void | begin (const QString &commandName) |
| Begin accumulating actions into a single history item. This function starts the accumulation of all of the functions between it and the endUndoRedoAccum function as one command that will appear in the undo/redo list.
|
|
void | end () |
| Ends the accumulation of actions into a single history item. This function ends the accumulation all of the functions between it and the beginUndoRedoAccum function as one command that will appear in the undo/redo list.
|
|
void | cancel () |
| Cancels the currently accumulating history item. This function cancels the accumulation of undo/redo commands. No command will be added to the undo/redo list and all commands that have already been executed will be rolled-back (undone)
|
|
void | undo (unsigned int depth=1) |
| Undo events in the history. Undoes the last n operations. If n is not specified, it will be 1.
|
|
void | redo (unsigned int depth=1) |
| Redo events in the history. Redoes the last n operations. If n is not specified, it will be 1.
|
|
void | clear () |
| Clears the history. Clears the command history. The events are not undone, but the history is cleared.
|
|
virtual size_t | size () const |
| Returns the size of history items that have been performed, and not undone.
|
|