PTSDFUndoManager
@interface PTSDFUndoManager : NSObject
{
}
- (PTSDFDocSnapshot*)DiscardAllSnapshots;
- (PTSDFResultSnapshot*)Undo;
- (BOOL)CanUndo;
- (PTSDFDocSnapshot*)GetNextUndoSnapshot;
- (PTSDFResultSnapshot*)Redo;
- (BOOL)CanRedo;
- (PTSDFDocSnapshot*)GetNextRedoSnapshot;
- (PTSDFResultSnapshot*)TakeSnapshot;
- (instancetype)initWithImpl: (void *)impl;
@end
Undocumented
-
Undocumented
Declaration
Objective-C
- (PTSDFDocSnapshot*)DiscardAllSnapshots;Swift
func discardAllSnapshots() -> PTSDFDocSnapshot! -
Undocumented
-
Undocumented
Declaration
Objective-C
- (BOOL)CanUndo;Swift
func canUndo() -> Bool -
Undocumented
Declaration
Objective-C
- (PTSDFDocSnapshot*)GetNextUndoSnapshot;Swift
func getNextUndoSnapshot() -> PTSDFDocSnapshot! -
Undocumented
-
Undocumented
Declaration
Objective-C
- (BOOL)CanRedo;Swift
func canRedo() -> Bool -
Undocumented
Declaration
Objective-C
- (PTSDFDocSnapshot*)GetNextRedoSnapshot;Swift
func getNextRedoSnapshot() -> PTSDFDocSnapshot! -
Undocumented
Declaration
Objective-C
- (PTSDFResultSnapshot*)TakeSnapshot;Swift
func takeSnapshot() -> PTSDFResultSnapshot! -
Undocumented
Declaration
Objective-C
- (instancetype)initWithImpl: (void *)impl;Swift
init!(impl: UnsafeMutableRawPointer!)
PTSDFUndoManager Class Reference