The R Project SVN R-packages

Rev

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

Rev 6137 Rev 6232
Line 32... Line 32...
32
 *
32
 *
33
 */
33
 */
34
 
34
 
35
#import <Cocoa/Cocoa.h>
35
#import <Cocoa/Cocoa.h>
36
 
36
 
37
 
-
 
38
@interface RScriptEditorTextStorage : NSTextStorage
37
@interface RScriptEditorTextStorage : NSTextStorage
39
{
38
{
40
 
39
 
41
	NSTextStorage *_attributedString;
40
	NSTextStorage *_attributedString;
42
	BOOL _lineFoldingEnabled;
41
	BOOL _lineFoldingEnabled;
43
	IMP _getImp;
42
	IMP _getImp;
44
	IMP _setImp;
43
	IMP _setImp;
-
 
44
	IMP _strImp;
-
 
45
	IMP _replImp;
-
 
46
	IMP _editImp;
45
 
47
 
46
}
48
}
47
 
49
 
48
@property BOOL lineFoldingEnabled;
50
@property BOOL lineFoldingEnabled;
49
 
51