1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include "output/cairo.h"
21 #include "libpspp/assertion.h"
22 #include "libpspp/cast.h"
23 #include "libpspp/message.h"
24 #include "libpspp/pool.h"
25 #include "libpspp/start-date.h"
26 #include "libpspp/str.h"
27 #include "libpspp/string-map.h"
28 #include "libpspp/version.h"
29 #include "data/file-handle-def.h"
30 #include "output/cairo-chart.h"
31 #include "output/chart-item-provider.h"
32 #include "output/charts/boxplot.h"
33 #include "output/charts/np-plot.h"
34 #include "output/charts/piechart.h"
35 #include "output/charts/barchart.h"
36 #include "output/charts/plot-hist.h"
37 #include "output/charts/roc-chart.h"
38 #include "output/charts/spreadlevel-plot.h"
39 #include "output/charts/scree.h"
40 #include "output/charts/scatterplot.h"
41 #include "output/driver-provider.h"
42 #include "output/message-item.h"
43 #include "output/options.h"
44 #include "output/render.h"
45 #include "output/tab.h"
46 #include "output/table-item.h"
47 #include "output/table.h"
48 #include "output/text-item.h"
50 #include <cairo/cairo-pdf.h>
51 #include <cairo/cairo-ps.h>
52 #include <cairo/cairo-svg.h>
53 #include <cairo/cairo.h>
55 #include <pango/pango-font.h>
56 #include <pango/pango-layout.h>
57 #include <pango/pango.h>
58 #include <pango/pangocairo.h>
61 #include "gl/c-ctype.h"
62 #include "gl/c-strcase.h"
63 #include "gl/intprops.h"
64 #include "gl/minmax.h"
65 #include "gl/xalloc.h"
68 #define _(msgid) gettext (msgid)
70 /* This file uses TABLE_HORZ and TABLE_VERT enough to warrant abbreviating. */
74 /* The unit used for internal measurements is inch/(72 * XR_POINT).
75 (Thus, XR_POINT units represent one point.) */
76 #define XR_POINT PANGO_SCALE
78 /* Conversions to and from points. */
82 return x / (double) XR_POINT;
85 /* Conversion from 1/96" units ("pixels") to Cairo/Pango units. */
89 return x * (PANGO_SCALE * 72 / 96);
92 /* Dimensions for drawing lines in tables. */
93 #define XR_LINE_WIDTH (XR_POINT / 2) /* Width of an ordinary line. */
94 #define XR_LINE_SPACE XR_POINT /* Space between double lines. */
107 XR_FONT_PROPORTIONAL,
113 /* A font for use with Cairo. */
116 PangoFontDescription *desc;
120 /* An output item whose rendering is in progress. */
123 /* Renders as much of itself as it can on the current page. Returns true
124 if rendering is complete, false if the output item needs another
126 bool (*render) (struct xr_render_fsm *, struct xr_driver *);
128 /* Destroys the output item. */
129 void (*destroy) (struct xr_render_fsm *);
132 /* Cairo output driver. */
135 struct output_driver driver;
137 /* User parameters. */
138 struct xr_font fonts[XR_N_FONTS];
140 int width; /* Page width minus margins. */
141 int length; /* Page length minus margins and header. */
143 int left_margin; /* Left margin in inch/(72 * XR_POINT). */
144 int right_margin; /* Right margin in inch/(72 * XR_POINT). */
145 int top_margin; /* Top margin in inch/(72 * XR_POINT). */
146 int bottom_margin; /* Bottom margin in inch/(72 * XR_POINT). */
148 int line_space; /* Space between lines. */
149 int line_width; /* Width of lines. */
151 int min_break[TABLE_N_AXES]; /* Min cell size to break across pages. */
153 struct xr_color bg; /* Background color */
154 struct xr_color fg; /* Foreground color */
156 /* Internal state. */
157 struct render_params *params;
158 int char_width, char_height;
163 int page_number; /* Current page number. */
165 struct xr_render_fsm *fsm;
169 static const struct output_driver_class cairo_driver_class;
171 static void xr_driver_destroy_fsm (struct xr_driver *);
172 static void xr_driver_run_fsm (struct xr_driver *);
174 static void xr_draw_line (void *, int bb[TABLE_N_AXES][2],
175 enum render_line_style styles[TABLE_N_AXES][2],
176 struct cell_color colors[TABLE_N_AXES][2]);
177 static void xr_measure_cell_width (void *, const struct table_cell *,
179 static int xr_measure_cell_height (void *, const struct table_cell *,
181 static void xr_draw_cell (void *, const struct table_cell *, int color_idx,
182 int bb[TABLE_N_AXES][2],
183 int spill[TABLE_N_AXES][2],
184 int clip[TABLE_N_AXES][2]);
185 static int xr_adjust_break (void *, const struct table_cell *,
186 int width, int height);
188 static struct xr_render_fsm *xr_render_output_item (
189 struct xr_driver *, const struct output_item *);
191 /* Output driver basics. */
193 static struct xr_driver *
194 xr_driver_cast (struct output_driver *driver)
196 assert (driver->class == &cairo_driver_class);
197 return UP_CAST (driver, struct xr_driver, driver);
200 static struct driver_option *
201 opt (struct output_driver *d, struct string_map *options, const char *key,
202 const char *default_value)
204 return driver_option_get (d, options, key, default_value);
207 /* Parse color information specified by KEY into {RED,GREEN,BLUE}.
208 Currently, the input string must be of the form "#RRRRGGGGBBBB"
209 Future implementations might allow things like "yellow" and
210 "sky-blue-ultra-brown"
213 parse_color (struct output_driver *d, struct string_map *options,
214 const char *key, const char *default_value,
215 struct xr_color *color)
217 int red, green, blue;
218 char *string = parse_string (opt (d, options, key, default_value));
220 if (3 != sscanf (string, "#%04x%04x%04x", &red, &green, &blue))
222 /* If the parsed option string fails, then try the default value */
223 if ( 3 != sscanf (default_value, "#%04x%04x%04x", &red, &green, &blue))
225 /* ... and if that fails set everything to zero */
226 red = green = blue = 0;
232 /* Convert 16 bit ints to float */
233 color->red = red / (double) 0xFFFF;
234 color->green = green / (double) 0xFFFF;
235 color->blue = blue / (double) 0xFFFF;
238 static PangoFontDescription *
239 parse_font (const char *font, int default_size, bool bold, bool italic)
241 if (!c_strcasecmp (font, "Monospaced"))
244 PangoFontDescription *desc = pango_font_description_from_string (font);
248 /* If the font description didn't include an explicit font size, then set it
249 to DEFAULT_SIZE, which is in inch/72000 units. */
250 if (!(pango_font_description_get_set_fields (desc) & PANGO_FONT_MASK_SIZE))
251 pango_font_description_set_size (desc,
252 (default_size / 1000.0) * PANGO_SCALE);
254 pango_font_description_set_weight (desc, (bold
256 : PANGO_WEIGHT_NORMAL));
257 pango_font_description_set_style (desc, (italic
259 : PANGO_STYLE_NORMAL));
264 static PangoFontDescription *
265 parse_font_option (struct output_driver *d, struct string_map *options,
266 const char *key, const char *default_value,
267 int default_size, bool bold, bool italic)
269 char *string = parse_string (opt (d, options, key, default_value));
270 PangoFontDescription *desc = parse_font (string, default_size, bold, italic);
273 msg (MW, _("`%s': bad font specification"), string);
275 /* Fall back to DEFAULT_VALUE, which had better be a valid font
277 desc = parse_font (default_value, default_size, bold, italic);
278 assert (desc != NULL);
286 apply_options (struct xr_driver *xr, struct string_map *o)
288 struct output_driver *d = &xr->driver;
290 /* In inch/72000 units used by parse_paper_size() and parse_dimension(). */
291 int left_margin, right_margin;
292 int top_margin, bottom_margin;
293 int paper_width, paper_length;
295 int min_break[TABLE_N_AXES];
297 /* Scale factor from inch/72000 to inch/(72 * XR_POINT). */
298 const double scale = XR_POINT / 1000.;
302 for (i = 0; i < XR_N_FONTS; i++)
304 struct xr_font *font = &xr->fonts[i];
306 if (font->desc != NULL)
307 pango_font_description_free (font->desc);
310 font_size = parse_int (opt (d, o, "font-size", "10000"), 1000, 1000000);
311 xr->fonts[XR_FONT_FIXED].desc = parse_font_option
312 (d, o, "fixed-font", "monospace", font_size, false, false);
313 xr->fonts[XR_FONT_PROPORTIONAL].desc = parse_font_option (
314 d, o, "prop-font", "sans serif", font_size, false, false);
315 xr->fonts[XR_FONT_EMPHASIS].desc = parse_font_option (
316 d, o, "emph-font", "sans serif", font_size, false, true);
320 parse_color (d, o, "background-color", "#FFFFFFFFFFFF", &xr->bg);
321 parse_color (d, o, "foreground-color", "#000000000000", &xr->fg);
323 /* Get dimensions. */
324 parse_paper_size (opt (d, o, "paper-size", ""), &paper_width, &paper_length);
325 left_margin = parse_dimension (opt (d, o, "left-margin", ".5in"));
326 right_margin = parse_dimension (opt (d, o, "right-margin", ".5in"));
327 top_margin = parse_dimension (opt (d, o, "top-margin", ".5in"));
328 bottom_margin = parse_dimension (opt (d, o, "bottom-margin", ".5in"));
330 min_break[H] = parse_dimension (opt (d, o, "min-hbreak", NULL)) * scale;
331 min_break[V] = parse_dimension (opt (d, o, "min-vbreak", NULL)) * scale;
333 /* Convert to inch/(XR_POINT * 72). */
334 xr->left_margin = left_margin * scale;
335 xr->right_margin = right_margin * scale;
336 xr->top_margin = top_margin * scale;
337 xr->bottom_margin = bottom_margin * scale;
338 xr->width = (paper_width - left_margin - right_margin) * scale;
339 xr->length = (paper_length - top_margin - bottom_margin) * scale;
340 xr->min_break[H] = min_break[H] >= 0 ? min_break[H] : xr->width / 2;
341 xr->min_break[V] = min_break[V] >= 0 ? min_break[V] : xr->length / 2;
344 static struct xr_driver *
345 xr_allocate (const char *name, int device_type, struct string_map *o)
347 struct xr_driver *xr = xzalloc (sizeof *xr);
348 struct output_driver *d = &xr->driver;
350 output_driver_init (d, &cairo_driver_class, name, device_type);
352 apply_options (xr, o);
358 pango_to_xr (int pango)
360 return (XR_POINT != PANGO_SCALE
361 ? ceil (pango * (1. * XR_POINT / PANGO_SCALE))
368 return (XR_POINT != PANGO_SCALE
369 ? ceil (xr * (1. / XR_POINT * PANGO_SCALE))
374 xr_set_cairo (struct xr_driver *xr, cairo_t *cairo)
380 cairo_set_line_width (xr->cairo, xr_to_pt (XR_LINE_WIDTH));
384 for (i = 0; i < XR_N_FONTS; i++)
386 struct xr_font *font = &xr->fonts[i];
387 int char_width, char_height;
389 font->layout = pango_cairo_create_layout (cairo);
390 pango_layout_set_font_description (font->layout, font->desc);
392 pango_layout_set_text (font->layout, "0", 1);
393 pango_layout_get_size (font->layout, &char_width, &char_height);
394 xr->char_width = MAX (xr->char_width, pango_to_xr (char_width));
395 xr->char_height = MAX (xr->char_height, pango_to_xr (char_height));
398 if (xr->params == NULL)
400 xr->params = xmalloc (sizeof *xr->params);
401 xr->params->draw_line = xr_draw_line;
402 xr->params->measure_cell_width = xr_measure_cell_width;
403 xr->params->measure_cell_height = xr_measure_cell_height;
404 xr->params->adjust_break = xr_adjust_break;
405 xr->params->draw_cell = xr_draw_cell;
406 xr->params->aux = xr;
407 xr->params->size[H] = xr->width;
408 xr->params->size[V] = xr->length;
409 xr->params->font_size[H] = xr->char_width;
410 xr->params->font_size[V] = xr->char_height;
412 int lw = XR_LINE_WIDTH;
413 int ls = XR_LINE_SPACE;
414 for (i = 0; i < TABLE_N_AXES; i++)
416 xr->params->line_widths[i][RENDER_LINE_NONE] = 0;
417 xr->params->line_widths[i][RENDER_LINE_SINGLE] = lw;
418 xr->params->line_widths[i][RENDER_LINE_DASHED] = lw;
419 xr->params->line_widths[i][RENDER_LINE_THICK] = lw * 2;
420 xr->params->line_widths[i][RENDER_LINE_THIN] = lw / 2;
421 xr->params->line_widths[i][RENDER_LINE_DOUBLE] = 2 * lw + ls;
424 for (i = 0; i < TABLE_N_AXES; i++)
425 xr->params->min_break[i] = xr->min_break[i];
426 xr->params->supports_margins = true;
429 cairo_set_source_rgb (xr->cairo, xr->fg.red, xr->fg.green, xr->fg.blue);
434 static struct output_driver *
435 xr_create (const char *file_name, enum settings_output_devices device_type,
436 struct string_map *o, enum xr_output_type file_type)
438 enum { MIN_WIDTH = 3, MIN_LENGTH = 3 };
439 struct xr_driver *xr;
440 cairo_surface_t *surface;
441 cairo_status_t status;
442 double width_pt, length_pt;
444 xr = xr_allocate (file_name, device_type, o);
446 width_pt = xr_to_pt (xr->width + xr->left_margin + xr->right_margin);
447 length_pt = xr_to_pt (xr->length + xr->top_margin + xr->bottom_margin);
448 if (file_type == XR_PDF)
449 surface = cairo_pdf_surface_create (file_name, width_pt, length_pt);
450 else if (file_type == XR_PS)
451 surface = cairo_ps_surface_create (file_name, width_pt, length_pt);
452 else if (file_type == XR_SVG)
453 surface = cairo_svg_surface_create (file_name, width_pt, length_pt);
457 status = cairo_surface_status (surface);
458 if (status != CAIRO_STATUS_SUCCESS)
460 msg (ME, _("error opening output file `%s': %s"),
461 file_name, cairo_status_to_string (status));
462 cairo_surface_destroy (surface);
466 xr->cairo = cairo_create (surface);
467 cairo_surface_destroy (surface);
469 if (!xr_set_cairo (xr, xr->cairo))
472 cairo_save (xr->cairo);
473 xr_driver_next_page (xr, xr->cairo);
475 if (xr->width / xr->char_width < MIN_WIDTH)
477 msg (ME, _("The defined page is not wide enough to hold at least %d "
478 "characters in the default font. In fact, there's only "
479 "room for %d characters."),
481 xr->width / xr->char_width);
485 if (xr->length / xr->char_height < MIN_LENGTH)
487 msg (ME, _("The defined page is not long enough to hold at least %d "
488 "lines in the default font. In fact, there's only "
489 "room for %d lines."),
491 xr->length / xr->char_height);
498 output_driver_destroy (&xr->driver);
502 static struct output_driver *
503 xr_pdf_create (struct file_handle *fh, enum settings_output_devices device_type,
504 struct string_map *o)
506 struct output_driver *od = xr_create (fh_get_file_name (fh), device_type, o, XR_PDF);
511 static struct output_driver *
512 xr_ps_create (struct file_handle *fh, enum settings_output_devices device_type,
513 struct string_map *o)
515 struct output_driver *od = xr_create (fh_get_file_name (fh), device_type, o, XR_PS);
520 static struct output_driver *
521 xr_svg_create (struct file_handle *fh, enum settings_output_devices device_type,
522 struct string_map *o)
524 struct output_driver *od = xr_create (fh_get_file_name (fh), device_type, o, XR_SVG);
530 xr_destroy (struct output_driver *driver)
532 struct xr_driver *xr = xr_driver_cast (driver);
535 xr_driver_destroy_fsm (xr);
537 if (xr->cairo != NULL)
539 cairo_status_t status;
541 cairo_surface_finish (cairo_get_target (xr->cairo));
542 status = cairo_status (xr->cairo);
543 if (status != CAIRO_STATUS_SUCCESS)
544 msg (ME, _("error drawing output for %s driver: %s"),
545 output_driver_get_name (driver),
546 cairo_status_to_string (status));
547 cairo_destroy (xr->cairo);
550 for (i = 0; i < XR_N_FONTS; i++)
552 struct xr_font *font = &xr->fonts[i];
554 if (font->desc != NULL)
555 pango_font_description_free (font->desc);
556 if (font->layout != NULL)
557 g_object_unref (font->layout);
565 xr_flush (struct output_driver *driver)
567 struct xr_driver *xr = xr_driver_cast (driver);
569 cairo_surface_flush (cairo_get_target (xr->cairo));
573 xr_submit (struct output_driver *driver, const struct output_item *output_item)
575 struct xr_driver *xr = xr_driver_cast (driver);
577 xr_driver_output_item (xr, output_item);
578 while (xr_driver_need_new_page (xr))
580 cairo_restore (xr->cairo);
581 cairo_show_page (xr->cairo);
582 cairo_save (xr->cairo);
583 xr_driver_next_page (xr, xr->cairo);
587 /* Functions for rendering a series of output items to a series of Cairo
588 contexts, with pagination.
590 Used by PSPPIRE for printing, and by the basic Cairo output driver above as
591 its underlying implementation.
593 See the big comment in cairo.h for intended usage. */
595 /* Gives new page CAIRO to XR for output. */
597 xr_driver_next_page (struct xr_driver *xr, cairo_t *cairo)
600 cairo_set_source_rgb (cairo, xr->bg.red, xr->bg.green, xr->bg.blue);
601 cairo_rectangle (cairo, 0, 0, xr->width, xr->length);
603 cairo_restore (cairo);
605 cairo_translate (cairo,
606 xr_to_pt (xr->left_margin),
607 xr_to_pt (xr->top_margin));
612 xr_driver_run_fsm (xr);
615 /* Start rendering OUTPUT_ITEM to XR. Only valid if XR is not in the middle of
616 rendering a previous output item, that is, only if xr_driver_need_new_page()
619 xr_driver_output_item (struct xr_driver *xr,
620 const struct output_item *output_item)
622 assert (xr->fsm == NULL);
623 xr->fsm = xr_render_output_item (xr, output_item);
624 xr_driver_run_fsm (xr);
627 /* Returns true if XR is in the middle of rendering an output item and needs a
628 new page to be appended using xr_driver_next_page() to make progress,
631 xr_driver_need_new_page (const struct xr_driver *xr)
633 return xr->fsm != NULL;
636 /* Returns true if the current page doesn't have any content yet. */
638 xr_driver_is_page_blank (const struct xr_driver *xr)
644 xr_driver_destroy_fsm (struct xr_driver *xr)
648 xr->fsm->destroy (xr->fsm);
654 xr_driver_run_fsm (struct xr_driver *xr)
656 if (xr->fsm != NULL && !xr->fsm->render (xr->fsm, xr))
657 xr_driver_destroy_fsm (xr);
661 xr_layout_cell (struct xr_driver *, const struct table_cell *,
662 int bb[TABLE_N_AXES][2], int clip[TABLE_N_AXES][2],
663 int *width, int *height, int *brk);
666 dump_line (struct xr_driver *xr, int x0, int y0, int x1, int y1, int style,
667 const struct cell_color *color)
669 cairo_new_path (xr->cairo);
670 cairo_set_source_rgb (xr->cairo,
671 color->r / 255.0, color->g / 255.0, color->b / 255.0);
672 cairo_set_line_width (
674 xr_to_pt (style == RENDER_LINE_THICK ? XR_LINE_WIDTH * 2
675 : style == RENDER_LINE_THIN ? XR_LINE_WIDTH / 2
677 cairo_move_to (xr->cairo, xr_to_pt (x0 + xr->x), xr_to_pt (y0 + xr->y));
678 cairo_line_to (xr->cairo, xr_to_pt (x1 + xr->x), xr_to_pt (y1 + xr->y));
679 cairo_stroke (xr->cairo);
683 dump_rectangle (struct xr_driver *xr, int x0, int y0, int x1, int y1)
685 cairo_new_path (xr->cairo);
686 cairo_set_line_width (xr->cairo, xr_to_pt (XR_LINE_WIDTH));
687 cairo_move_to (xr->cairo, xr_to_pt (x0 + xr->x), xr_to_pt (y0 + xr->y));
688 cairo_line_to (xr->cairo, xr_to_pt (x1 + xr->x), xr_to_pt (y0 + xr->y));
689 cairo_line_to (xr->cairo, xr_to_pt (x1 + xr->x), xr_to_pt (y1 + xr->y));
690 cairo_line_to (xr->cairo, xr_to_pt (x0 + xr->x), xr_to_pt (y1 + xr->y));
691 cairo_close_path (xr->cairo);
692 cairo_stroke (xr->cairo);
696 fill_rectangle (struct xr_driver *xr, int x0, int y0, int x1, int y1)
698 cairo_new_path (xr->cairo);
699 cairo_set_line_width (xr->cairo, xr_to_pt (XR_LINE_WIDTH));
700 cairo_rectangle (xr->cairo,
701 xr_to_pt (x0 + xr->x), xr_to_pt (y0 + xr->y),
702 xr_to_pt (x1 - x0), xr_to_pt (y1 - y0));
703 cairo_fill (xr->cairo);
706 /* Draws a horizontal line X0...X2 at Y if LEFT says so,
707 shortening it to X0...X1 if SHORTEN is true.
708 Draws a horizontal line X1...X3 at Y if RIGHT says so,
709 shortening it to X2...X3 if SHORTEN is true. */
711 horz_line (struct xr_driver *xr, int x0, int x1, int x2, int x3, int y,
712 enum render_line_style left, enum render_line_style right,
713 const struct cell_color *left_color,
714 const struct cell_color *right_color,
717 if (left != RENDER_LINE_NONE && right != RENDER_LINE_NONE && !shorten
718 && cell_color_equal (left_color, right_color))
719 dump_line (xr, x0, y, x3, y, left, left_color);
722 if (left != RENDER_LINE_NONE)
723 dump_line (xr, x0, y, shorten ? x1 : x2, y, left, left_color);
724 if (right != RENDER_LINE_NONE)
725 dump_line (xr, shorten ? x2 : x1, y, x3, y, right, right_color);
729 /* Draws a vertical line Y0...Y2 at X if TOP says so,
730 shortening it to Y0...Y1 if SHORTEN is true.
731 Draws a vertical line Y1...Y3 at X if BOTTOM says so,
732 shortening it to Y2...Y3 if SHORTEN is true. */
734 vert_line (struct xr_driver *xr, int y0, int y1, int y2, int y3, int x,
735 enum render_line_style top, enum render_line_style bottom,
736 const struct cell_color *top_color,
737 const struct cell_color *bottom_color,
740 if (top != RENDER_LINE_NONE && bottom != RENDER_LINE_NONE && !shorten
741 && cell_color_equal (top_color, bottom_color))
742 dump_line (xr, x, y0, x, y3, top, top_color);
745 if (top != RENDER_LINE_NONE)
746 dump_line (xr, x, y0, x, shorten ? y1 : y2, top, top_color);
747 if (bottom != RENDER_LINE_NONE)
748 dump_line (xr, x, shorten ? y2 : y1, x, y3, bottom, bottom_color);
753 xr_draw_line (void *xr_, int bb[TABLE_N_AXES][2],
754 enum render_line_style styles[TABLE_N_AXES][2],
755 struct cell_color colors[TABLE_N_AXES][2])
757 const int x0 = bb[H][0];
758 const int y0 = bb[V][0];
759 const int x3 = bb[H][1];
760 const int y3 = bb[V][1];
761 const int top = styles[H][0];
762 const int bottom = styles[H][1];
764 int start_side = render_direction_rtl();
765 int end_side = !start_side;
766 const int start_of_line = styles[V][start_side];
767 const int end_of_line = styles[V][end_side];
768 const struct cell_color *top_color = &colors[H][0];
769 const struct cell_color *bottom_color = &colors[H][1];
770 const struct cell_color *start_color = &colors[V][start_side];
771 const struct cell_color *end_color = &colors[V][end_side];
773 /* The algorithm here is somewhat subtle, to allow it to handle
774 all the kinds of intersections that we need.
776 Three additional ordinates are assigned along the x axis. The
777 first is xc, midway between x0 and x3. The others are x1 and
778 x2; for a single vertical line these are equal to xc, and for
779 a double vertical line they are the ordinates of the left and
780 right half of the double line.
782 yc, y1, and y2 are assigned similarly along the y axis.
784 The following diagram shows the coordinate system and output
785 for double top and bottom lines, single left line, and no
789 y0 ________________________
795 y1 = y2 = yc |######### # |
800 y3 |________#_____#_______|
802 struct xr_driver *xr = xr_;
804 /* Offset from center of each line in a pair of double lines. */
805 int double_line_ofs = (XR_LINE_SPACE + XR_LINE_WIDTH) / 2;
807 /* Are the lines along each axis single or double?
808 (It doesn't make sense to have different kinds of line on the
809 same axis, so we don't try to gracefully handle that case.) */
810 bool double_vert = top == RENDER_LINE_DOUBLE || bottom == RENDER_LINE_DOUBLE;
811 bool double_horz = start_of_line == RENDER_LINE_DOUBLE || end_of_line == RENDER_LINE_DOUBLE;
813 /* When horizontal lines are doubled,
814 the left-side line along y1 normally runs from x0 to x2,
815 and the right-side line along y1 from x3 to x1.
816 If the top-side line is also doubled, we shorten the y1 lines,
817 so that the left-side line runs only to x1,
818 and the right-side line only to x2.
819 Otherwise, the horizontal line at y = y1 below would cut off
820 the intersection, which looks ugly:
822 y0 ________________________
827 y1 |######### ########|
830 y2 |######################|
833 y3 |______________________|
834 It is more of a judgment call when the horizontal line is
835 single. We actually choose to cut off the line anyhow, as
836 shown in the first diagram above.
838 bool shorten_y1_lines = top == RENDER_LINE_DOUBLE;
839 bool shorten_y2_lines = bottom == RENDER_LINE_DOUBLE;
840 bool shorten_yc_line = shorten_y1_lines && shorten_y2_lines;
841 int horz_line_ofs = double_vert ? double_line_ofs : 0;
842 int xc = (x0 + x3) / 2;
843 int x1 = xc - horz_line_ofs;
844 int x2 = xc + horz_line_ofs;
846 bool shorten_x1_lines = start_of_line == RENDER_LINE_DOUBLE;
847 bool shorten_x2_lines = end_of_line == RENDER_LINE_DOUBLE;
848 bool shorten_xc_line = shorten_x1_lines && shorten_x2_lines;
849 int vert_line_ofs = double_horz ? double_line_ofs : 0;
850 int yc = (y0 + y3) / 2;
851 int y1 = yc - vert_line_ofs;
852 int y2 = yc + vert_line_ofs;
855 horz_line (xr, x0, x1, x2, x3, yc, start_of_line, end_of_line,
856 start_color, end_color, shorten_yc_line);
859 horz_line (xr, x0, x1, x2, x3, y1, start_of_line, end_of_line,
860 start_color, end_color, shorten_y1_lines);
861 horz_line (xr, x0, x1, x2, x3, y2, start_of_line, end_of_line,
862 start_color, end_color, shorten_y2_lines);
866 vert_line (xr, y0, y1, y2, y3, xc, top, bottom, top_color, bottom_color,
870 vert_line (xr, y0, y1, y2, y3, x1, top, bottom, top_color, bottom_color,
872 vert_line (xr, y0, y1, y2, y3, x2, top, bottom, top_color, bottom_color,
878 xr_measure_cell_width (void *xr_, const struct table_cell *cell,
879 int *min_width, int *max_width)
881 struct xr_driver *xr = xr_;
882 int bb[TABLE_N_AXES][2];
883 int clip[TABLE_N_AXES][2];
890 clip[H][0] = clip[H][1] = clip[V][0] = clip[V][1] = 0;
891 xr_layout_cell (xr, cell, bb, clip, max_width, &h, NULL);
894 xr_layout_cell (xr, cell, bb, clip, min_width, &h, NULL);
897 *min_width += px_to_xr (cell->style->margin[H][0]
898 + cell->style->margin[H][1]);
900 *max_width += px_to_xr (cell->style->margin[H][0]
901 + cell->style->margin[H][1]);
905 xr_measure_cell_height (void *xr_, const struct table_cell *cell, int width)
907 struct xr_driver *xr = xr_;
908 int bb[TABLE_N_AXES][2];
909 int clip[TABLE_N_AXES][2];
913 bb[H][1] = width - px_to_xr (cell->style->margin[H][0]
914 + cell->style->margin[H][1]);
917 clip[H][0] = clip[H][1] = clip[V][0] = clip[V][1] = 0;
918 xr_layout_cell (xr, cell, bb, clip, &w, &h, NULL);
919 h += px_to_xr (cell->style->margin[V][0] + cell->style->margin[V][1]);
923 static void xr_clip (struct xr_driver *, int clip[TABLE_N_AXES][2]);
926 xr_draw_cell (void *xr_, const struct table_cell *cell, int color_idx,
927 int bb[TABLE_N_AXES][2],
928 int spill[TABLE_N_AXES][2],
929 int clip[TABLE_N_AXES][2])
931 struct xr_driver *xr = xr_;
934 cairo_save (xr->cairo);
935 int bg_clip[TABLE_N_AXES][2];
936 for (int axis = 0; axis < TABLE_N_AXES; axis++)
938 bg_clip[axis][0] = clip[axis][0];
939 if (bb[axis][0] == clip[axis][0])
940 bg_clip[axis][0] -= spill[axis][0];
942 bg_clip[axis][1] = clip[axis][1];
943 if (bb[axis][1] == clip[axis][1])
944 bg_clip[axis][1] += spill[axis][1];
946 xr_clip (xr, bg_clip);
947 cairo_set_source_rgb (xr->cairo,
948 cell->style->bg[color_idx].r / 255.,
949 cell->style->bg[color_idx].g / 255.,
950 cell->style->bg[color_idx].b / 255.);
952 bb[H][0] - spill[H][0],
953 bb[V][0] - spill[V][0],
954 bb[H][1] + spill[H][1],
955 bb[V][1] + spill[V][1]);
956 cairo_restore (xr->cairo);
958 cairo_save (xr->cairo);
959 cairo_set_source_rgb (xr->cairo,
960 cell->style->fg[color_idx].r / 255.,
961 cell->style->fg[color_idx].g / 255.,
962 cell->style->fg[color_idx].b / 255.);
964 for (int axis = 0; axis < TABLE_N_AXES; axis++)
966 bb[axis][0] += px_to_xr (cell->style->margin[axis][0]);
967 bb[axis][1] -= px_to_xr (cell->style->margin[axis][1]);
969 if (bb[H][0] < bb[H][1] && bb[V][0] < bb[V][1])
970 xr_layout_cell (xr, cell, bb, clip, &w, &h, &brk);
971 cairo_restore (xr->cairo);
975 xr_adjust_break (void *xr_, const struct table_cell *cell,
976 int width, int height)
978 struct xr_driver *xr = xr_;
979 int bb[TABLE_N_AXES][2];
980 int clip[TABLE_N_AXES][2];
983 if (xr_measure_cell_height (xr_, cell, width) < height)
987 bb[H][1] = width - px_to_xr (cell->style->margin[H][0]
988 + cell->style->margin[H][1]);
992 bb[V][1] = height - px_to_xr (cell->style->margin[V][0]
993 + cell->style->margin[V][1]);
994 clip[H][0] = clip[H][1] = clip[V][0] = clip[V][1] = 0;
995 xr_layout_cell (xr, cell, bb, clip, &w, &h, &brk);
1000 xr_clip (struct xr_driver *xr, int clip[TABLE_N_AXES][2])
1002 if (clip[H][1] != INT_MAX || clip[V][1] != INT_MAX)
1004 double x0 = xr_to_pt (clip[H][0] + xr->x);
1005 double y0 = xr_to_pt (clip[V][0] + xr->y);
1006 double x1 = xr_to_pt (clip[H][1] + xr->x);
1007 double y1 = xr_to_pt (clip[V][1] + xr->y);
1009 cairo_rectangle (xr->cairo, x0, y0, x1 - x0, y1 - y0);
1010 cairo_clip (xr->cairo);
1015 add_attr_with_start (PangoAttrList *list, PangoAttribute *attr, guint start_index)
1017 attr->start_index = start_index;
1018 pango_attr_list_insert (list, attr);
1022 xr_layout_cell_text (struct xr_driver *xr,
1023 const struct cell_contents *contents,
1024 const struct cell_style *style,
1025 int bb[TABLE_N_AXES][2], int clip[TABLE_N_AXES][2],
1026 int *widthp, int *brk)
1028 unsigned int options = contents->options;
1031 struct xr_font *font = (options & TAB_FIX ? &xr->fonts[XR_FONT_FIXED]
1032 : options & TAB_EMPH ? &xr->fonts[XR_FONT_EMPHASIS]
1033 : &xr->fonts[XR_FONT_PROPORTIONAL]);
1034 struct xr_font local_font;
1037 PangoFontDescription *desc = parse_font (
1039 style->font_size ? style->font_size * 1000 * 72 / 128 : 10000,
1040 style->bold, style->italic);
1043 PangoLayout *layout = pango_cairo_create_layout (xr->cairo);
1044 pango_layout_set_font_description (layout, desc);
1046 local_font.desc = desc;
1047 local_font.layout = layout;
1052 int footnote_adjustment;
1053 if (contents->n_footnotes == 0)
1054 footnote_adjustment = 0;
1055 else if (contents->n_footnotes == 1 && (options & TAB_HALIGN) == TAB_RIGHT)
1057 PangoAttrList *attrs;
1059 const char *marker = contents->footnotes[0]->marker;
1060 pango_layout_set_text (font->layout, marker, strlen (marker));
1062 attrs = pango_attr_list_new ();
1063 pango_attr_list_insert (attrs, pango_attr_rise_new (7000));
1064 pango_layout_set_attributes (font->layout, attrs);
1065 pango_attr_list_unref (attrs);
1067 pango_layout_get_size (font->layout, &w, &h);
1068 footnote_adjustment = MIN (w, px_to_xr (style->margin[H][1]));
1071 footnote_adjustment = px_to_xr (style->margin[H][1]);
1073 struct string tmp = DS_EMPTY_INITIALIZER;
1074 const char *text = contents->text;
1076 /* Deal with an oddity of the Unicode line-breaking algorithm (or perhaps in
1077 Pango's implementation of it): it will break after a period or a comma
1078 that precedes a digit, e.g. in ".000" it will break after the period.
1079 This code looks for such a situation and inserts a U+2060 WORD JOINER
1080 to prevent the break.
1082 This isn't necessary when the decimal point is between two digits
1083 (e.g. "0.000" won't be broken) or when the display width is not limited so
1084 that word wrapping won't happen.
1086 It isn't necessary to look for more than one period or comma, as would
1087 happen with grouping like 1,234,567.89 or 1.234.567,89 because if groups
1088 are present then there will always be a digit on both sides of every
1089 period and comma. */
1090 if (bb[H][1] != INT_MAX)
1092 const char *decimal = text + strcspn (text, ".,");
1094 && c_isdigit (decimal[1])
1095 && (decimal == text || !c_isdigit (decimal[-1])))
1097 ds_extend (&tmp, strlen (text) + 16);
1098 ds_put_substring (&tmp, ss_buffer (text, decimal - text + 1));
1099 ds_put_unichar (&tmp, 0x2060 /* U+2060 WORD JOINER */);
1100 ds_put_cstr (&tmp, decimal + 1);
1104 if (footnote_adjustment)
1106 bb[H][1] += footnote_adjustment;
1108 if (ds_is_empty (&tmp))
1110 ds_extend (&tmp, strlen (text) + 16);
1111 ds_put_cstr (&tmp, text);
1113 size_t initial_length = ds_length (&tmp);
1115 cell_contents_format_footnote_markers (contents, &tmp);
1116 pango_layout_set_text (font->layout, ds_cstr (&tmp), ds_length (&tmp));
1118 PangoAttrList *attrs = pango_attr_list_new ();
1119 if (style->underline)
1120 pango_attr_list_insert (attrs, pango_attr_underline_new (
1121 PANGO_UNDERLINE_SINGLE));
1122 add_attr_with_start (attrs, pango_attr_rise_new (7000), initial_length);
1123 add_attr_with_start (
1124 attrs, pango_attr_font_desc_new (font->desc), initial_length);
1125 pango_layout_set_attributes (font->layout, attrs);
1126 pango_attr_list_unref (attrs);
1130 const char *content = ds_is_empty (&tmp) ? text : ds_cstr (&tmp);
1131 pango_layout_set_text (font->layout, content, -1);
1133 if (style->underline)
1135 PangoAttrList *attrs = pango_attr_list_new ();
1136 pango_attr_list_insert (attrs, pango_attr_underline_new (
1137 PANGO_UNDERLINE_SINGLE));
1138 pango_layout_set_attributes (font->layout, attrs);
1139 pango_attr_list_unref (attrs);
1144 pango_layout_set_alignment (
1146 ((options & TAB_HALIGN) == TAB_RIGHT ? PANGO_ALIGN_RIGHT
1147 : (options & TAB_HALIGN) == TAB_LEFT ? PANGO_ALIGN_LEFT
1148 : PANGO_ALIGN_CENTER));
1149 pango_layout_set_width (
1151 bb[H][1] == INT_MAX ? -1 : xr_to_pango (bb[H][1] - bb[H][0]));
1152 pango_layout_set_wrap (font->layout, PANGO_WRAP_WORD);
1154 if (clip[H][0] != clip[H][1])
1156 cairo_save (xr->cairo);
1158 cairo_translate (xr->cairo,
1159 xr_to_pt (bb[H][0] + xr->x),
1160 xr_to_pt (bb[V][0] + xr->y));
1161 pango_cairo_show_layout (xr->cairo, font->layout);
1163 /* If enabled, this draws a blue rectangle around the extents of each
1164 line of text, which can be rather useful for debugging layout
1168 PangoLayoutIter *iter;
1169 iter = pango_layout_get_iter (font->layout);
1172 PangoRectangle extents;
1174 pango_layout_iter_get_line_extents (iter, &extents, NULL);
1175 cairo_save (xr->cairo);
1176 cairo_set_source_rgb (xr->cairo, 1, 0, 0);
1178 pango_to_xr (extents.x) - xr->x,
1179 pango_to_xr (extents.y) - xr->y,
1180 pango_to_xr (extents.x + extents.width) - xr->x,
1181 pango_to_xr (extents.y + extents.height) - xr->y);
1182 cairo_restore (xr->cairo);
1184 while (pango_layout_iter_next_line (iter));
1185 pango_layout_iter_free (iter);
1188 cairo_restore (xr->cairo);
1191 pango_layout_get_size (font->layout, &w, &h);
1192 w = pango_to_xr (w);
1193 h = pango_to_xr (h);
1196 if (bb[V][0] + h >= bb[V][1])
1198 PangoLayoutIter *iter;
1199 int best UNUSED = 0;
1201 /* Choose a breakpoint between lines instead of in the middle of one. */
1202 iter = pango_layout_get_iter (font->layout);
1205 PangoRectangle extents;
1209 pango_layout_iter_get_line_extents (iter, NULL, &extents);
1210 pango_layout_iter_get_line_yrange (iter, &y0, &y1);
1211 extents.x = pango_to_xr (extents.x);
1212 extents.y = pango_to_xr (y0);
1213 extents.width = pango_to_xr (extents.width);
1214 extents.height = pango_to_xr (y1 - y0);
1215 bottom = bb[V][0] + extents.y + extents.height;
1216 if (bottom < bb[V][1])
1218 if (brk && clip[H][0] != clip[H][1])
1226 while (pango_layout_iter_next_line (iter));
1227 pango_layout_iter_free (iter);
1229 /* If enabled, draws a green line across the chosen breakpoint, which can
1230 be useful for debugging issues with breaking. */
1233 if (best && !xr->nest)
1234 dump_line (xr, -xr->left_margin, best,
1235 xr->width + xr->right_margin, best,
1236 RENDER_LINE_SINGLE, &CELL_COLOR (0, 255, 0));
1240 pango_layout_set_attributes (font->layout, NULL);
1242 if (font == &local_font)
1244 g_object_unref (G_OBJECT (font->layout));
1245 pango_font_description_free (font->desc);
1248 return bb[V][0] + h;
1252 xr_layout_cell (struct xr_driver *xr, const struct table_cell *cell,
1253 int bb_[TABLE_N_AXES][2], int clip[TABLE_N_AXES][2],
1254 int *width, int *height, int *brk)
1256 int bb[TABLE_N_AXES][2];
1264 memcpy (bb, bb_, sizeof bb);
1266 /* If enabled, draws a blue rectangle around the cell extents, which can be
1267 useful for debugging layout. */
1270 if (clip[H][0] != clip[H][1])
1272 int offset = (xr->nest) * XR_POINT;
1274 cairo_save (xr->cairo);
1275 cairo_set_source_rgb (xr->cairo, 0, 0, 1);
1277 bb[H][0] + offset, bb[V][0] + offset,
1278 bb[H][1] - offset, bb[V][1] - offset);
1279 cairo_restore (xr->cairo);
1283 for (i = 0; i < cell->n_contents && bb[V][0] < bb[V][1]; i++)
1285 const struct cell_contents *contents = &cell->contents[i];
1291 bb[V][0] += xr->char_height / 2;
1292 if (bb[V][0] >= bb[V][1])
1298 bb[V][0] = xr_layout_cell_text (xr, contents, cell->style, bb, clip,
1301 *height = bb[V][0] - bb_[V][0];
1304 struct output_driver_factory pdf_driver_factory =
1305 { "pdf", "pspp.pdf", xr_pdf_create };
1306 struct output_driver_factory ps_driver_factory =
1307 { "ps", "pspp.ps", xr_ps_create };
1308 struct output_driver_factory svg_driver_factory =
1309 { "svg", "pspp.svg", xr_svg_create };
1311 static const struct output_driver_class cairo_driver_class =
1319 /* GUI rendering helpers. */
1323 struct output_item *item;
1326 struct render_pager *p;
1327 struct xr_driver *xr;
1330 #define CHART_WIDTH 500
1331 #define CHART_HEIGHT 375
1336 xr_driver_create (cairo_t *cairo, struct string_map *options)
1338 struct xr_driver *xr = xr_allocate ("cairo", 0, options);
1339 if (!xr_set_cairo (xr, cairo))
1341 output_driver_destroy (&xr->driver);
1347 /* Destroy XR, which should have been created with xr_driver_create(). Any
1348 cairo_t added to XR is not destroyed, because it is owned by the client. */
1350 xr_driver_destroy (struct xr_driver *xr)
1355 output_driver_destroy (&xr->driver);
1359 static struct xr_rendering *
1360 xr_rendering_create_text (struct xr_driver *xr, const char *text, cairo_t *cr)
1362 struct table_item *table_item;
1363 struct xr_rendering *r;
1365 table_item = table_item_create (table_from_string (TAB_LEFT, text),
1367 r = xr_rendering_create (xr, &table_item->output_item, cr);
1368 table_item_unref (table_item);
1374 xr_rendering_apply_options (struct xr_rendering *xr, struct string_map *o)
1376 if (is_table_item (xr->item))
1377 apply_options (xr->xr, o);
1380 struct xr_rendering *
1381 xr_rendering_create (struct xr_driver *xr, const struct output_item *item,
1384 struct xr_rendering *r = NULL;
1386 if (is_text_item (item))
1387 r = xr_rendering_create_text (xr, text_item_get_text (to_text_item (item)),
1389 else if (is_message_item (item))
1391 const struct message_item *message_item = to_message_item (item);
1392 char *s = msg_to_string (message_item_get_msg (message_item));
1393 r = xr_rendering_create_text (xr, s, cr);
1396 else if (is_table_item (item))
1398 r = xzalloc (sizeof *r);
1399 r->item = output_item_ref (item);
1401 xr_set_cairo (xr, cr);
1402 r->p = render_pager_create (xr->params, to_table_item (item));
1404 else if (is_chart_item (item))
1406 r = xzalloc (sizeof *r);
1407 r->item = output_item_ref (item);
1414 xr_rendering_destroy (struct xr_rendering *r)
1418 output_item_unref (r->item);
1419 render_pager_destroy (r->p);
1425 xr_rendering_measure (struct xr_rendering *r, int *w, int *h)
1427 if (is_table_item (r->item))
1429 *w = render_pager_get_size (r->p, H) / XR_POINT;
1430 *h = render_pager_get_size (r->p, V) / XR_POINT;
1439 static void xr_draw_chart (const struct chart_item *, cairo_t *,
1440 double x, double y, double width, double height);
1444 xr_rendering_draw_all (struct xr_rendering *r, cairo_t *cr)
1446 if (is_table_item (r->item))
1448 struct xr_driver *xr = r->xr;
1450 xr_set_cairo (xr, cr);
1452 render_pager_draw (r->p);
1456 xr_draw_chart (to_chart_item (r->item), cr,
1457 0, 0, CHART_WIDTH, CHART_HEIGHT);
1461 xr_draw_chart (const struct chart_item *chart_item, cairo_t *cr,
1462 double x, double y, double width, double height)
1464 struct xrchart_geometry geom;
1467 cairo_translate (cr, x, y + height);
1468 cairo_scale (cr, 1.0, -1.0);
1469 xrchart_geometry_init (cr, &geom, width, height);
1470 if (is_boxplot (chart_item))
1471 xrchart_draw_boxplot (chart_item, cr, &geom);
1472 else if (is_histogram_chart (chart_item))
1473 xrchart_draw_histogram (chart_item, cr, &geom);
1474 else if (is_np_plot_chart (chart_item))
1475 xrchart_draw_np_plot (chart_item, cr, &geom);
1476 else if (is_piechart (chart_item))
1477 xrchart_draw_piechart (chart_item, cr, &geom);
1478 else if (is_barchart (chart_item))
1479 xrchart_draw_barchart (chart_item, cr, &geom);
1480 else if (is_roc_chart (chart_item))
1481 xrchart_draw_roc (chart_item, cr, &geom);
1482 else if (is_scree (chart_item))
1483 xrchart_draw_scree (chart_item, cr, &geom);
1484 else if (is_spreadlevel_plot_chart (chart_item))
1485 xrchart_draw_spreadlevel (chart_item, cr, &geom);
1486 else if (is_scatterplot_chart (chart_item))
1487 xrchart_draw_scatterplot (chart_item, cr, &geom);
1490 xrchart_geometry_free (cr, &geom);
1496 xr_draw_png_chart (const struct chart_item *item,
1497 const char *file_name_template, int number,
1498 const struct xr_color *fg,
1499 const struct xr_color *bg
1502 const int width = 640;
1503 const int length = 480;
1505 cairo_surface_t *surface;
1506 cairo_status_t status;
1507 const char *number_pos;
1511 number_pos = strchr (file_name_template, '#');
1512 if (number_pos != NULL)
1513 file_name = xasprintf ("%.*s%d%s", (int) (number_pos - file_name_template),
1514 file_name_template, number, number_pos + 1);
1516 file_name = xstrdup (file_name_template);
1518 surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24, width, length);
1519 cr = cairo_create (surface);
1521 cairo_set_source_rgb (cr, bg->red, bg->green, bg->blue);
1524 cairo_set_source_rgb (cr, fg->red, fg->green, fg->blue);
1526 xr_draw_chart (item, cr, 0.0, 0.0, width, length);
1528 status = cairo_surface_write_to_png (surface, file_name);
1529 if (status != CAIRO_STATUS_SUCCESS)
1530 msg (ME, _("error writing output file `%s': %s"),
1531 file_name, cairo_status_to_string (status));
1534 cairo_surface_destroy (surface);
1539 struct xr_table_state
1541 struct xr_render_fsm fsm;
1542 struct table_item *table_item;
1543 struct render_pager *p;
1547 xr_table_render (struct xr_render_fsm *fsm, struct xr_driver *xr)
1549 struct xr_table_state *ts = UP_CAST (fsm, struct xr_table_state, fsm);
1551 while (render_pager_has_next (ts->p))
1555 used = render_pager_draw_next (ts->p, xr->length - xr->y);
1568 xr_table_destroy (struct xr_render_fsm *fsm)
1570 struct xr_table_state *ts = UP_CAST (fsm, struct xr_table_state, fsm);
1572 table_item_unref (ts->table_item);
1573 render_pager_destroy (ts->p);
1577 static struct xr_render_fsm *
1578 xr_render_table (struct xr_driver *xr, const struct table_item *table_item)
1580 struct xr_table_state *ts;
1582 ts = xmalloc (sizeof *ts);
1583 ts->fsm.render = xr_table_render;
1584 ts->fsm.destroy = xr_table_destroy;
1585 ts->table_item = table_item_ref (table_item);
1588 xr->y += xr->char_height;
1590 ts->p = render_pager_create (xr->params, table_item);
1595 struct xr_chart_state
1597 struct xr_render_fsm fsm;
1598 struct chart_item *chart_item;
1602 xr_chart_render (struct xr_render_fsm *fsm, struct xr_driver *xr)
1604 struct xr_chart_state *cs = UP_CAST (fsm, struct xr_chart_state, fsm);
1606 const int chart_height = 0.8 * (xr->length < xr->width ? xr->length : xr->width);
1608 if (xr->y > xr->length - chart_height)
1611 if (xr->cairo != NULL)
1613 xr_draw_chart (cs->chart_item, xr->cairo,
1616 xr_to_pt (xr->width),
1617 xr_to_pt (chart_height));
1619 xr->y += chart_height;
1625 xr_chart_destroy (struct xr_render_fsm *fsm)
1627 struct xr_chart_state *cs = UP_CAST (fsm, struct xr_chart_state, fsm);
1629 chart_item_unref (cs->chart_item);
1633 static struct xr_render_fsm *
1634 xr_render_chart (const struct chart_item *chart_item)
1636 struct xr_chart_state *cs;
1638 cs = xmalloc (sizeof *cs);
1639 cs->fsm.render = xr_chart_render;
1640 cs->fsm.destroy = xr_chart_destroy;
1641 cs->chart_item = chart_item_ref (chart_item);
1647 xr_eject_render (struct xr_render_fsm *fsm UNUSED, struct xr_driver *xr)
1653 xr_eject_destroy (struct xr_render_fsm *fsm UNUSED)
1655 /* Nothing to do. */
1658 static struct xr_render_fsm *
1659 xr_render_eject (void)
1661 static struct xr_render_fsm eject_renderer =
1667 return &eject_renderer;
1670 static struct xr_render_fsm *
1671 xr_create_text_renderer (struct xr_driver *xr, const struct text_item *item)
1673 struct tab_table *tab = tab_create (1, 1);
1675 struct cell_style *style = pool_alloc (tab->container, sizeof *style);
1676 *style = (struct cell_style) CELL_STYLE_INITIALIZER;
1678 style->font = pool_strdup (tab->container, item->font);
1679 style->font_size = item->font_size;
1680 style->bold = item->bold;
1681 style->italic = item->italic;
1682 style->underline = item->underline;
1683 tab->styles[0] = style;
1685 tab_text (tab, 0, 0, TAB_LEFT, text_item_get_text (item));
1686 struct table_item *table_item = table_item_create (&tab->table, NULL, NULL);
1687 struct xr_render_fsm *fsm = xr_render_table (xr, table_item);
1688 table_item_unref (table_item);
1693 static struct xr_render_fsm *
1694 xr_render_text (struct xr_driver *xr, const struct text_item *text_item)
1696 enum text_item_type type = text_item_get_type (text_item);
1700 case TEXT_ITEM_PAGE_TITLE:
1703 case TEXT_ITEM_BLANK_LINE:
1705 xr->y += xr->char_height;
1708 case TEXT_ITEM_EJECT_PAGE:
1710 return xr_render_eject ();
1714 return xr_create_text_renderer (xr, text_item);
1720 static struct xr_render_fsm *
1721 xr_render_message (struct xr_driver *xr,
1722 const struct message_item *message_item)
1724 char *s = msg_to_string (message_item_get_msg (message_item));
1725 struct text_item *item = text_item_create (TEXT_ITEM_PARAGRAPH, s);
1727 struct xr_render_fsm *fsm = xr_create_text_renderer (xr, item);
1728 text_item_unref (item);
1733 static struct xr_render_fsm *
1734 xr_render_output_item (struct xr_driver *xr,
1735 const struct output_item *output_item)
1737 if (is_table_item (output_item))
1738 return xr_render_table (xr, to_table_item (output_item));
1739 else if (is_chart_item (output_item))
1740 return xr_render_chart (to_chart_item (output_item));
1741 else if (is_text_item (output_item))
1742 return xr_render_text (xr, to_text_item (output_item));
1743 else if (is_message_item (output_item))
1744 return xr_render_message (xr, to_message_item (output_item));