X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fchart.h;h=4da12ecfe5b0afba3ea7035680fca5b1ea1d9af9;hb=b5c82cc9aabe7e641011130240ae1b2e84348e23;hp=0180251e26e31f5f65897ccf13e261fd770e70fb;hpb=164d1274fcb70c54897f2a03fc7c27152ed4821a;p=pspp-builds.git diff --git a/src/output/chart.h b/src/output/chart.h index 0180251e..4da12ecf 100644 --- a/src/output/chart.h +++ b/src/output/chart.h @@ -1,22 +1,19 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 2004 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ -#include #include #include #include @@ -27,10 +24,11 @@ #include #include -#include #include "manager.h" #include "output.h" +#include "xalloc.h" + #ifndef CHART_H #define CHART_H @@ -49,10 +47,10 @@ struct chart { char *file_name; FILE *file; - /* The geometry of the chart + /* The geometry of the chart See diagram at the foot of this file. */ - + int data_top ; int data_right ; int data_bottom; @@ -66,10 +64,12 @@ struct chart { int legend_left ; int legend_right ; + const char **dataset; + int n_datasets; + - /* Default font size for the plot (if zero, then use plotter default) */ - int font_size; + int font_size; char fill_colour[10]; @@ -80,6 +80,7 @@ struct chart { double x_max; double y_min; double y_max; + bool in_path; }; @@ -87,4 +88,11 @@ struct chart { struct chart * chart_create(void); void chart_submit(struct chart *ch); +/* Helper functions for output drivers that put each chart into a + separate file. */ +void chart_init_separate (struct chart *, const char *type, + const char *file_name_tmpl, int number); + +void chart_finalise_separate (struct chart *); + #endif