X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fhtml.c;h=822c6b5c9b8f9c6c6844a49760f405f26e4694d7;hb=01e1f5874de57b945a4f1eb4cd0939b96c6a3a06;hp=29a44721d455ae3f0336e1f95d52610e9c5df1c1;hpb=fa1fffd5c789d9c7875fc3bdf556eaf017cf524e;p=pspp diff --git a/src/output/html.c b/src/output/html.c index 29a44721d4..822c6b5c9b 100644 --- a/src/output/html.c +++ b/src/output/html.c @@ -39,7 +39,6 @@ #include "output/table-item.h" #include "output/text-item.h" -#include "error.h" #include "xalloc.h" #include "gettext.h" @@ -49,6 +48,9 @@ struct html_driver { struct output_driver driver; + struct xr_color fg; + struct xr_color bg; + char *file_name; char *chart_file_name; @@ -103,10 +105,13 @@ html_create (const char *file_name, enum settings_output_devices device_type, html->file = NULL; html->chart_cnt = 1; + parse_color (d, o, "background-color", "#FFFFFFFFFFFF", &html->bg); + parse_color (d, o, "foreground-color", "#000000000000", &html->fg); + html->file = fn_open (html->file_name, "w"); if (html->file == NULL) { - error (0, errno, _("error opening output file `%s'"), html->file_name); + msg_error (errno, _("error opening output file `%s'"), html->file_name); goto error; } @@ -239,7 +244,10 @@ html_submit (struct output_driver *driver, char *file_name; file_name = xr_draw_png_chart (chart_item, html->chart_file_name, - html->chart_cnt++); + html->chart_cnt++, + &html->fg, + &html->bg + ); if (file_name != NULL) { const char *title = chart_item_get_title (chart_item);