X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Ftable-provider.h;h=be45912d92148994b3484404cdb8d3e626497a58;hb=2720633be76a46488e05bb9a0d45f24a89375065;hp=8b7fdf0a710435bfe81067228005fdbabf20b148;hpb=761cab0e835626ba4ed8afc0c00ebed0e7f02841;p=pspp diff --git a/src/output/table-provider.h b/src/output/table-provider.h index 8b7fdf0a71..be45912d92 100644 --- a/src/output/table-provider.h +++ b/src/output/table-provider.h @@ -30,7 +30,7 @@ struct footnote size_t idx; char *content; char *marker; - struct area_style *style; + struct table_area_style *style; }; /* A cell in a table. */ @@ -55,12 +55,12 @@ struct table_cell unsigned int options; /* TAB_*. */ char *text; /* A paragraph of text. */ - - /* Optional footnote(s). */ + char **subscripts; + size_t n_subscripts; + char *superscript; const struct footnote **footnotes; size_t n_footnotes; - - const struct area_style *style; + const struct table_area_style *style; }; void table_cell_format_footnote_markers (const struct table_cell *, @@ -90,60 +90,6 @@ 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, - struct cell_color *color); - }; - -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 *);