X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Foutput%2Fcharts%2Fpiechart.h;h=2602c71c32d670496c5a6daed0ec710f1b41ea54;hb=29917c4f5908454803e663d2ad78bca4bc35e805;hp=39a0c2d5d28e7c05766b93e62a4f0d91b6f4e292;hpb=8b71948cd57dbd2787cb4c50525b957e9be8a62b;p=pspp diff --git a/src/output/charts/piechart.h b/src/output/charts/piechart.h index 39a0c2d5d2..2602c71c32 100644 --- a/src/output/charts/piechart.h +++ b/src/output/charts/piechart.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2004, 2009 Free Software Foundation, Inc. + Copyright (C) 2004, 2009, 2011 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 @@ -17,15 +17,86 @@ #ifndef PIECHART_H #define PIECHART_H -#include +#include "libpspp/str.h" +#include "output/chart.h" +#include "language/stats/freq.h" -struct slice { - struct string label; - double magnitude; -}; +struct piechart + { + struct chart chart; + struct slice *slices; + int n_slices; + }; -struct chart *piechart_create (const char *title, - const struct slice *, int n_slices); +struct slice + { + struct string label; + double magnitude; + }; -#endif +struct variable; +struct chart *piechart_create (const struct variable *var, + const struct freq *, int n_slices); + +/* This boilerplate for piechart, a subclass of chart, was + autogenerated by mk-class-boilerplate. */ + +#include +#include "libpspp/cast.h" + +extern const struct chart_class piechart_class; + +/* Returns true if SUPER is a piechart, otherwise false. */ +static inline bool +is_piechart (const struct chart *super) +{ + return super->class == &piechart_class; +} + +/* Returns SUPER converted to piechart. SUPER must be a piechart, as + reported by is_piechart. */ +static inline struct piechart * +to_piechart (const struct chart *super) +{ + assert (is_piechart (super)); + return UP_CAST (super, struct piechart, chart); +} + +/* Returns INSTANCE converted to chart. */ +static inline struct chart * +piechart_super (const struct piechart *instance) +{ + return CONST_CAST (struct chart *, &instance->chart); +} + +/* Increments INSTANCE's reference count and returns INSTANCE. */ +static inline struct piechart * +piechart_ref (const struct piechart *instance) +{ + return to_piechart (chart_ref (&instance->chart)); +} + +/* Decrements INSTANCE's reference count, then destroys INSTANCE if + the reference count is now zero. */ +static inline void +piechart_unref (struct piechart *instance) +{ + chart_unref (&instance->chart); +} + +/* Returns true if INSTANCE's reference count is greater than 1, + false otherwise. */ +static inline bool +piechart_is_shared (const struct piechart *instance) +{ + return chart_is_shared (&instance->chart); +} + +static inline void +piechart_submit (struct piechart *instance) +{ + chart_submit (&instance->chart); +} + +#endif /* output/charts/piechart.h */