mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
documented functions, types, constants, and variables
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19797 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
afbec3abfe
commit
eca63cb414
39 changed files with 1010 additions and 116 deletions
|
@ -36,12 +36,41 @@ enum {
|
|||
};
|
||||
|
||||
/* Public notification */
|
||||
|
||||
/**
|
||||
* Notification posted whenever [NSUndoManager] opens or closes an undo group.
|
||||
* The undo manager itself is posted, with no <em>userInfo</em> dictionary.
|
||||
*/
|
||||
GS_EXPORT NSString *NSUndoManagerCheckpointNotification;
|
||||
|
||||
/**
|
||||
* Notification posted after an [NSUndoManager] opens an undo group.
|
||||
*/
|
||||
GS_EXPORT NSString *NSUndoManagerDidOpenUndoGroupNotification;
|
||||
|
||||
/**
|
||||
* Notification posted after an [NSUndoManager] executes a redo operation.
|
||||
*/
|
||||
GS_EXPORT NSString *NSUndoManagerDidRedoChangeNotification;
|
||||
|
||||
/**
|
||||
* Notification posted after an [NSUndoManager] executes an undo operation.
|
||||
*/
|
||||
GS_EXPORT NSString *NSUndoManagerDidUndoChangeNotification;
|
||||
|
||||
/**
|
||||
* Notification posted before an [NSUndoManager] closes an undo group.
|
||||
*/
|
||||
GS_EXPORT NSString *NSUndoManagerWillCloseUndoGroupNotification;
|
||||
|
||||
/**
|
||||
* Notification posted before an [NSUndoManager] will execute a redo operation.
|
||||
*/
|
||||
GS_EXPORT NSString *NSUndoManagerWillRedoChangeNotification;
|
||||
|
||||
/**
|
||||
* Notification posted before an [NSUndoManager] will execute an undo operation.
|
||||
*/
|
||||
GS_EXPORT NSString *NSUndoManagerWillUndoChangeNotification;
|
||||
|
||||
@interface NSUndoManager: NSObject
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue