X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Ftable.h;h=0cdeef1b4ea1a7661dcf717fd53b6c134a216161;hb=81dece3642da9bdcbdec4aa09b0c2008c86d6161;hp=fb3ca946aa904ca849559c35208366d956c24e42;hpb=f919c4f6194066290f88e4852016428832d01aa1;p=pspp diff --git a/src/output/table.h b/src/output/table.h index fb3ca946aa..0cdeef1b4e 100644 --- a/src/output/table.h +++ b/src/output/table.h @@ -86,6 +86,15 @@ enum table_stroke const char *table_stroke_to_string (enum table_stroke); +/* Given strokes A and B, returns a stroke that "combines" them, that is, that + gives a reasonable stroke choice for a rule for different reasons should + have both styles A and B. */ +static inline int +table_stroke_combine (enum table_stroke a, enum table_stroke b) +{ + return a > b ? a : b; +} + struct table_border_style { enum table_stroke stroke; @@ -181,29 +190,6 @@ enum TAB_JOIN = 1 << 14, }; -/* Styles for the rules around table cells. */ -enum - { - TAL_NONE = TABLE_STROKE_NONE, -#define TAL_0 TAL_NONE - TAL_SOLID = TABLE_STROKE_SOLID, -#define TAL_1 TAL_SOLID - TAL_DASHED = TABLE_STROKE_DASHED, - TAL_THICK = TABLE_STROKE_THICK, - TAL_THIN = TABLE_STROKE_THIN, - TAL_DOUBLE = TABLE_STROKE_DOUBLE, -#define TAL_2 TAL_DOUBLE - }; - -/* Given line styles A and B (each one of the TAL_* enumeration constants - above), returns a line style that "combines" them, that is, that gives a - reasonable line style choice for a rule for different reasons should have - both styles A and B. */ -static inline int table_rule_combine (int a, int b) -{ - return a > b ? a : b; -} - /* A table. */ struct table { @@ -235,10 +221,10 @@ struct table /* Table contents. - Each array element in cc[] is ordinarily a "char *" pointer to a - string. If TAB_JOIN (defined in tab.c) is set in ct[] for the element, + Each array element in cc[] is ordinarily a "char *" pointer to a string. + If TAB_JOIN (defined in table.c) is set in ct[] for the element, however, it is a joined cell and the corresponding element of cc[] - points to a struct tab_joined_cell. */ + points to a struct table_cell. */ void **cc; /* Cell contents; void *[nr][nc]. */ unsigned short *ct; /* Cell types; unsigned short[nr][nc]. */ struct area_style *styles[8]; @@ -297,10 +283,19 @@ void table_text (struct table *, int c, int r, unsigned opt, const char *); void table_text_format (struct table *, int c, int r, unsigned opt, const char *, ...) PRINTF_FORMAT (5, 6); - void table_joint_text (struct table *, int x1, int y1, int x2, int y2, unsigned opt, const char *); +void table_add_subscripts (struct table *, int x, int y, + char **subscripts, size_t n_subscripts); +void table_add_superscript (struct table *, int x, int y, + const char *superscript); + +/* Footnotes. + + Use table_create_footnote() to create the footnotes themselves, then use + table_add_footnote() to create a reference from a table cell to a footnote. + There are two steps because a footnote may have multiple references. */ struct footnote *table_create_footnote (struct table *, size_t idx, const char *content, const char *marker,