X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Foutput%2Ftext-item.h;h=9efc26490baa59c46459a9c4f72dc952902e0974;hb=81dece3642da9bdcbdec4aa09b0c2008c86d6161;hp=1bfb63689b28cd94f6cce1c14b7c8fa570456e03;hpb=a353919df75c25331144602421353a856f4236d6;p=pspp diff --git a/src/output/text-item.h b/src/output/text-item.h index 1bfb63689b..9efc26490b 100644 --- a/src/output/text-item.h +++ b/src/output/text-item.h @@ -30,34 +30,25 @@ enum text_item_type { - /* Headings. */ TEXT_ITEM_PAGE_TITLE, /* TITLE and SUBTITLE commands. */ - TEXT_ITEM_SUBHEAD, /* Heading within a command's output.*/ - - /* Syntax. */ - TEXT_ITEM_SYNTAX, /* A single line of PSPP syntax. */ - TEXT_ITEM_COMMENT, /* COMMENT command. */ - TEXT_ITEM_ECHO, /* ECHO command. */ - - /* Ordinary text. */ - TEXT_ITEM_PARAGRAPH, /* Normal paragraph of text. */ - TEXT_ITEM_MONOSPACE, /* Paragraph of monospaced text. */ - - /* Spacing. Some output drivers that are not based on lines and pages - (e.g. CSV, HTML) may ignore these. */ - TEXT_ITEM_BLANK_LINE, /* Blank line. */ + TEXT_ITEM_TITLE, /* Title. */ + TEXT_ITEM_SYNTAX, /* Syntax printback logging. */ + TEXT_ITEM_LOG, /* Other logging. */ TEXT_ITEM_EJECT_PAGE /* Eject page. */ }; +const char *text_item_type_to_string (enum text_item_type); + /* A text item. */ struct text_item { struct output_item output_item; char *text; /* The content. */ enum text_item_type type; /* Type. */ - char *font; - int font_size; - bool bold, italic, underline; + + bool bold, italic, underline, markup; + char *typeface; + int size; }; struct text_item *text_item_create (enum text_item_type, const char *text); @@ -68,6 +59,8 @@ struct text_item *text_item_create_format (enum text_item_type, enum text_item_type text_item_get_type (const struct text_item *); const char *text_item_get_text (const struct text_item *); + +struct table_item *text_item_to_table_item (struct text_item *); /* This boilerplate for text_item, a subclass of output_item, was autogenerated by mk-class-boilerplate. */