1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2004, 2009, 2010, 2011 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"
22 #include <cairo/cairo.h>
23 #include <pango/pango.h>
24 #include <pango/pangocairo.h>
32 #include "libpspp/assertion.h"
33 #include "math/chart-geometry.h"
34 #include "output/cairo.h"
35 #include "output/chart-item.h"
37 #include "gl/xalloc.h"
38 #include "gl/xvasprintf.h"
41 #define _(msgid) gettext (msgid)
44 xrchart_geometry_init (cairo_t *cr, struct xrchart_geometry *geom,
45 double width, double length)
47 /* Set default chart geometry. */
48 geom->axis[SCALE_ORDINATE].data_max = 0.900 * length;
49 geom->axis[SCALE_ORDINATE].data_min = 0.120 * length;
51 geom->axis[SCALE_ABSCISSA].data_min = 0.150 * width;
52 geom->axis[SCALE_ABSCISSA].data_max = 0.800 * width;
53 geom->abscissa_bottom = 0.070 * length;
54 geom->ordinate_left = 0.050 * width;
55 geom->title_bottom = 0.920 * length;
56 geom->legend_left = 0.810 * width;
57 geom->legend_right = width;
58 geom->font_size = 15.0;
59 geom->in_path = false;
63 geom->fill_colour = data_colour[0];
65 cairo_set_line_width (cr, 1.0);
67 cairo_rectangle (cr, geom->axis[SCALE_ABSCISSA].data_min, geom->axis[SCALE_ORDINATE].data_min,
68 geom->axis[SCALE_ABSCISSA].data_max - geom->axis[SCALE_ABSCISSA].data_min,
69 geom->axis[SCALE_ORDINATE].data_max - geom->axis[SCALE_ORDINATE].data_min);
74 xrchart_geometry_free (cairo_t *cr UNUSED, struct xrchart_geometry *geom)
78 for (i = 0 ; i < geom->n_datasets; ++i)
79 free (geom->dataset[i]);
83 #if ! PANGO_VERSION_CHECK (1, 22, 0)
84 int pango_layout_get_baseline (PangoLayout *layout);
86 /* Shamelessly copied from the pango source */
88 pango_layout_get_baseline (PangoLayout *layout)
92 /* XXX this is so inefficient */
93 PangoLayoutIter *iter = pango_layout_get_iter (layout);
94 baseline = pango_layout_iter_get_baseline (iter);
95 pango_layout_iter_free (iter);
102 These colours come from:
103 http://tango.freedesktop.org/static/cvs/tango-art-tools/palettes/Tango-Palette.gpl */
104 const struct xrchart_colour data_colour[XRCHART_N_COLOURS] =
106 {252, 233, 79}, /* Butter 1 */
107 {138, 226, 52}, /* Chameleon 1 */
108 {252, 175, 62}, /* Orange 1 */
109 {114, 159, 207}, /* Sky Blue 1 */
110 {173, 127, 168}, /* Plum 1 */
111 {233, 185, 110}, /* Chocolate 1 */
112 {239, 41, 41}, /* Scarlet Red 1 */
113 {238, 238, 236}, /* Aluminium 1 */
115 {237, 212, 0}, /* Butter 2 */
116 {115, 210, 22}, /* Chameleon 2 */
117 {245, 121, 0}, /* Orange 2 */
118 {52, 101, 164}, /* Sky Blue 2 */
119 {117, 80, 123}, /* Plum 2 */
120 {193, 125, 17}, /* Chocolate 2 */
121 {204, 0, 0}, /* Scarlet Red 2 */
123 {136, 138, 133}, /* Aluminium 4 */
125 {196, 160, 0}, /* Butter 3 */
126 {78, 154, 6}, /* Chameleon 3 */
127 {206, 92, 0}, /* Orange 3 */
128 {32, 74, 135}, /* Sky Blue 3 */
129 {92, 53, 102}, /* Plum 3 */
130 {143, 89, 2}, /* Chocolate 3 */
131 {164, 0, 0}, /* Scarlet Red 3 */
132 {85, 87, 83}, /* Aluminium 5 */
134 {211, 215, 207}, /* Aluminium 2 */
135 {186, 189, 182}, /* Aluminium 3 */
136 {46, 52, 54}, /* Aluminium 6 */
140 xrchart_draw_marker (cairo_t *cr, double x, double y,
141 enum xrmarker_type marker, double size)
144 cairo_translate (cr, x, y);
145 cairo_scale (cr, size / 2.0, size / 2.0);
146 cairo_set_line_width (cr, cairo_get_line_width (cr) / (size / 2.0));
149 case XRMARKER_CIRCLE:
150 cairo_arc (cr, 0, 0, 1.0, 0, 2 * M_PI);
154 case XRMARKER_ASTERISK:
155 cairo_move_to (cr, 0, -1.0); /* | */
156 cairo_line_to (cr, 0, 1.0);
157 cairo_move_to (cr, -M_SQRT1_2, -M_SQRT1_2); /* / */
158 cairo_line_to (cr, M_SQRT1_2, M_SQRT1_2);
159 cairo_move_to (cr, -M_SQRT1_2, M_SQRT1_2); /* \ */
160 cairo_line_to (cr, M_SQRT1_2, -M_SQRT1_2);
164 case XRMARKER_SQUARE:
165 cairo_rectangle (cr, -1.0, -1.0, 2.0, 2.0);
173 xrchart_label_rotate (cairo_t *cr, int horz_justify, int vert_justify,
174 double font_size, const char *string, double angle)
176 PangoFontDescription *desc;
180 desc = pango_font_description_from_string ("sans serif");
186 pango_font_description_set_absolute_size (desc, font_size * PANGO_SCALE);
189 cairo_rotate (cr, angle);
190 cairo_get_current_point (cr, &x, &y);
191 cairo_translate (cr, x, y);
192 cairo_move_to (cr, 0, 0);
193 cairo_scale (cr, 1.0, -1.0);
195 layout = pango_cairo_create_layout (cr);
196 pango_layout_set_font_description (layout, desc);
197 pango_layout_set_text (layout, string, -1);
198 if (horz_justify != 'l')
203 pango_layout_get_size (layout, &width_pango, NULL);
204 width = (double) width_pango / PANGO_SCALE;
205 if (horz_justify == 'r')
206 cairo_rel_move_to (cr, -width, 0);
208 cairo_rel_move_to (cr, -width / 2.0, 0);
210 if (vert_justify == 'x')
212 int baseline_pango = pango_layout_get_baseline (layout);
213 double baseline = (double) baseline_pango / PANGO_SCALE;
214 cairo_rel_move_to (cr, 0, -baseline);
216 else if (vert_justify != 't')
221 pango_layout_get_size (layout, NULL, &height_pango);
222 height = (double) height_pango / PANGO_SCALE;
223 if (vert_justify == 'b')
224 cairo_rel_move_to (cr, 0, -height);
225 else if (vert_justify == 'c')
226 cairo_rel_move_to (cr, 0, -height / 2.0);
228 pango_cairo_show_layout (cr, layout);
229 g_object_unref (layout);
235 pango_font_description_free (desc);
239 xrchart_label (cairo_t *cr, int horz_justify, int vert_justify,
240 double font_size, const char *string)
242 xrchart_label_rotate (cr, horz_justify, vert_justify, font_size, string, 0);
246 /* Draw a tick mark at position
247 If label is non null, then print it at the tick mark
250 draw_tick_internal (cairo_t *cr, const struct xrchart_geometry *geom,
251 enum tick_orientation orientation,
257 draw_tick (cairo_t *cr, const struct xrchart_geometry *geom,
258 enum tick_orientation orientation,
261 const char *label, ...)
265 va_start (ap, label);
266 s = xvasprintf (label, ap);
268 if (fabs (position) < DBL_EPSILON)
271 draw_tick_internal (cr, geom, orientation, rotated, position, s);
278 draw_tick_internal (cairo_t *cr, const struct xrchart_geometry *geom,
279 enum tick_orientation orientation,
284 const int tickSize = 10;
287 cairo_move_to (cr, geom->axis[SCALE_ABSCISSA].data_min, geom->axis[SCALE_ORDINATE].data_min);
289 if (orientation == SCALE_ABSCISSA)
291 cairo_rel_move_to (cr, position, 0);
292 cairo_rel_line_to (cr, 0, -tickSize);
294 else if (orientation == SCALE_ORDINATE)
296 cairo_rel_move_to (cr, 0, position);
297 cairo_rel_line_to (cr, -tickSize, 0);
301 cairo_get_current_point (cr, &x, &y);
307 cairo_move_to (cr, x, y);
309 if (orientation == SCALE_ABSCISSA)
312 xrchart_label_rotate (cr, 'l', 'c', geom->font_size, s, -G_PI_4);
314 xrchart_label (cr, 'c', 't', geom->font_size, s);
316 else if (orientation == SCALE_ORDINATE)
318 if (fabs (position) < DBL_EPSILON)
319 cairo_rel_move_to (cr, 0, 10);
320 xrchart_label (cr, 'r', 'c', geom->font_size, s);
326 /* Write the title on a chart*/
328 xrchart_write_title (cairo_t *cr, const struct xrchart_geometry *geom,
329 const char *title, ...)
335 cairo_move_to (cr, geom->axis[SCALE_ABSCISSA].data_min, geom->title_bottom);
338 s = xvasprintf (title, ap);
339 xrchart_label (cr, 'l', 'x', geom->font_size * 1.5, s);
349 xrchart_write_scale (cairo_t *cr, struct xrchart_geometry *geom,
350 double smin, double smax, int ticks, enum tick_orientation orient)
354 const double tick_interval =
355 chart_rounded_tick ((smax - smin) / (double) ticks);
357 int upper = ceil (smax / tick_interval);
358 int lower = floor (smin / tick_interval);
360 geom->axis[orient].max = tick_interval * upper;
361 geom->axis[orient].min = tick_interval * lower;
363 geom->axis[orient].scale = (fabs (geom->axis[orient].data_max - geom->axis[orient].data_min)
364 / fabs (geom->axis[orient].max - geom->axis[orient].min));
366 for (s = 0 ; s < upper - lower; ++s)
368 double pos = (s + lower) * tick_interval;
369 draw_tick (cr, geom, orient, false,
370 s * tick_interval * geom->axis[orient].scale, "%g", pos);
374 /* Set the scale for the ordinate */
376 xrchart_write_yscale (cairo_t *cr, struct xrchart_geometry *geom,
377 double smin, double smax, int ticks)
379 xrchart_write_scale (cr, geom, smin, smax, ticks, SCALE_ORDINATE);
382 /* Set the scale for the abscissa */
384 xrchart_write_xscale (cairo_t *cr, struct xrchart_geometry *geom,
385 double smin, double smax, int ticks)
387 xrchart_write_scale (cr, geom, smin, smax, ticks, SCALE_ABSCISSA);
391 /* Write the abscissa label */
393 xrchart_write_xlabel (cairo_t *cr, const struct xrchart_geometry *geom,
396 cairo_move_to (cr, geom->axis[SCALE_ABSCISSA].data_min, geom->abscissa_bottom);
397 xrchart_label (cr, 'l', 't', geom->font_size, label);
400 /* Write the ordinate label */
402 xrchart_write_ylabel (cairo_t *cr, const struct xrchart_geometry *geom,
406 cairo_translate (cr, geom->ordinate_left, geom->axis[SCALE_ORDINATE].data_min);
407 cairo_rotate (cr, M_PI / 2.0);
409 xrchart_label (cr, 'l', 'x', geom->font_size, label);
415 xrchart_write_legend (cairo_t *cr, const struct xrchart_geometry *geom)
418 const int vstep = geom->font_size * 2;
421 const int swatch = 20;
422 const int legend_top = geom->axis[SCALE_ORDINATE].data_max;
423 const int legend_bottom = legend_top -
424 (vstep * geom->n_datasets + 2 * ypad );
428 cairo_rectangle (cr, geom->legend_left, legend_top,
429 geom->legend_right - xpad - geom->legend_left,
430 legend_bottom - legend_top);
433 for (i = 0 ; i < geom->n_datasets ; ++i )
435 const int ypos = legend_top - vstep * (i + 1);
436 const int xpos = geom->legend_left + xpad;
437 const struct xrchart_colour *colour;
439 cairo_move_to (cr, xpos, ypos);
442 colour = &data_colour [ i % XRCHART_N_COLOURS];
443 cairo_set_source_rgb (cr,
445 colour->green / 255.0,
446 colour->blue / 255.0);
447 cairo_rectangle (cr, xpos, ypos, swatch, swatch);
448 cairo_fill_preserve (cr);
452 cairo_move_to (cr, xpos + swatch * 1.5, ypos);
453 xrchart_label (cr, 'l', 'x', geom->font_size, geom->dataset[i]);
459 /* Start a new vector called NAME */
461 xrchart_vector_start (cairo_t *cr, struct xrchart_geometry *geom, const char *name)
463 const struct xrchart_colour *colour;
467 colour = &data_colour[geom->n_datasets % XRCHART_N_COLOURS];
468 cairo_set_source_rgb (cr,
470 colour->green / 255.0,
471 colour->blue / 255.0);
474 geom->dataset = xrealloc (geom->dataset,
475 geom->n_datasets * sizeof (*geom->dataset));
477 geom->dataset[geom->n_datasets - 1] = strdup (name);
480 /* Plot a data point */
482 xrchart_datum (cairo_t *cr, const struct xrchart_geometry *geom,
483 int dataset UNUSED, double x, double y)
485 double x_pos = (x - geom->axis[SCALE_ABSCISSA].min) * geom->axis[SCALE_ABSCISSA].scale + geom->axis[SCALE_ABSCISSA].data_min;
486 double y_pos = (y - geom->axis[SCALE_ORDINATE].min) * geom->axis[SCALE_ORDINATE].scale + geom->axis[SCALE_ORDINATE].data_min;
488 xrchart_draw_marker (cr, x_pos, y_pos, XRMARKER_SQUARE, 15);
492 xrchart_vector_end (cairo_t *cr, struct xrchart_geometry *geom)
496 geom->in_path = false;
499 /* Plot a data point */
501 xrchart_vector (cairo_t *cr, struct xrchart_geometry *geom, double x, double y)
504 (x - geom->axis[SCALE_ABSCISSA].min) * geom->axis[SCALE_ABSCISSA].scale + geom->axis[SCALE_ABSCISSA].data_min ;
507 (y - geom->axis[SCALE_ORDINATE].min) * geom->axis[SCALE_ORDINATE].scale + geom->axis[SCALE_ORDINATE].data_min ;
510 cairo_line_to (cr, x_pos, y_pos);
513 cairo_move_to (cr, x_pos, y_pos);
514 geom->in_path = true;
520 /* Draw a line with slope SLOPE and intercept INTERCEPT.
521 between the points limit1 and limit2.
522 If lim_dim is XRCHART_DIM_Y then the limit{1,2} are on the
523 y axis otherwise the x axis
526 xrchart_line(cairo_t *cr, const struct xrchart_geometry *geom,
527 double slope, double intercept,
528 double limit1, double limit2, enum xrchart_dim lim_dim)
533 if ( lim_dim == XRCHART_DIM_Y )
535 x1 = ( limit1 - intercept ) / slope;
536 x2 = ( limit2 - intercept ) / slope;
544 y1 = slope * x1 + intercept;
545 y2 = slope * x2 + intercept;
548 y1 = (y1 - geom->axis[SCALE_ORDINATE].min) * geom->axis[SCALE_ORDINATE].scale + geom->axis[SCALE_ORDINATE].data_min;
549 y2 = (y2 - geom->axis[SCALE_ORDINATE].min) * geom->axis[SCALE_ORDINATE].scale + geom->axis[SCALE_ORDINATE].data_min;
550 x1 = (x1 - geom->axis[SCALE_ABSCISSA].min) * geom->axis[SCALE_ABSCISSA].scale + geom->axis[SCALE_ABSCISSA].data_min;
551 x2 = (x2 - geom->axis[SCALE_ABSCISSA].min) * geom->axis[SCALE_ABSCISSA].scale + geom->axis[SCALE_ABSCISSA].data_min;
553 cairo_move_to (cr, x1, y1);
554 cairo_line_to (cr, x2, y2);