Up
Authors
- Richard Frith-Macdonald (
richard@brainstorm.co.uk
)
-
Copyright: (C) 1999 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSTextStorage.h
Availability: OpenStep
Description forthcoming.
Instance Variables
Method summary
- (void)
addLayoutManager: (GSLayoutManager*)obj;
Availability: OpenStep
Description forthcoming.
- (void)
beginEditing;
Availability: OpenStep
Description forthcoming.
- (int)
changeInLength;
Availability: OpenStep
Description forthcoming.
- (id)
delegate;
Availability: OpenStep
Returns the value most recently set usiong the
-setDelegate:
method.
- (void)
edited: (unsigned)mask
range: (
NSRange)old
changeInLength: (int)delta;
Availability: OpenStep
Description forthcoming.
- (unsigned)
editedMask;
Availability: OpenStep
Description forthcoming.
- (
NSRange)
editedRange;
Availability: OpenStep
Description forthcoming.
- (void)
endEditing;
Availability: OpenStep
Description forthcoming.
- (void)
ensureAttributesAreFixedInRange: (
NSRange)range;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (BOOL)
fixesAttributesLazily;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (void)
invalidateAttributesInRange: (
NSRange)range;
Availability: MacOS-X 10.0.0
Description forthcoming.
- (
NSArray*)
layoutManagers;
Availability: OpenStep
Description forthcoming.
- (void)
processEditing;
Availability: OpenStep
Description forthcoming.
- (void)
removeLayoutManager: (GSLayoutManager*)obj;
Availability: OpenStep
Description forthcoming.
- (void)
setDelegate: (id)delegate;
Availability: OpenStep
Set the delegate (adds it as an observer for
text storage notifications) and removes any old value
(removes it as an observer).
The
delegate is not retained.
Instance Variables for NSTextStorage Class
@protected id _delegate;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected unsigned int _editCount;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected int _editedDelta;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected unsigned int _editedMask;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected NSRange _editedRange;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected NSMutableArray* _layoutManagers;
Availability: OpenStep
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
- Declared in:
- AppKit/NSTextStorage.h
Availability: OpenStep
Description forthcoming.
Method summary
- (void)
textStorageDidProcessEditing: (
NSNotification*)notification;
Availability: OpenStep
Description forthcoming.
- (void)
textStorageWillProcessEditing: (
NSNotification*)notification;
Availability: OpenStep
Description forthcoming.
Up