fbec5d25b0bb610c69cbc55bb18810822b33d214
[pspp-builds.git] / src / output / chart-provider.h
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2004, 2009 Free Software Foundation, Inc.
3
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.
8
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.
13
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/>. */
16
17 #ifndef OUTPUT_CHART_PROVIDER_H
18 #define OUTPUT_CHART_PROVIDER_H 1
19
20 #include <stdbool.h>
21 #include <stdint.h>
22 #include <output/chart.h>
23
24 struct chart_colour
25   {
26     uint8_t red;
27     uint8_t green;
28     uint8_t blue;
29   };
30
31 /* The geometry of a chart. */
32 struct chart_geometry
33   {
34     int data_top   ;
35     int data_right ;
36     int data_bottom;
37     int data_left  ;
38
39     int abscissa_top;
40
41     int ordinate_right ;
42
43     int title_bottom ;
44
45     int legend_left ;
46     int legend_right ;
47
48     /* Default font size for the plot (if zero, then use plotter default) */
49     int font_size;
50
51     struct chart_colour fill_colour;
52
53     /* Stuff Particular to Cartesians (and Boxplots ) */
54     double ordinate_scale;
55     double abscissa_scale;
56     double x_min;
57     double x_max;
58     double y_min;
59     double y_max;
60   };
61
62 struct chart_class
63   {
64     void (*draw) (const struct chart *, plPlotter *, struct chart_geometry *);
65     void (*destroy) (struct chart *);
66   };
67
68 struct chart
69   {
70     const struct chart_class *class;
71     int ref_cnt;
72   };
73
74 void chart_init (struct chart *, const struct chart_class *);
75 bool chart_create_file (const char *type, const char *file_name_tmpl,
76                         int number, plPlotterParams *,
77                         char **file_namep, plPlotter **lpp);
78
79 void chart_geometry_init (plPlotter *, struct chart_geometry *,
80                           double width, double length);
81 void chart_geometry_free (plPlotter *);
82
83 void chart_draw (const struct chart *, plPlotter *, struct chart_geometry *);
84
85 #endif /* output/chart-provider.h */