X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fchart.h;h=6915358d8a60e225823e036066bcb2ab1b31a9b6;hb=d043fde2b737897e3372670afc47eb648c17624b;hp=f2c9e501471151cc7282864f05bda72748070e4f;hpb=379aeac5640a20a122990640fdd33bdfa592a3c1;p=pspp-builds.git diff --git a/src/chart.h b/src/chart.h index f2c9e501..6915358d 100644 --- a/src/chart.h +++ b/src/chart.h @@ -21,12 +21,15 @@ #ifndef CHART_H #define CHART_H +#include #include -#include #include - #include "var.h" +#ifndef NO_CHARTS +#include +#endif + /* Array of standard colour names */ extern const char *data_colour[]; @@ -34,8 +37,13 @@ extern const char *data_colour[]; struct chart { +#ifndef NO_CHARTS plPlotter *lp ; plPlotterParams *pl_params; +#else + void *lp; +#endif + char *filename; /* The geometry of the chart See diagram at the foot of this file. @@ -61,7 +69,7 @@ struct chart { char fill_colour[10]; - /* Stuff Particular to Cartesians */ + /* Stuff Particular to Cartesians (and Boxplots ) */ double ordinate_scale; double abscissa_scale; double x_min; @@ -72,10 +80,8 @@ struct chart { }; -int chart_initialise(struct chart *ch); - -void chart_finalise(struct chart *ch); - +struct chart * chart_create(void); +void chart_submit(struct chart *ch); double chart_rounded_tick(double tick); @@ -166,7 +172,17 @@ void chart_write_yscale(struct chart *ch, void chart_datum(struct chart *ch, int dataset, double x, double y); +struct metrics; + + +void boxplot_draw_boxplot(struct chart *ch, + double box_centre, + double box_width, + struct metrics *m, + const char *name); + +void boxplot_draw_yscale(struct chart *ch , double y_max, double y_min); enum CHART_DIM