X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fcharts%2Fbarchart.h;h=df27304c568149930637eb2cfa80b62c97c73688;hb=9aae6dac247693f23282f52c0968444e8f5f363c;hp=ea6c27e0796a246c025cd2e3a835abafb6a56766;hpb=5443c41f89a2b29cf8cf55f21eecb839fae08177;p=pspp diff --git a/src/output/charts/barchart.h b/src/output/charts/barchart.h index ea6c27e079..df27304c56 100644 --- a/src/output/charts/barchart.h +++ b/src/output/charts/barchart.h @@ -18,31 +18,82 @@ #define BARCHART_H #include "libpspp/str.h" -#include "output/chart-item.h" +#include "libpspp/hmap.h" +#include "data/value.h" +#include "output/chart.h" + + +struct category +{ + struct hmap_node node; + int idx; /* Unique zero based index */ + struct string label; /* The label to be displayed for this category */ + union value val; /* The value of this category */ + int width; /* The width of VAL */ +}; + struct barchart { - struct chart_item chart_item; - struct slice *bars; - int n_bars; + struct chart chart; + + /* Should the chart be displayed as percentages */ + bool percent; + + /* The categories */ + struct freq **cats; + + /* The total number of categories (regardless of level) */ + int n_nzcats; + + /* The number of primary categories */ + int n_pcats; + + /* The largest count of all the categories */ double largest; + + /* The sum of all the counts */ + double total_count; + + /* The label for the ordinate (vertical axis) */ char *ylabel; + + /* The variables holding the categorical values */ + const struct variable **var; + int n_vars; + + int widths[2]; + + /* A hash table of struct category indexed by VAL */ + struct hmap primaries; + + /* A hash table of struct category indexed by VAL */ + struct hmap secondaries; + + /* A array of pointers to the members of the above hmap, + (the secondaries) sorted by VAL */ + struct category **ss; }; -struct chart_item *barchart_create (const char *title, const char *ylabel, - const struct slice *, int n_bars); + +struct variable; +struct freq; + +struct chart *barchart_create (const struct variable **, int n_vars, + const char *ylabel, bool percent, + struct freq *const *, int n_cats); -/* This boilerplate for barchart, a subclass of chart_item, was +/* This boilerplate for barchart, a subclass of chart, was autogenerated by mk-class-boilerplate. */ #include #include "libpspp/cast.h" -extern const struct chart_item_class barchart_class; +extern const struct chart_class barchart_class; /* Returns true if SUPER is a barchart, otherwise false. */ static inline bool -is_barchart (const struct chart_item *super) +is_barchart (const struct chart *super) { return super->class == &barchart_class; } @@ -50,24 +101,24 @@ is_barchart (const struct chart_item *super) /* Returns SUPER converted to barchart. SUPER must be a barchart, as reported by is_barchart. */ static inline struct barchart * -to_barchart (const struct chart_item *super) +to_barchart (const struct chart *super) { assert (is_barchart (super)); - return UP_CAST (super, struct barchart, chart_item); + return UP_CAST (super, struct barchart, chart); } -/* Returns INSTANCE converted to chart_item. */ -static inline struct chart_item * +/* Returns INSTANCE converted to chart. */ +static inline struct chart * barchart_super (const struct barchart *instance) { - return CONST_CAST (struct chart_item *, &instance->chart_item); + return CONST_CAST (struct chart *, &instance->chart); } /* Increments INSTANCE's reference count and returns INSTANCE. */ static inline struct barchart * barchart_ref (const struct barchart *instance) { - return to_barchart (chart_item_ref (&instance->chart_item)); + return to_barchart (chart_ref (&instance->chart)); } /* Decrements INSTANCE's reference count, then destroys INSTANCE if @@ -75,7 +126,7 @@ barchart_ref (const struct barchart *instance) static inline void barchart_unref (struct barchart *instance) { - chart_item_unref (&instance->chart_item); + chart_unref (&instance->chart); } /* Returns true if INSTANCE's reference count is greater than 1, @@ -83,13 +134,13 @@ barchart_unref (struct barchart *instance) static inline bool barchart_is_shared (const struct barchart *instance) { - return chart_item_is_shared (&instance->chart_item); + return chart_is_shared (&instance->chart); } static inline void barchart_submit (struct barchart *instance) { - chart_item_submit (&instance->chart_item); + chart_submit (&instance->chart); } #endif /* output/charts/barchart.h */