Develop and Download Open Source Software

Browse CVS Repository

Annotation of /undmail/guiproto/MailTextFormatManager.h

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download) (as text)
Fri Feb 14 16:50:14 2003 UTC (21 years, 2 months ago) by footashida
Branch: MAIN
File MIME type: text/x-chdr
*** empty log message ***

1 footashida 1.1 #import <Foundation/Foundation.h>
2     @class TextFormatter;
3    
4     @interface MailTextFormatManager : NSObject {
5     NSMutableArray *_headerFormatter;
6     NSMutableArray *_contentsFormatter;
7     }
8     -(id)initWithHeaderFormatter:(NSArray *)headerFormatter
9     contentsFormatter:(NSArray *)contentsFormatter;
10     -(void)addHeaderTextFormatter:(TextFormatter *)textFormatter;
11     -(void)addContentsTextFormatter:(TextFormatter *)textFormatter;
12     -(void)removeHeaderTextFormatter:(TextFormatter *)textFormatter;
13     -(void)removeContentsTextFormatter:(TextFormatter *)textFormatter;
14     -(unsigned int)countHeaderTextFormatter;
15     -(unsigned int)countContentsTextFormatter;
16     -(void)insertHeaderTextFormatter:(TextFormatter *)textFormatter
17     atIndex:(unsigned int)index;
18     -(void)insertContentsTextFormatter:(TextFormatter *)textFormatter
19     atIndex:(unsigned int)index;
20     -(unsigned int)indexOfHeaderTextFormatter:(TextFormatter *)textFormatter;
21     -(unsigned int)indexOfContentsTextFormatter:(TextFormatter *)textFormatter;
22     -(NSAttributedString *)formatHeader:(NSString *)string;
23     -(NSAttributedString *)formatContents:(NSString *)string;
24     @end

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26