The R Project SVN R

Rev

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

Rev 44285 Rev 44346
Line 23... Line 23...
23
 
23
 
24
#ifndef R_GRAPHICSBASE_H_
24
#ifndef R_GRAPHICSBASE_H_
25
#define R_GRAPHICSBASE_H_
25
#define R_GRAPHICSBASE_H_
26
 
26
 
27
typedef struct {
27
typedef struct {
28
    GPar dp;		/* current device default parameters */
28
    GPar dp;		  /* current device default parameters: 
-
 
29
			     those which will be used at the next GNewPage */
29
    GPar gp;		/* current device current parameters */
30
    GPar gp;		  /* current device current parameters */
30
    GPar dpSaved;		/* saved device default parameters */
31
    GPar dpSaved;	  /* saved device default parameters:
31
    /*
-
 
32
     * Has the device received base output?
32
			     graphics state at the time that the currently
-
 
33
			     displayed plot was started, so we can replay
-
 
34
			     the display list.
33
     */
35
			  */
34
    Rboolean baseDevice;  
36
    Rboolean baseDevice;  /* Has the device received base output? */
35
} baseSystemState;
37
} baseSystemState;
36
 
38
 
37
void registerBase(void); /* used in devices.c */
39
void registerBase(void); /* used in devices.c */
38
void unregisterBase(void); /* used in devices.c */
40
void unregisterBase(void); /* used in devices.c */
39
 
41