@interface NSTextStorage : NSMutableAttributedString
|
// Accessor Methods |
- (void)setParagraphs:(NSArray *)paragraphs;
|
- (NSArray *)paragraphs;
|
- (void)setForegroundColor:(NSColor *)color;
|
- (NSColor *)foregroundColor;
|
- (void)setCharacters:(NSArray *)characters;
|
- (NSArray *)characters;
|
- (void)setAttributeRuns:(NSArray *)attributeRuns;
|
- (NSArray *)attributeRuns;
|
- (void)setDelegate:(id)delegate;
|
- (id)delegate;
|
- (void)setWords:(NSArray *)words;
|
- (NSArray *)words;
|
- (void)setFont:(NSFont *)font;
|
- (NSFont *)font;
|
// Instance Methods |
- (void)addLayoutManager:(NSLayoutManager *)obj;
|
- (int)changeInLength;
|
- (void)edited:(unsigned)editedMask range:(NSRange)range changeInLength:(int)delta;
|
- (unsigned)editedMask;
|
- (NSRange)editedRange;
|
- (void)ensureAttributesAreFixedInRange:(NSRange)range;
|
- (BOOL)fixesAttributesLazily;
|
- (void)invalidateAttributesInRange:(NSRange)range;
|
- (NSArray *)layoutManagers;
|
- (void)processEditing;
|
- (void)removeLayoutManager:(NSLayoutManager *)obj;
|
// Methods Implemented by the Delegate |
- (void)textStorageDidProcessEditing:(NSNotification *)notification;
|
- (void)textStorageWillProcessEditing:(NSNotification *)notification;
|
// Notifications |
NSTextStorageDidProcessEditingNotification;
|
NSTextStorageWillProcessEditingNotification;
|