Browse CVS Repository
Contents of /undmail/guiproto/MailTextFormatManager.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.2 -
( show annotations)
( download)
( as text)
Sun Feb 16 09:05:53 2003 UTC
(21 years, 1 month ago)
by footashida
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +1 -0 lines
File MIME type: text/x-chdr
*** empty log message ***
| 1 |
#import <Foundation/Foundation.h> |
| 2 |
@class TextFormatter; |
| 3 |
|
| 4 |
@interface MailTextFormatManager : NSObject { |
| 5 |
NSMutableArray *_headerFormatter; |
| 6 |
NSMutableArray *_contentsFormatter; |
| 7 |
} |
| 8 |
+(MailTextFormatManager *)sharedMailTextFormatManager; |
| 9 |
-(id)initWithHeaderFormatter:(NSArray *)headerFormatter |
| 10 |
contentsFormatter:(NSArray *)contentsFormatter; |
| 11 |
-(void)addHeaderTextFormatter:(TextFormatter *)textFormatter; |
| 12 |
-(void)addContentsTextFormatter:(TextFormatter *)textFormatter; |
| 13 |
-(void)removeHeaderTextFormatter:(TextFormatter *)textFormatter; |
| 14 |
-(void)removeContentsTextFormatter:(TextFormatter *)textFormatter; |
| 15 |
-(unsigned int)countHeaderTextFormatter; |
| 16 |
-(unsigned int)countContentsTextFormatter; |
| 17 |
-(void)insertHeaderTextFormatter:(TextFormatter *)textFormatter |
| 18 |
atIndex:(unsigned int)index; |
| 19 |
-(void)insertContentsTextFormatter:(TextFormatter *)textFormatter |
| 20 |
atIndex:(unsigned int)index; |
| 21 |
-(unsigned int)indexOfHeaderTextFormatter:(TextFormatter *)textFormatter; |
| 22 |
-(unsigned int)indexOfContentsTextFormatter:(TextFormatter *)textFormatter; |
| 23 |
-(NSAttributedString *)formatHeader:(NSString *)string; |
| 24 |
-(NSAttributedString *)formatContents:(NSString *)string; |
| 25 |
@end |
|