From: John Darrington Date: Sun, 11 Dec 2011 13:09:33 +0000 (+0100) Subject: Cairo output driver: Added options to set the foreground and background X-Git-Tag: v0.7.9~60 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=3ca145458e6a9e3657b82d7597cf3fe738d04bb2 Cairo output driver: Added options to set the foreground and background colours. --- diff --git a/doc/invoking.texi b/doc/invoking.texi index 95662f80..08a187ec 100644 --- a/doc/invoking.texi +++ b/doc/invoking.texi @@ -224,6 +224,13 @@ taken from the locale. Otherwise, if @file{/etc/papersize} exists, the default paper size is read from it. As a last resort, A4 paper is assumed. +@item -O foreground-color=@var{color} +@itemx -O background-color=@var{color} +Sets @var{color} as the color to be used for the background or foreground. +Color should be given in the format @code{#@var{RRRR}@var{GGGG}@var{BBBB}}, +where @var{RRRR}, @var{GGGG} and @var{BBBB} are 4 character hexadecimal +representations of the red, green and blue components respectively. + @item -O orientation=@var{orientation} Either @code{portrait} or @code{landscape}. Default: @code{portrait}. diff --git a/src/output/cairo.c b/src/output/cairo.c index 8d2ee24b..72cf51c3 100644 --- a/src/output/cairo.c +++ b/src/output/cairo.c @@ -131,6 +131,9 @@ struct xr_driver int line_space; /* Space between lines. */ int line_width; /* Width of lines. */ + double bg_red, bg_green, bg_blue; /* Background color */ + double fg_red, fg_green, fg_blue; /* Foreground color */ + /* Internal state. */ struct render_params *params; int char_width, char_height; @@ -177,6 +180,35 @@ opt (struct output_driver *d, struct string_map *options, const char *key, return driver_option_get (d, options, key, default_value); } +/* Parse color information specified by KEY into {RED,GREEN,BLUE}. + Currently, the input string must be of the form "#RRRRGGGGBBBB" + Future implementations might allow things like "yellow" and + "sky-blue-ultra-brown" + */ +static void +parse_color (struct output_driver *d, struct string_map *options, + const char *key, const char *default_value, + double *dred, double *dgreen, double *dblue) +{ + int red, green, blue; + char *string = parse_string (opt (d, options, key, default_value)); + + if (3 != sscanf (string, "#%04x%04x%04x", &red, &green, &blue)) + { + /* If the parsed option string fails, then try the default value */ + if ( 3 != sscanf (default_value, "#%04x%04x%04x", &red, &green, &blue)) + { + /* ... and if that fails set everything to zero */ + red = green = blue = 0; + } + } + + /* Convert 16 bit ints to float */ + *dred = red / (double) 0xFFFF; + *dgreen = green / (double) 0xFFFF; + *dblue = blue / (double) 0xFFFF; +} + static PangoFontDescription * parse_font (struct output_driver *d, struct string_map *options, const char *key, const char *default_value, @@ -234,6 +266,9 @@ xr_allocate (const char *name, int device_type, struct string_map *o) xr->line_width = XR_POINT / 2; xr->page_number = 0; + parse_color (d, o, "background-color", "#FFFFFFFFFFFF", &xr->bg_red, &xr->bg_green, &xr->bg_blue); + parse_color (d, o, "foreground-color", "#000000000000", &xr->fg_red, &xr->fg_green, &xr->fg_blue); + parse_paper_size (opt (d, o, "paper-size", ""), &paper_width, &paper_length); xr->left_margin = parse_dimension (opt (d, o, "left-margin", ".5in")); xr->right_margin = parse_dimension (opt (d, o, "right-margin", ".5in")); @@ -323,6 +358,8 @@ xr_set_cairo (struct xr_driver *xr, cairo_t *cairo) } } + cairo_set_source_rgb (xr->cairo, xr->fg_red, xr->fg_green, xr->fg_blue); + return true; } @@ -523,9 +560,17 @@ void xr_driver_next_page (struct xr_driver *xr, cairo_t *cairo) { if (cairo != NULL) - cairo_translate (cairo, - xr_to_pt (xr->left_margin), - xr_to_pt (xr->top_margin)); + { + cairo_save (cairo); + cairo_set_source_rgb (cairo, xr->bg_red, xr->bg_green, xr->bg_blue); + cairo_rectangle (cairo, 0, 0, xr->width, xr->length); + cairo_fill (cairo); + cairo_restore (cairo); + + cairo_translate (cairo, + xr_to_pt (xr->left_margin), + xr_to_pt (xr->top_margin)); + } xr->page_number++; xr->cairo = cairo; @@ -1061,12 +1106,6 @@ xr_draw_png_chart (const struct chart_item *item, surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24, width, length); cr = cairo_create (surface); - cairo_save (cr); - cairo_set_source_rgb (cr, 1.0, 1.0, 1.0); - cairo_rectangle (cr, 0, 0, width, length); - cairo_fill (cr); - cairo_restore (cr); - cairo_set_source_rgb (cr, 0.0, 0.0, 0.0); xr_draw_chart (item, cr, 0.0, 0.0, width, length);