The R Project SVN R-packages

Rev

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

Rev 6137 Rev 6233
Line 31... Line 31...
31
 *  Created by Hans-J. Bibiko on 01/03/2012.
31
 *  Created by Hans-J. Bibiko on 01/03/2012.
32
 *
32
 *
33
 */
33
 */
34
 
34
 
35
#import <Cocoa/Cocoa.h>
35
#import <Cocoa/Cocoa.h>
36
 
-
 
-
 
36
#import "RScriptEditorTextStorage.h"
37
 
37
 
38
@interface RScriptEditorGlyphGenerator : NSGlyphGenerator <NSGlyphStorage>
38
@interface RScriptEditorGlyphGenerator : NSGlyphGenerator <NSGlyphStorage>
39
{
39
{
40
 
40
 
41
	// the original glyph generation requester
41
	// the original glyph generation requester
42
	id <NSGlyphStorage> _destination;
42
	id <NSGlyphStorage> _destination;
-
 
43
	RScriptEditorTextStorage *theTextStorage;
43
	NSGlyph nullGlyph;
44
	NSGlyph nullGlyph;
44
	IMP _attrStrImp;
45
	IMP _attrStrImp;
-
 
46
	IMP _foldImp;
-
 
47
	IMP _foldindImp;
45
 
48
 
46
}
49
}
-
 
50
 
-
 
51
- (void)setTextStorage:(RScriptEditorTextStorage*)textStorage;
-
 
52
 
47
@end
53
@end