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 1558
Line 34... Line 34...
34
@interface RDeviceView : NSView
34
@interface RDeviceView : NSView
35
{
35
{
36
	NSWindow	*deviceWindow;
36
	NSWindow	*deviceWindow;
37
	int         deviceNum;
37
	int         deviceNum;
38
	IBOutlet id delegate;
38
	IBOutlet id delegate;
39
	NSTextStorage *devTextStorage;
-
 
40
	NSLayoutManager *devLayoutManager;
-
 
41
	NSTextContainer *devTextContainer;
-
 
42
	BOOL PDFDrawing;  
39
	BOOL PDFDrawing;  
43
}
40
}
44
 
41
 
45
/* PDFDrawing: This flag is used to force replay the displayGList of the graphic device inside the draw: method. 
42
/* PDFDrawing: This flag is used to force replay the displayGList of the graphic device inside the draw: method. 
46
			   It is used for clipboard PDF pasting and shuld be also used for saving to PDF
43
			   It is used for clipboard PDF pasting and shuld be also used for saving to PDF
47
*/
44
*/
48
 
45
 
49
- (NSTextStorage *)getDevTextStorage;
-
 
50
- (NSLayoutManager *)getDevLayoutManager;
-
 
51
- (NSTextContainer *)getDevTextContainer;
-
 
52
- (void) setDevNum: (int)dnum;
46
- (void) setDevNum: (int)dnum;
53
- (int) getDevNum;
47
- (int) getDevNum;
54
- (void) setPDFDrawing: (BOOL)flag;
48
- (void) setPDFDrawing: (BOOL)flag;
55
- (BOOL) isPDFDrawing;
49
- (BOOL) isPDFDrawing;
56
@end
50
@end