1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2004, 2009, 2010, 2011, 2014, 2015 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-chart.h"
20 #include "math/chart-geometry.h"
23 #include <cairo/cairo.h>
24 #include <pango/pango.h>
25 #include <pango/pangocairo.h>
33 #include "libpspp/assertion.h"
34 #include "math/chart-geometry.h"
35 #include "output/cairo.h"
36 #include "output/chart-item.h"
38 #include "gl/xalloc.h"
39 #include "gl/xvasprintf.h"
42 #define _(msgid) gettext (msgid)
45 xrchart_geometry_init (cairo_t *cr, struct xrchart_geometry *geom,
46 double width, double length)
48 /* Set default chart geometry. */
49 geom->axis[SCALE_ORDINATE].data_max = 0.900 * length;
50 geom->axis[SCALE_ORDINATE].data_min = 0.200 * length;
52 geom->axis[SCALE_ABSCISSA].data_min = 0.150 * width;
53 geom->axis[SCALE_ABSCISSA].data_max = 0.800 * width;
54 geom->abscissa_bottom = 0.070 * length;
55 geom->ordinate_left = 0.050 * width;
56 geom->title_bottom = 0.920 * length;
57 geom->legend_left = 0.810 * width;
58 geom->legend_right = width;
59 geom->font_size = 15.0;
60 geom->in_path = false;
64 geom->fill_colour = data_colour[0];
66 cairo_set_line_width (cr, 1.0);
68 cairo_rectangle (cr, geom->axis[SCALE_ABSCISSA].data_min, geom->axis[SCALE_ORDINATE].data_min,
69 geom->axis[SCALE_ABSCISSA].data_max - geom->axis[SCALE_ABSCISSA].data_min,
70 geom->axis[SCALE_ORDINATE].data_max - geom->axis[SCALE_ORDINATE].data_min);
75 xrchart_geometry_free (cairo_t *cr UNUSED, struct xrchart_geometry *geom)
79 for (i = 0 ; i < geom->n_datasets; ++i)
80 free (geom->dataset[i]);
84 #if ! PANGO_VERSION_CHECK (1, 22, 0)
85 int pango_layout_get_baseline (PangoLayout *layout);
87 /* Shamelessly copied from the pango source */
89 pango_layout_get_baseline (PangoLayout *layout)
93 /* XXX this is so inefficient */
94 PangoLayoutIter *iter = pango_layout_get_iter (layout);
95 baseline = pango_layout_iter_get_baseline (iter);
96 pango_layout_iter_free (iter);
103 These colours come from:
104 http://tango.freedesktop.org/static/cvs/tango-art-tools/palettes/Tango-Palette.gpl */
105 const struct xrchart_colour data_colour[XRCHART_N_COLOURS] =
107 {252, 233, 79}, /* Butter 1 */
108 {138, 226, 52}, /* Chameleon 1 */
109 {252, 175, 62}, /* Orange 1 */
110 {114, 159, 207}, /* Sky Blue 1 */
111 {173, 127, 168}, /* Plum 1 */
112 {233, 185, 110}, /* Chocolate 1 */
113 {239, 41, 41}, /* Scarlet Red 1 */
114 {238, 238, 236}, /* Aluminium 1 */
116 {237, 212, 0}, /* Butter 2 */
117 {115, 210, 22}, /* Chameleon 2 */
118 {245, 121, 0}, /* Orange 2 */
119 {52, 101, 164}, /* Sky Blue 2 */
120 {117, 80, 123}, /* Plum 2 */
121 {193, 125, 17}, /* Chocolate 2 */
122 {204, 0, 0}, /* Scarlet Red 2 */
124 {136, 138, 133}, /* Aluminium 4 */
126 {196, 160, 0}, /* Butter 3 */
127 {78, 154, 6}, /* Chameleon 3 */
128 {206, 92, 0}, /* Orange 3 */
129 {32, 74, 135}, /* Sky Blue 3 */
130 {92, 53, 102}, /* Plum 3 */
131 {143, 89, 2}, /* Chocolate 3 */
132 {164, 0, 0}, /* Scarlet Red 3 */
133 {85, 87, 83}, /* Aluminium 5 */
135 {211, 215, 207}, /* Aluminium 2 */
136 {186, 189, 182}, /* Aluminium 3 */
137 {46, 52, 54}, /* Aluminium 6 */
141 xrchart_draw_marker (cairo_t *cr, double x, double y,
142 enum xrmarker_type marker, double size)
145 cairo_translate (cr, x, y);
146 cairo_scale (cr, size / 2.0, size / 2.0);
147 cairo_set_line_width (cr, cairo_get_line_width (cr) / (size / 2.0));
150 case XRMARKER_CIRCLE:
151 cairo_arc (cr, 0, 0, 1.0, 0, 2 * M_PI);
155 case XRMARKER_ASTERISK:
156 cairo_move_to (cr, 0, -1.0); /* | */
157 cairo_line_to (cr, 0, 1.0);
158 cairo_move_to (cr, -M_SQRT1_2, -M_SQRT1_2); /* / */
159 cairo_line_to (cr, M_SQRT1_2, M_SQRT1_2);
160 cairo_move_to (cr, -M_SQRT1_2, M_SQRT1_2); /* \ */
161 cairo_line_to (cr, M_SQRT1_2, -M_SQRT1_2);
165 case XRMARKER_SQUARE:
166 cairo_rectangle (cr, -1.0, -1.0, 2.0, 2.0);
174 xrchart_label_rotate (cairo_t *cr, int horz_justify, int vert_justify,
175 double font_size, const char *string, double angle)
177 PangoFontDescription *desc;
181 desc = pango_font_description_from_string ("Sans");
187 pango_font_description_set_absolute_size (desc, font_size * PANGO_SCALE);
190 cairo_rotate (cr, angle);
191 cairo_get_current_point (cr, &x, &y);
192 cairo_translate (cr, x, y);
193 cairo_move_to (cr, 0, 0);
194 cairo_scale (cr, 1.0, -1.0);
196 layout = pango_cairo_create_layout (cr);
197 pango_layout_set_font_description (layout, desc);
198 pango_layout_set_markup (layout, string, -1);
199 if (horz_justify != 'l')
204 pango_layout_get_size (layout, &width_pango, NULL);
205 width = (double) width_pango / PANGO_SCALE;
206 if (horz_justify == 'r')
207 cairo_rel_move_to (cr, -width, 0);
209 cairo_rel_move_to (cr, -width / 2.0, 0);
211 if (vert_justify == 'x')
213 int baseline_pango = pango_layout_get_baseline (layout);
214 double baseline = (double) baseline_pango / PANGO_SCALE;
215 cairo_rel_move_to (cr, 0, -baseline);
217 else if (vert_justify != 't')
222 pango_layout_get_size (layout, NULL, &height_pango);
223 height = (double) height_pango / PANGO_SCALE;
224 if (vert_justify == 'b')
225 cairo_rel_move_to (cr, 0, -height);
226 else if (vert_justify == 'c')
227 cairo_rel_move_to (cr, 0, -height / 2.0);
229 pango_cairo_show_layout (cr, layout);
230 g_object_unref (layout);
236 pango_font_description_free (desc);
240 xrchart_label (cairo_t *cr, int horz_justify, int vert_justify,
241 double font_size, const char *string)
243 xrchart_label_rotate (cr, horz_justify, vert_justify, font_size, string, 0);
247 /* Draw a tick mark at position
248 If label is non null, then print it at the tick mark
251 draw_tick_internal (cairo_t *cr, const struct xrchart_geometry *geom,
252 enum tick_orientation orientation,
258 draw_tick (cairo_t *cr, const struct xrchart_geometry *geom,
259 enum tick_orientation orientation,
262 const char *label, ...)
266 va_start (ap, label);
267 s = xvasprintf (label, ap);
269 if (fabs (position) < DBL_EPSILON)
272 draw_tick_internal (cr, geom, orientation, rotated, position, s);
279 draw_tick_internal (cairo_t *cr, const struct xrchart_geometry *geom,
280 enum tick_orientation orientation,
285 const int tickSize = 10;
288 cairo_move_to (cr, geom->axis[SCALE_ABSCISSA].data_min, geom->axis[SCALE_ORDINATE].data_min);
290 if (orientation == SCALE_ABSCISSA)
292 cairo_rel_move_to (cr, position, 0);
293 cairo_rel_line_to (cr, 0, -tickSize);
295 else if (orientation == SCALE_ORDINATE)
297 cairo_rel_move_to (cr, 0, position);
298 cairo_rel_line_to (cr, -tickSize, 0);
302 cairo_get_current_point (cr, &x, &y);
308 cairo_move_to (cr, x, y);
310 if (orientation == SCALE_ABSCISSA)
313 xrchart_label_rotate (cr, 'l', 'c', geom->font_size, s, -G_PI_4);
315 xrchart_label (cr, 'c', 't', geom->font_size, s);
317 else if (orientation == SCALE_ORDINATE)
319 xrchart_label (cr, 'r', 'c', geom->font_size, s);
325 /* Write the title on a chart*/
327 xrchart_write_title (cairo_t *cr, const struct xrchart_geometry *geom,
328 const char *title, ...)
334 cairo_move_to (cr, geom->axis[SCALE_ABSCISSA].data_min, geom->title_bottom);
337 s = xvasprintf (title, ap);
338 xrchart_label (cr, 'l', 'x', geom->font_size * 1.5, s);
346 xrchart_text_extents (cairo_t *cr, const struct xrchart_geometry *geom,
348 double *width, double *height)
350 PangoFontDescription *desc;
355 desc = pango_font_description_from_string ("Sans");
358 pango_font_description_set_absolute_size (desc, geom->font_size * PANGO_SCALE);
359 layout = pango_cairo_create_layout (cr);
360 pango_layout_set_font_description (layout, desc);
361 pango_layout_set_markup (layout, utf8, -1);
362 pango_layout_get_size (layout, &width_pango, &height_pango);
363 *width = (double) width_pango / PANGO_SCALE;
364 *height = (double) height_pango / PANGO_SCALE;
365 g_object_unref (layout);
366 pango_font_description_free (desc);
370 xrchart_write_scale (cairo_t *cr, struct xrchart_geometry *geom,
371 double smin, double smax, enum tick_orientation orient)
380 char *tick_format_string;
381 bool tickoversize = false;
383 chart_get_scale (smax, smin, &lower, &interval, &ticks);
385 tick_format_string = chart_get_ticks_format (lower, interval, ticks, &tickscale);
387 upper = lower + interval * (ticks+1);
389 geom->axis[orient].max = upper;
390 geom->axis[orient].min = lower;
392 struct xrchart_axis *axis = &geom->axis[orient];
393 geom->axis[orient].scale = (fabs ((double) axis->data_max - axis->data_min)
394 / fabs (axis->max - axis->min));
396 if (orient == SCALE_ABSCISSA)
399 double lower_txt_width, upper_txt_width, unused, width;
400 test_text = xasprintf(tick_format_string, upper*tickscale);
401 xrchart_text_extents (cr, geom, test_text, &upper_txt_width, &unused);
403 test_text = xasprintf(tick_format_string, lower*tickscale);
404 xrchart_text_extents (cr, geom, test_text, &lower_txt_width, &unused);
406 width = MAX(lower_txt_width, upper_txt_width);
407 tickoversize = width > 0.9 *
408 ((double)(geom->axis[SCALE_ABSCISSA].data_max - geom->axis[SCALE_ABSCISSA].data_min))/(ticks+1);
413 for (s = 0 ; s <= ticks; ++s)
415 draw_tick (cr, geom, orient, tickoversize,
416 s * interval * geom->axis[orient].scale,
417 tick_format_string, pos*tickscale);
420 free(tick_format_string);
423 /* Set the scale for the ordinate */
425 xrchart_write_yscale (cairo_t *cr, struct xrchart_geometry *geom,
426 double smin, double smax)
428 xrchart_write_scale (cr, geom, smin, smax, SCALE_ORDINATE);
431 /* Set the scale for the abscissa */
433 xrchart_write_xscale (cairo_t *cr, struct xrchart_geometry *geom,
434 double smin, double smax)
436 xrchart_write_scale (cr, geom, smin, smax, SCALE_ABSCISSA);
440 /* Write the abscissa label */
442 xrchart_write_xlabel (cairo_t *cr, const struct xrchart_geometry *geom,
445 cairo_move_to (cr, geom->axis[SCALE_ABSCISSA].data_min, geom->abscissa_bottom);
446 xrchart_label (cr, 'l', 't', geom->font_size, label);
449 /* Write the ordinate label */
451 xrchart_write_ylabel (cairo_t *cr, const struct xrchart_geometry *geom,
455 cairo_translate (cr, geom->ordinate_left, geom->axis[SCALE_ORDINATE].data_min);
456 cairo_rotate (cr, M_PI / 2.0);
458 xrchart_label (cr, 'l', 'x', geom->font_size, label);
464 xrchart_write_legend (cairo_t *cr, const struct xrchart_geometry *geom)
467 const int vstep = geom->font_size * 2;
470 const int swatch = 20;
471 const int legend_top = geom->axis[SCALE_ORDINATE].data_max;
472 const int legend_bottom = legend_top -
473 (vstep * geom->n_datasets + 2 * ypad );
477 cairo_rectangle (cr, geom->legend_left, legend_top,
478 geom->legend_right - xpad - geom->legend_left,
479 legend_bottom - legend_top);
482 for (i = 0 ; i < geom->n_datasets ; ++i )
484 const int ypos = legend_top - vstep * (i + 1);
485 const int xpos = geom->legend_left + xpad;
486 const struct xrchart_colour *colour;
488 cairo_move_to (cr, xpos, ypos);
491 colour = &data_colour [ i % XRCHART_N_COLOURS];
492 cairo_set_source_rgb (cr,
494 colour->green / 255.0,
495 colour->blue / 255.0);
496 cairo_rectangle (cr, xpos, ypos, swatch, swatch);
497 cairo_fill_preserve (cr);
501 cairo_move_to (cr, xpos + swatch * 1.5, ypos);
502 xrchart_label (cr, 'l', 'x', geom->font_size, geom->dataset[i]);
508 /* Start a new vector called NAME */
510 xrchart_vector_start (cairo_t *cr, struct xrchart_geometry *geom, const char *name)
512 const struct xrchart_colour *colour;
516 colour = &data_colour[geom->n_datasets % XRCHART_N_COLOURS];
517 cairo_set_source_rgb (cr,
519 colour->green / 255.0,
520 colour->blue / 255.0);
523 geom->dataset = xrealloc (geom->dataset,
524 geom->n_datasets * sizeof (*geom->dataset));
526 geom->dataset[geom->n_datasets - 1] = strdup (name);
529 /* Plot a data point */
531 xrchart_datum (cairo_t *cr, const struct xrchart_geometry *geom,
532 int dataset UNUSED, double x, double y)
534 double x_pos = (x - geom->axis[SCALE_ABSCISSA].min) * geom->axis[SCALE_ABSCISSA].scale + geom->axis[SCALE_ABSCISSA].data_min;
535 double y_pos = (y - geom->axis[SCALE_ORDINATE].min) * geom->axis[SCALE_ORDINATE].scale + geom->axis[SCALE_ORDINATE].data_min;
537 xrchart_draw_marker (cr, x_pos, y_pos, XRMARKER_CIRCLE, 10);
541 xrchart_vector_end (cairo_t *cr, struct xrchart_geometry *geom)
545 geom->in_path = false;
548 /* Plot a data point */
550 xrchart_vector (cairo_t *cr, struct xrchart_geometry *geom, double x, double y)
553 (x - geom->axis[SCALE_ABSCISSA].min) * geom->axis[SCALE_ABSCISSA].scale + geom->axis[SCALE_ABSCISSA].data_min ;
556 (y - geom->axis[SCALE_ORDINATE].min) * geom->axis[SCALE_ORDINATE].scale + geom->axis[SCALE_ORDINATE].data_min ;
559 cairo_line_to (cr, x_pos, y_pos);
562 cairo_move_to (cr, x_pos, y_pos);
563 geom->in_path = true;
569 /* Draw a line with slope SLOPE and intercept INTERCEPT.
570 between the points limit1 and limit2.
571 If lim_dim is XRCHART_DIM_Y then the limit{1,2} are on the
572 y axis otherwise the x axis
575 xrchart_line(cairo_t *cr, const struct xrchart_geometry *geom,
576 double slope, double intercept,
577 double limit1, double limit2, enum xrchart_dim lim_dim)
582 if ( lim_dim == XRCHART_DIM_Y )
584 x1 = ( limit1 - intercept ) / slope;
585 x2 = ( limit2 - intercept ) / slope;
593 y1 = slope * x1 + intercept;
594 y2 = slope * x2 + intercept;
597 y1 = (y1 - geom->axis[SCALE_ORDINATE].min) * geom->axis[SCALE_ORDINATE].scale + geom->axis[SCALE_ORDINATE].data_min;
598 y2 = (y2 - geom->axis[SCALE_ORDINATE].min) * geom->axis[SCALE_ORDINATE].scale + geom->axis[SCALE_ORDINATE].data_min;
599 x1 = (x1 - geom->axis[SCALE_ABSCISSA].min) * geom->axis[SCALE_ABSCISSA].scale + geom->axis[SCALE_ABSCISSA].data_min;
600 x2 = (x2 - geom->axis[SCALE_ABSCISSA].min) * geom->axis[SCALE_ABSCISSA].scale + geom->axis[SCALE_ABSCISSA].data_min;
602 cairo_move_to (cr, x1, y1);
603 cairo_line_to (cr, x2, y2);