X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Ftable-provider.h;h=f87293721f47846d0153d89f5ea1fa430894a164;hb=b0a400eb4ab34438115c4be640a43c9b0b3bf7ad;hp=b64410c22703b33f7f4b98bc49a624f016d0dfbc;hpb=0df9cdd3df66caf4353128feff3008289cda8115;p=pspp diff --git a/src/output/table-provider.h b/src/output/table-provider.h index b64410c227..f87293721f 100644 --- a/src/output/table-provider.h +++ b/src/output/table-provider.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997, 1998, 1999, 2000, 2009, 2011, 2013, 2014 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2000, 2009, 2011, 2013, 2014, 2018 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,21 +17,13 @@ #ifndef OUTPUT_TABLE_PROVIDER #define OUTPUT_TABLE_PROVIDER 1 +#include #include "output/table.h" -/* An item of contents within a table cell. */ -struct cell_contents - { - unsigned int options; /* TAB_*. */ +struct pool; +struct string; - /* Exactly one of these must be nonnull. */ - char *text; /* A paragraph of text. */ - struct table_item *table; /* A table nested within the cell. */ - - /* Optional footnote(s). */ - char **footnotes; - size_t n_footnotes; - }; +enum table_halign table_halign_interpret (enum table_halign, bool numeric); /* A cell in a table. */ struct table_cell @@ -53,26 +45,12 @@ struct table_cell or both. */ int d[TABLE_N_AXES][2]; - /* The cell's contents. - - Most table cells contain only one item (a paragraph of text), but cells - are allowed to be empty (n_contents == 0) or contain a nested table, or - multiple items. - - 'inline_contents' provides a place to store a single item to handle the - common case. - */ - const struct cell_contents *contents; - size_t n_contents; - struct cell_contents inline_contents; - - /* Called to free the cell's data, if nonnull. */ - void (*destructor) (void *destructor_aux); - void *destructor_aux; + unsigned int options; /* TAB_*. */ + const struct pivot_value *value; + const struct font_style *font_style; + const struct cell_style *cell_style; }; -void table_cell_free (struct table_cell *); - /* Returns the number of columns that CELL spans. This is 1 for an ordinary cell and greater than one for a cell that joins multiple columns. */ static inline int @@ -97,105 +75,10 @@ table_cell_is_joined (const struct table_cell *cell) return table_cell_colspan (cell) > 1 || table_cell_rowspan (cell) > 1; } -/* Declarations to allow defining table classes. */ - -struct table_class - { - /* Frees TABLE. - - The table class may assume that any cells that were retrieved by calling - the 'get_cell' function have been freed (by calling their destructors) - before this function is called. */ - void (*destroy) (struct table *table); - - /* Initializes CELL with the contents of the table cell at column X and row - Y within TABLE. All members of CELL must be initialized, except that if - 'destructor' is set to a null pointer, then 'destructor_aux' need not be - initialized. The 'contents' member of CELL must be set to a nonnull - value. - - The table class must allow any number of cells in the table to be - retrieved simultaneously; that is, TABLE must not assume that a given - cell will be freed before another one is retrieved using 'get_cell'. - - The table class must allow joined cells to be retrieved, with identical - contents, using any (X,Y) location inside the cell. - - The table class must not allow cells to overlap. - - The table class should not allow a joined cell to cross the border - between header rows/columns and the interior of the table. That is, a - joined cell should be entirely within headers rows and columns or - entirely outside them. - - The table class may assume that CELL will be freed before TABLE is - destroyed. */ - void (*get_cell) (const struct table *table, int x, int y, - struct table_cell *cell); - - /* Returns one of the TAL_* enumeration constants (declared in - output/table.h) representing a rule running alongside one of the cells - in TABLE. - - See table_get_rule() in table.c for a detailed explanation of the - meaning of AXIS and X and Y, including a diagram. */ - int (*get_rule) (const struct table *table, - enum table_axis axis, int x, int y); - - /* This function is optional and most table classes will not implement it. - - If provided, this function must take ownership of A and B and return a - table that consists of tables A and B "pasted together", that is, a - table whose size is the sum of the sizes of A and B along the axis - specified by ORIENTATION. A and B will ordinarily have the same size - along the axis opposite ORIENTATION; no particular handling of tables - that have different sizes along that axis is required. - - The handling of rules at the seam between A and B is not specified, but - table_rule_combine() is one reasonable way to do it. - - Called only if neither A and B is shared (as returned by - table_is_shared()). - - Called if A or B or both is of the class defined by this table class. - That is, the implementation must be prepared to deal with the case where - A or B is not the ordinarily expected table class. - - This function may return a null pointer if it cannot implement the paste - operation, in which case the caller will use a fallback - implementation. - - This function is used to implement table_paste(). */ - struct table *(*paste) (struct table *a, struct table *b, - enum table_axis orientation); - - /* This function is optional and most table classes will not implement it. - - If provided, this function must take ownership of TABLE and return a new - table whose contents are the TABLE's rows RECT[TABLE_VERT][0] through - RECT[TABLE_VERT][1], exclusive, and the TABLE's columns - RECT[TABLE_HORZ][0] through RECT[TABLE_HORZ][1]. - - Called only if TABLE is not shared (as returned by table_is_shared()). - - This function may return a null pointer if it cannot implement the - select operation, in which case the caller will use a fallback - implementation. - - This function is used to implement table_select(). */ - struct table *(*select) (struct table *table, int rect[TABLE_N_AXES][2]); - }; - -void table_init (struct table *, const struct table_class *); - -/* Table class implementations can call these functions or just set the - table's n[] and h[][] members directly. */ -void table_set_nc (struct table *, int nc); -void table_set_nr (struct table *, int nr); - /* For use primarily by output drivers. */ void table_get_cell (const struct table *, int x, int y, struct table_cell *); -int table_get_rule (const struct table *, enum table_axis, int x, int y); +int table_get_rule (const struct table *, enum table_axis, int x, int y, + struct cell_color *); #endif /* output/table-provider.h */