The R Project SVN R-packages

Rev

Rev 1254 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1254 Rev 1397
Line 28... Line 28...
28
 *
28
 *
29
 *  Created by Simon Urbanek on 1/11/05.
29
 *  Created by Simon Urbanek on 1/11/05.
30
 */
30
 */
31
 
31
 
32
#import <Cocoa/Cocoa.h>
32
#import <Cocoa/Cocoa.h>
-
 
33
#import "Preferences.h"
33
 
34
 
34
@interface REditorTextStorage : NSTextStorage {
35
@interface REditorTextStorage : NSTextStorage <PreferencesDependent> {
35
	NSMutableAttributedString* cont;
36
	NSTextStorage* cont;
-
 
37
	int currentHighlight;
-
 
38
	BOOL showMatchingBraces; // if YES mathing braces are highlighted
-
 
39
	double braceHighlightInterval; // interval to flash brace highlighting for
-
 
40
	NSDictionary *highlightColorAttr; // attributes set while braces matching
-
 
41
	BOOL insideReplaceEdited; // this flag is set if 'edited' is being called from within replaceCharacters
-
 
42
	int pendingHilite; // set to hilite position if hilite is pending that couldn't be performed inside 'edited'
36
}
43
}
37
 
44
 
-
 
45
- (NSLayoutManager*) layoutManager;
-
 
46
- (void) resetHighlights;
-
 
47
- (void) highlightCharacter: (int) pos;
-
 
48
- (void) resetBackgroundColor: (id)sender;
-
 
49
- (void) updatePreferences;
-
 
50
 
38
@end
51
@end