API  1.0.0
CPUndoManager.h
Go to the documentation of this file.
1 
2 @interface CPUndoManager : CPObject
3 {
4  CPMutableArray _redoStack;
5  CPMutableArray _undoStack;
6 
7  BOOL _groupsByEvent;
8  int _disableCount;
9  int _levelsOfUndo;
10  id _currentGrouping;
11  int _state;
12 
13  id _preparedTarget;
14  id _undoManagerProxy;
15 
16  CPArray _runLoopModes;
17  BOOL _registeredWithRunLoop;
18 }
19 @end
A general mechanism for user action "undo".
Definition: CPUndoManager.h:2