The R Project SVN R

Rev

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

Rev 44646 Rev 45475
Line 74... Line 74...
74
# endif
74
# endif
75
#endif
75
#endif
76
 
76
 
77
 
77
 
78
Rboolean X11DeviceDriver(pDevDesc, const char*, double, double, double,
78
Rboolean X11DeviceDriver(pDevDesc, const char*, double, double, double,
79
			 double, X_COLORTYPE, int, int, int, SEXP, 
79
			 double, X_COLORTYPE, int, int, int, SEXP,
80
			 int, int, int, const char *, int, int);
80
			 int, int, int, const char *, int, int);
81
 
81
 
82
 
82
 
83
	/********************************************************/
83
	/********************************************************/
84
	/* Each driver can have its own device-specic graphical */
84
	/* Each driver can have its own device-specic graphical */
Line 96... Line 96...
96
typedef struct {
96
typedef struct {
97
    /* Graphics Parameters */
97
    /* Graphics Parameters */
98
    /* Local device copy so that we can detect */
98
    /* Local device copy so that we can detect */
99
    /* when parameter changes. */
99
    /* when parameter changes. */
100
 
100
 
101
    /* Used to detect changes */ 
101
    /* Used to detect changes */
102
    int lty;				/* Line type */
102
    int lty;				/* Line type */
103
    double lwd;
103
    double lwd;
104
    R_GE_lineend lend;
104
    R_GE_lineend lend;
105
    R_GE_linejoin ljoin;
105
    R_GE_linejoin ljoin;
106
 
106
 
Line 137... Line 137...
137
    char filename[PATH_MAX];		/* filename for a bitmap device */
137
    char filename[PATH_MAX];		/* filename for a bitmap device */
138
    int quality;			/* JPEG quality/TIFF compression */
138
    int quality;			/* JPEG quality/TIFF compression */
139
 
139
 
140
    Rboolean handleOwnEvents;           /* Flag indicating whether events will
140
    Rboolean handleOwnEvents;           /* Flag indicating whether events will
141
					   be handled externally from R (TRUE),
141
					   be handled externally from R (TRUE),
142
                                           or whether R is to handle the events
142
					   or whether R is to handle the events
143
					   (FALSE) */
143
					   (FALSE) */
144
    int res_dpi;			/* used for png/jpeg */
144
    int res_dpi;			/* used for png/jpeg */
145
    Rboolean warn_trans;		/* have we warned about translucent cols? */
145
    Rboolean warn_trans;		/* have we warned about translucent cols? */
146
    char title[101];
146
    char title[101];
147
    Rboolean onefile;
147
    Rboolean onefile;
Line 165... Line 165...
165
		     int maxcube, Rboolean setHandlers);
165
		     int maxcube, Rboolean setHandlers);
166
 
166
 
167
int Rf_setX11DeviceData(pDevDesc dd, double gamma_fac, X11Desc *xd);
167
int Rf_setX11DeviceData(pDevDesc dd, double gamma_fac, X11Desc *xd);
168
 
168
 
169
#endif
169
#endif
170
 
-