The R Project SVN R-packages

Rev

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

Rev 6245 Rev 6248
Line 39... Line 39...
39
#import "RegexKitLite.h"
39
#import "RegexKitLite.h"
40
#import "NoodleLineNumberView.h"
40
#import "NoodleLineNumberView.h"
41
#import "REditorToolbar.h"
41
#import "REditorToolbar.h"
42
#import "RdEditorToolbar.h"
42
#import "RdEditorToolbar.h"
43
#import "RScriptEditorTextStorage.h"
43
#import "RScriptEditorTextStorage.h"
-
 
44
#import "RDocumentWinCtrl.h"
44
 
45
 
45
 
46
 
46
#define R_TEXT_SIZE_TRIGGER_FOR_PARSING_PARTLY 10000
47
#define R_TEXT_SIZE_TRIGGER_FOR_PARSING_PARTLY 10000
47
 
48
 
48
@interface RScriptEditorTextView : RTextView <PreferencesDependent, NSTextStorageDelegate>
49
@interface RScriptEditorTextView : RTextView <PreferencesDependent, NSTextStorageDelegate>
Line 68... Line 69...
68
 
69
 
69
	NSColor *shColorCursor;
70
	NSColor *shColorCursor;
70
	NSColor *shColorBackground;
71
	NSColor *shColorBackground;
71
	NSColor *shColorCurrentLine;
72
	NSColor *shColorCurrentLine;
72
 
73
 
-
 
74
	RDocumentWinCtrl *selfDelegate;
-
 
75
 
73
	id editorToolbar;
76
	id editorToolbar;
74
 
77
 
75
	BOOL lineNumberingEnabled;
78
	BOOL lineNumberingEnabled;
76
	BOOL syntaxHighlightingEnabled;
79
	BOOL syntaxHighlightingEnabled;
77
	BOOL argsHints;
80
	BOOL argsHints;
Line 85... Line 88...
85
	double braceHighlightInterval; // interval to flash brace highlighting for
88
	double braceHighlightInterval; // interval to flash brace highlighting for
86
 
89
 
87
	RScriptEditorTextStorage *theTextStorage;
90
	RScriptEditorTextStorage *theTextStorage;
88
 
91
 
89
	NSDictionary *highlightColorAttr;
92
	NSDictionary *highlightColorAttr;
-
 
93
	
90
 
94
 
91
	IMP _foldedImp;
95
	IMP _foldedImp;
92
 
96
 
93
}
97
}
94
 
98