| Inherits from | |
| Conforms to | |
| Framework | /System/Library/Frameworks/Foundation.framework |
| Availability | Available in Mac OS X v10.0 and later. |
| Companion guide | |
| Declared in | NSUndoManager.h |
| Related sample code |
NSUndoManager is a general-purpose recorder of operations for undo and redo.
You register an undo operation by specifying the object that’s changing (or the owner of that object), along with a method to invoke to revert its state, and the arguments for that method. When performing undo an NSUndoManager saves the operations reverted so that you can redo the undos. If used in a Cocoa Application Kit-based application, NSUndoManager groups all operations within a single cycle of the run loop, so that performing an undo reverts all changes that occurred during the cycle.
NSUndoManager is implemented as a class of the Foundation framework because executables other than applications might want to revert changes to their states. For example, you might have an interactive command-line tool with undo and redo commands, or there could be distributed object implementations that can revert operations “over the wire.” However, users typically see undo and redo as application features. The Application Kit implements undo and redo in its NSTextView object and makes it easy to implement it in objects along the responder chain.
– beginUndoGrouping
– endUndoGrouping
– enableUndoRegistration
– groupsByEvent
– setGroupsByEvent:
– groupingLevel
– redoMenuItemTitle
– undoMenuItemTitle
– redoMenuTitleForUndoActionName:
– undoMenuTitleForUndoActionName:
Marks the beginning of an undo group.
- (void)beginUndoGrouping
All individual undo operations before a subsequent endUndoGrouping message are grouped together and reversed by a later undo message. By default undo groups are begun automatically at the start of the event loop, but you can begin your own undo groups with this method, and nest them within other groups.
This method posts an NSUndoManagerCheckpointNotification unless a top-level undo is in progress. It posts an NSUndoManagerDidOpenUndoGroupNotification if a new group was successfully created.
NSUndoManager.hReturns a Boolean value that indicates whether the receiver has any actions to redo.
- (BOOL)canRedo
YES if the receiver has any actions to redo, otherwise NO.
Because any undo operation registered clears the redo stack, this method posts an NSUndoManagerCheckpointNotification to allow clients to apply their pending operations before testing the redo stack.
NSUndoManager.hReturns a Boolean value that indicates whether the receiver has any actions to undo.
- (BOOL)canUndo
YES if the receiver has any actions to undo, otherwise NO.
The return value does not mean you can safely invoke undo or undoNestedGroup—you may have to close open undo groups first.
NSUndoManager.hDisables the recording of undo operations, whether by registerUndoWithTarget:selector:object: or by invocation-based undo.
- (void)disableUndoRegistration
This method can be invoked multiple times by multiple clients. The enableUndoRegistration method must be invoked an equal number of times to re-enable undo registration.
NSUndoManager.hEnables the recording of undo operations.
- (void)enableUndoRegistration
Because undo registration is enabled by default, it is often used to balance a prior disableUndoRegistration message. Undo registration isn’t actually re-enabled until an enable message balances the last disable message in effect. Raises an NSInternalInconsistencyException if invoked while no disableUndoRegistration message is in effect.
NSUndoManager.hMarks the end of an undo group.
- (void)endUndoGrouping
All individual undo operations back to the matching beginUndoGrouping message are grouped together and reversed by a later undo or undoNestedGroup message. Undo groups can be nested, thus providing functionality similar to nested transactions. Raises an NSInternalInconsistencyException if there’s no beginUndoGrouping message in effect.
This method posts an NSUndoManagerCheckpointNotification and an NSUndoManagerWillCloseUndoGroupNotification just before the group is closed.
NSUndoManager.hOverrides NSObject's implementation to record the given invocation as an undo operation.
- (void)forwardInvocation:(NSInvocation *)anInvocation
The invocation to record.
Also clears the redo stack. anInvocation and its arguments that are objects are retained. You can override this method if you want different or supplementary invocation-based behavior. See “Registering Undo Operations” for more information.
Raises an NSInternalInconsistencyException if prepareWithInvocationTarget: was not invoked before this method. This method then clears the prepared invocation target. Also raises an NSInternalInconsistencyException if invoked when no undo group has been established using beginUndoGrouping. Undo groups are normally set by default, so you should rarely need to begin a top-level undo group explicitly.
NSUndoManager.hReturns the number of nested undo groups (or redo groups, if Redo was invoked last) in the current event loop.
- (NSInteger)groupingLevel
An integer indicating the number of nested groups. If 0 is returned, there is no open undo or redo group.
NSUndoManager.hReturns a Boolean value that indicates whether the receiver automatically creates undo groups around each pass of the run loop.
- (BOOL)groupsByEvent
YES if the receiver automatically creates undo groups around each pass of the run loop, otherwise NO.
The default is YES.
NSUndoManager.hReturns a Boolean value that indicates whether the receiver is in the process of performing its redo method.
- (BOOL)isRedoing
YES if the method is being performed, otherwise NO.
NSUndoManager.hReturns a Boolean value that indicates whether the receiver is in the process of performing its undo or undoNestedGroup method.
- (BOOL)isUndoing
YES if the method is being performed, otherwise NO.
NSUndoManager.hReturns a Boolean value that indicates whether the recording of undo operations is enabled.
- (BOOL)isUndoRegistrationEnabled
YES if registration is enabled; otherwise, NO.
Undo registration is enabled by default.
NSUndoManager.hReturns the maximum number of top-level undo groups the receiver holds.
- (NSUInteger)levelsOfUndo
An integer specifying the number of undo groups. A limit of 0 indicates no limit, so old undo groups are never dropped.
When ending an undo group results in the number of groups exceeding this limit, the oldest groups are dropped from the stack. The default is 0.
NSUndoManager.hPrepares the receiver for invocation-based undo with the given target as the subject of the next undo operation and returns self.
- (id)prepareWithInvocationTarget:(id)target
The target of the undo operation.
self.
See “Registering Undo Operations” for more information.
NSUndoManager.hPerforms the operations in the last group on the redo stack, if there are any, recording them on the undo stack as a single group.
- (void)redo
Raises an NSInternalInconsistencyException if the method is invoked during an undo operation.
This method posts an NSUndoManagerCheckpointNotification and NSUndoManagerWillRedoChangeNotification before it performs the redo operation, and it posts the NSUndoManagerDidRedoChangeNotification after it performs the redo operation.
NSUndoManager.hReturns the name identifying the redo action.
- (NSString *)redoActionName
The redo action name. Returns an empty string (@"") if no action name has been assigned or if there is nothing to redo.
For example, if the menu title is “Redo Delete,” the string returned is “Delete.”
NSUndoManager.hReturns the complete title of the Redo menu command, for example, “Redo Paste.”
- (NSString *)redoMenuItemTitle
The menu item title.
Returns “Redo” if no action name has been assigned or nil if there is nothing to redo.
NSUndoManager.hReturns the complete, localized title of the Redo menu command for the action identified by the given name.
- (NSString *)redoMenuTitleForUndoActionName:(NSString *)actionName
The name of the undo action.
The localized title of the redo menu item.
Override this method if you want to customize the localization behavior. This method is invoked by redoMenuItemTitle.
NSUndoManager.hRecords a single undo operation for a given target, so that when an undo is performed it is sent a specified selector with a given object as the sole argument.
- (void)registerUndoWithTarget:(id)target selector:(SEL)aSelector object:(id)anObject
The target of the undo operation.
The selector for the undo operation.
The argument sent with the selector.
Also clears the redo stack. Does not retain target, but does retain anObject. See “Registering Undo Operations” for more information.
Raises an NSInternalInconsistencyException if invoked when no undo group has been established using beginUndoGrouping. Undo groups are normally set by default, so you should rarely need to begin a top-level undo group explicitly.
NSUndoManager.hClears the undo and redo stacks and re-enables the receiver.
- (void)removeAllActions
NSUndoManager.hClears the undo and redo stacks of all operations involving the specified target as the recipient of the undo message.
- (void)removeAllActionsWithTarget:(id)target
The recipient of the undo messages to be removed.
Doesn’t re-enable the receiver if it’s disabled. An object that shares an NSUndoManager with other clients should invoke this message in its implementation of dealloc.
NSUndoManager.hReturns the modes governing the types of input handled during a cycle of the run loop.
- (NSArray *)runLoopModes
An array of string constants specifying the current run-loop modes.
By default, the sole run-loop mode is NSDefaultRunLoopMode (which excludes data from NSConnection objects).
NSUndoManager.hSets the name of the action associated with the Undo or Redo command.
- (void)setActionName:(NSString *)actionName
The name of the action.
If actionName is an empty string, the action name currently associated with the menu command is removed. There is no effect if actionName is nil.
NSUndoManager.hSets a Boolean value that specifies whether the receiver automatically groups undo operations during the run loop.
- (void)setGroupsByEvent:(BOOL)flag
If YES, the receiver creates undo groups around each pass through the run loop; if NO it doesn’t.
The default is YES. If you turn automatic grouping off, you must close groups explicitly before invoking either undo or undoNestedGroup.
NSUndoManager.hSets the maximum number of top-level undo groups the receiver holds.
- (void)setLevelsOfUndo:(NSUInteger)anInt
The maximum number of undo groups. A limit of 0 indicates no limit, so that old undo groups are never dropped.
When ending an undo group results in the number of groups exceeding this limit, the oldest groups are dropped from the stack. The default is 0.
If invoked with a limit below the prior limit, old undo groups are immediately dropped.
NSUndoManager.hSets the modes that determine the types of input handled during a cycle of the run loop.
- (void)setRunLoopModes:(NSArray *)modes
An array of string constants specifying the run-loop modes to set.
By default, the sole run-loop mode is NSDefaultRunLoopMode (which excludes data from NSConnection objects). With this method, you could limit the input to data received during a mouse-tracking session by setting the mode to NSEventTrackingRunLoopMode, or you could limit it to data received from a modal panel with NSModalPanelRunLoopMode.
NSUndoManager.hCloses the top-level undo group if necessary and invokes undoNestedGroup.
- (void)undo
This method also invokes endUndoGrouping if the nesting level is 1. Raises an NSInternalInconsistencyException if more than one undo group is open (that is, if the last group isn’t at the top level).
This method posts an NSUndoManagerCheckpointNotification.
NSUndoManager.hReturns the name identifying the undo action.
- (NSString *)undoActionName
The undo action name. Returns an empty string (@"") if no action name has been assigned or if there is nothing to undo.
For example, if the menu title is “Undo Delete,” the string returned is “Delete.”
NSUndoManager.hReturns the complete title of the Undo menu command, for example, “Undo Paste.”
- (NSString *)undoMenuItemTitle
The menu item title.
Returns “Undo” if no action name has been assigned or nil if there is nothing to undo.
NSUndoManager.hReturns the complete, localized title of the Undo menu command for the action identified by the given name.
- (NSString *)undoMenuTitleForUndoActionName:(NSString *)actionName
The name of the undo action.
The localized title of the undo menu item.
Override this method if you want to customize the localization behavior. This method is invoked by undoMenuItemTitle.
NSUndoManager.hPerforms the undo operations in the last undo group (whether top-level or nested), recording the operations on the redo stack as a single group.
- (void)undoNestedGroup
Raises an NSInternalInconsistencyException if any undo operations have been registered since the last enableUndoRegistration message.
This method posts an NSUndoManagerCheckpointNotification and NSUndoManagerWillUndoChangeNotification before it performs the undo operation, and it posts an NSUndoManagerDidUndoChangeNotification after it performs the undo operation.
NSUndoManager.hNSUndoManager provides this constant as a convenience; you can use it to compare to values returned by some NSUndoManager methods.
enum {
NSUndoCloseGroupingRunLoopOrdering = 350000
};
NSUndoCloseGroupingRunLoopOrderingUsed with NSRunLoop's performSelector:target:argument:order:modes:.
Available in Mac OS X v10.0 and later.
Declared in NSUndoManager.h.
NSUndoManager.h
Posted whenever an NSUndoManager object opens or closes an undo group (except when it opens a top-level group) and when checking the redo stack in canRedo. The notification object is the NSUndoManager object. This notification does not contain a userInfo dictionary.
NSUndoManager.h
Posted whenever an NSUndoManager object opens an undo group, which occurs in the implementation of the beginUndoGrouping method. The notification object is the NSUndoManager object. This notification does not contain a userInfo dictionary.
NSUndoManager.h
Posted just after an NSUndoManager object performs a redo operation (redo). The notification object is the NSUndoManager object. This notification does not contain a userInfo dictionary.
NSUndoManager.h
Posted just after an NSUndoManager object performs an undo operation. If you invoke undo or undoNestedGroup, this notification is posted. The notification object is the NSUndoManager object. This notification does not contain a userInfo dictionary.
NSUndoManager.h
Posted before an NSUndoManager object closes an undo group, which occurs in the implementation of the endUndoGrouping method. The notification object is the NSUndoManager object. This notification does not contain a userInfo dictionary.
NSUndoManager.h
Posted just before an NSUndoManager object performs a redo operation (redo). The notification object is the NSUndoManager object. This notification does not contain a userInfo dictionary.
NSUndoManager.h
Posted just before an NSUndoManager object performs an undo operation. If you invoke undo or undoNestedGroup, this notification is posted. The notification object is the NSUndoManager object. This notification does not contain a userInfo dictionary.
NSUndoManager.h
© 2007 Apple Inc. All Rights Reserved. (Last updated: 2007-01-18)