Browse CVS Repository
Contents of /undmail/guiproto/TextFormatter.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1 -
( show annotations)
( download)
( as text)
Fri Feb 14 16:50:14 2003 UTC
(21 years, 1 month ago)
by footashida
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-chdr
*** empty log message ***
| 1 |
#import <Cocoa/Cocoa.h> |
| 2 |
|
| 3 |
|
| 4 |
@interface TextFormatter : NSObject { |
| 5 |
NSString *_name; |
| 6 |
NSString *_pattern; |
| 7 |
NSColor *_foregroundColor; |
| 8 |
NSColor *_backgroundColor; |
| 9 |
NSFont *_font; |
| 10 |
} |
| 11 |
-(id)initWithName:(NSString *)name |
| 12 |
pattern:(NSString *)pattern |
| 13 |
foregroundColor:(NSColor *)foregroundColor |
| 14 |
backgroundColor:(NSColor *)backgroundColor |
| 15 |
font:(NSFont *)font; |
| 16 |
-(NSDictionary *)attributedDictionary; |
| 17 |
-(NSString *)name; |
| 18 |
-(NSString *)pattern; |
| 19 |
-(NSColor *)foregroundColor; |
| 20 |
-(NSColor *)backgroundColor; |
| 21 |
-(NSFont *)font; |
| 22 |
-(NSAttributedString *)formatWithAttributedString: |
| 23 |
(NSAttributedString *)attributedString; |
| 24 |
@end |
|