| Commit | Line | Data |
|---|---|---|
| 92d0a6a6 | 1 | // -*- C++ -*- |
| 4d3e9548 JL |
2 | /* Copyright (C) 2002, 2003, 2004, 2005, 2007, 2009 |
| 3 | * Free Software Foundation, Inc. | |
| 92d0a6a6 JR |
4 | * |
| 5 | * Gaius Mulley (gaius@glam.ac.uk) wrote html-table.h | |
| 6 | * | |
| 7 | * html-table.h | |
| 8 | * | |
| 9 | * provides the methods necessary to handle indentation and tab | |
| 10 | * positions using html tables. | |
| 11 | */ | |
| 12 | ||
| 13 | /* | |
| 14 | This file is part of groff. | |
| 15 | ||
| 16 | groff is free software; you can redistribute it and/or modify it under | |
| 17 | the terms of the GNU General Public License as published by the Free | |
| 4d3e9548 JL |
18 | Software Foundation, either version 3 of the License, or |
| 19 | (at your option) any later version. | |
| 92d0a6a6 JR |
20 | |
| 21 | groff is distributed in the hope that it will be useful, but WITHOUT ANY | |
| 22 | WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
| 23 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
| 24 | for more details. | |
| 25 | ||
| 4d3e9548 JL |
26 | You should have received a copy of the GNU General Public License |
| 27 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ | |
| 92d0a6a6 JR |
28 | |
| 29 | #include "html.h" | |
| 30 | ||
| 31 | #if !defined(HTML_TABLE_H) | |
| 32 | #define HTML_TABLE_H | |
| 33 | ||
| 34 | typedef struct tab_position { | |
| 35 | char alignment; | |
| 36 | int position; | |
| 37 | struct tab_position *next; | |
| 38 | } tab_position; | |
| 39 | ||
| 40 | ||
| 41 | class tabs { | |
| 42 | public: | |
| 43 | tabs (); | |
| 44 | ~tabs (); | |
| 45 | void clear (void); | |
| 46 | int compatible (const char *s); | |
| 47 | void init (const char *s); | |
| 465b256c | 48 | void check_init (const char *s); |
| 92d0a6a6 JR |
49 | int find_tab (int pos); |
| 50 | int get_tab_pos (int n); | |
| 51 | char get_tab_align (int n); | |
| 52 | void dump_tabs (void); | |
| 53 | ||
| 54 | private: | |
| 55 | void delete_list (void); | |
| 56 | tab_position *tab; | |
| 57 | }; | |
| 58 | ||
| 59 | /* | |
| 60 | * define a column | |
| 61 | */ | |
| 62 | ||
| 63 | typedef struct cols { | |
| 64 | int left, right; | |
| 65 | int no; | |
| 66 | char alignment; | |
| 67 | struct cols *next; | |
| 68 | } cols; | |
| 69 | ||
| 70 | class html_table { | |
| 71 | public: | |
| 72 | html_table (simple_output *op, int linelen); | |
| 73 | ~html_table (void); | |
| 74 | int add_column (int coln, int hstart, int hend, char align); | |
| 75 | cols *get_column (int coln); | |
| 76 | int insert_column (int coln, int hstart, int hend, char align); | |
| 77 | int modify_column (cols *c, int hstart, int hend, char align); | |
| 78 | int find_tab_column (int pos); | |
| 79 | int find_column (int pos); | |
| 80 | int get_tab_pos (int n); | |
| 81 | char get_tab_align (int n); | |
| 82 | void set_linelength (int linelen); | |
| 83 | int no_columns (void); | |
| 84 | int no_gaps (void); | |
| 85 | int is_gap (cols *c); | |
| 86 | void dump_table (void); | |
| 87 | void emit_table_header (int space); | |
| 88 | void emit_col (int n); | |
| 89 | void emit_new_row (void); | |
| 90 | void emit_finish_table (void); | |
| 91 | int get_right (cols *c); | |
| 92 | void add_indent (int indent); | |
| 93 | void finish_row (void); | |
| 94 | int get_effective_linelength (void); | |
| 465b256c | 95 | void set_space (int space); |
| 4d3e9548 JL |
96 | void emit_colspan (void); |
| 97 | void emit_td (int percentage, const char *s = ">"); | |
| 92d0a6a6 JR |
98 | |
| 99 | tabs *tab_stops; /* tab stop positions */ | |
| 465b256c | 100 | simple_output *out; |
| 92d0a6a6 JR |
101 | private: |
| 102 | cols *columns; /* column entries */ | |
| 92d0a6a6 JR |
103 | int linelength; |
| 104 | cols *last_col; /* last column started */ | |
| 465b256c | 105 | int start_space; /* have we seen a `.sp' tag? */ |
| 92d0a6a6 JR |
106 | |
| 107 | void remove_cols (cols *c); | |
| 108 | }; | |
| 109 | ||
| 110 | /* | |
| 111 | * the indentation wrapper. | |
| 112 | * Builds an indentation from a html-table. | |
| 113 | * This table is only emitted if the paragraph is emitted. | |
| 114 | */ | |
| 115 | ||
| 116 | class html_indent { | |
| 117 | public: | |
| 118 | html_indent (simple_output *op, int ind, int pageoffset, int linelength); | |
| 119 | ~html_indent (void); | |
| 120 | void begin (int space); // called if we need to use the indent | |
| 121 | void get_reg (int *ind, int *pageoffset, int *linelength); | |
| 122 | ||
| 123 | // the indent is shutdown when it is deleted | |
| 124 | ||
| 125 | private: | |
| 4d3e9548 | 126 | void end (void); |
| 92d0a6a6 JR |
127 | int is_used; |
| 128 | int pg; // values of the registers as passed via initialization | |
| 129 | int ll; | |
| 130 | int in; | |
| 131 | html_table *table; | |
| 132 | }; | |
| 133 | ||
| 134 | #endif |