The R Project SVN R-packages

Rev

Rev 1254 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1254 Rev 6041
Line 31... Line 31...
31
 
31
 
32
#import <Cocoa/Cocoa.h>
32
#import <Cocoa/Cocoa.h>
33
 
33
 
34
@interface RConsoleTextStorage : NSTextStorage {
34
@interface RConsoleTextStorage : NSTextStorage {
35
	NSMutableAttributedString* cont;
35
	NSMutableAttributedString* cont;
-
 
36
	NSFont* theFont;
-
 
37
	NSColor* lastUsedColor;
36
}
38
}
37
 
39
 
38
- (void) insertText: (NSString*) text atIndex: (int) index withColor: (NSColor*) color;
40
- (void) insertText: (NSString*) text atIndex: (int) index withColor: (NSColor*) color;
-
 
41
- (void)setFont:(NSFont*)aFont;
39
 
42
 
40
@end
43
@end