X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Foutput%2Ftable-item.h;h=ffdc4b682c204ce8dc2be9e729f6fb438cc2640b;hb=5e05ce94d98d7bb9ef99d53334429ff183bd1b93;hp=1cc92eaf5dc27c2f7e4587cc4a3bf8160f194f7c;hpb=37a14e6b8ab908b2c23d77e0cb6a9085fe2d73e1;p=pspp diff --git a/src/output/table-item.h b/src/output/table-item.h index 1cc92eaf5d..ffdc4b682c 100644 --- a/src/output/table-item.h +++ b/src/output/table-item.h @@ -34,6 +34,7 @@ struct table_item_text char *content; const struct footnote **footnotes; size_t n_footnotes; + int halign; /* TAB_*. */ struct cell_style *style; }; @@ -50,6 +51,7 @@ struct table_item struct output_item output_item; /* Superclass. */ struct table *table; /* The table to be rendered. */ struct table_item_text *title; /* Null if there is no title. */ + struct table_item_text *layers; /* Null if there is no layer info. */ struct table_item_text *caption; /* Null if there is no caption. */ }; @@ -62,6 +64,11 @@ const struct table_item_text *table_item_get_title (const struct table_item *); void table_item_set_title (struct table_item *, const struct table_item_text *); +const struct table_item_text *table_item_get_layers ( + const struct table_item *); +void table_item_set_layers (struct table_item *, + const struct table_item_text *); + const struct table_item_text *table_item_get_caption ( const struct table_item *); void table_item_set_caption (struct table_item *,