1 /* PSPP - computes sample statistics.
2 Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3 Written by Ben Pfaff <blp@gnu.org>.
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
24 #include <libpspp/str.h>
31 TAB_ALIGN_MASK = 03, /* Alignment mask. */
32 TAB_RIGHT = 00, /* Right justify. */
33 TAB_LEFT = 01, /* Left justify. */
34 TAB_CENTER = 02, /* Center. */
37 TAB_JOIN = 004, /* Joined cell. */
38 TAB_EMPTY = 010, /* Empty cell. */
41 TAB_EMPH = 020, /* Emphasize cell contents. */
42 TAB_FIX = 040, /* Use fixed font. */
48 TAL_0 = 0, /* No line. */
49 TAL_1 = 1, /* Single line. */
50 TAL_2 = 2, /* Double line. */
51 TAL_GAP = 3, /* Spacing but no line. */
52 TAL_COUNT, /* Number of line styles. */
55 /* Column styles. Must correspond to SOM_COL_*. */
58 TAB_COL_NONE, /* No columns. */
59 TAB_COL_DOWN /* Columns down first. */
63 struct tab_joined_cell
68 struct substring contents;
73 typedef void tab_dim_func (struct tab_table *, struct outp_driver *);
78 struct pool *container;
81 int col_style; /* Columns: One of TAB_COL_*. */
82 int col_group; /* Number of rows per column group. */
83 char *title; /* Table title. */
84 unsigned flags; /* SOMF_*. */
85 int nc, nr; /* Number of columns, rows. */
86 int cf; /* Column factor for indexing purposes. */
87 int l, r, t, b; /* Number of header rows on each side. */
88 struct substring *cc; /* Cell contents; substring *[nr][nc]. */
89 unsigned char *ct; /* Cell types; unsigned char[nr][nc]. */
90 unsigned char *rh; /* Horiz rules; unsigned char[nr+1][nc]. */
91 unsigned char *rv; /* Vert rules; unsigned char[nr][nc+1]. */
92 tab_dim_func *dim; /* Calculates cell widths and heights. */
94 /* Calculated during output. */
95 int *w; /* Column widths; [nc]. */
96 int *h; /* Row heights; [nr]. */
97 int *hrh; /* Heights of horizontal rules; [nr+1]. */
98 int *wrv; /* Widths of vertical rules; [nc+1]. */
99 int wl, wr, ht, hb; /* Width/height of header rows/columns. */
102 int col_ofs, row_ofs; /* X and Y offsets. */
105 /* Number of rows in TABLE. */
106 #define tab_nr(TABLE) ((TABLE)->nr)
108 /* Number of columns in TABLE. */
109 #define tab_nc(TABLE) ((TABLE)->nc)
111 /* Number of left header columns in TABLE. */
112 #define tab_l(TABLE) ((TABLE)->l)
114 /* Number of right header columns in TABLE. */
115 #define tab_r(TABLE) ((TABLE)->r)
117 /* Number of top header rows in TABLE. */
118 #define tab_t(TABLE) ((TABLE)->t)
120 /* Number of bottom header rows in TABLE. */
121 #define tab_b(TABLE) ((TABLE)->b)
124 struct tab_table *tab_create (int nc, int nr, int reallocable);
125 void tab_destroy (struct tab_table *);
126 void tab_resize (struct tab_table *, int nc, int nr);
127 void tab_realloc (struct tab_table *, int nc, int nr);
128 void tab_headers (struct tab_table *, int l, int r, int t, int b);
129 void tab_columns (struct tab_table *, int style, int group);
130 void tab_title (struct tab_table *, const char *, ...)
131 PRINTF_FORMAT (2, 3);
132 void tab_flags (struct tab_table *, unsigned);
133 void tab_submit (struct tab_table *);
136 tab_dim_func tab_natural_dimensions;
137 int tab_natural_width (struct tab_table *t, struct outp_driver *d, int c);
138 int tab_natural_height (struct tab_table *t, struct outp_driver *d, int r);
139 void tab_dim (struct tab_table *, tab_dim_func *);
142 void tab_hline (struct tab_table *, int style, int x1, int x2, int y);
143 void tab_vline (struct tab_table *, int style, int x, int y1, int y2);
144 void tab_box (struct tab_table *, int f_h, int f_v, int i_h, int i_v,
145 int x1, int y1, int x2, int y2);
147 /* Text options, passed in the `opt' argument. */
150 TAT_NONE = 0, /* No options. */
151 TAT_PRINTF = 0x0100, /* Format the text string with sprintf. */
152 TAT_TITLE = 0x0200 | TAB_EMPH, /* Title attributes. */
153 TAT_NOWRAP = 0x0800 /* No text wrap (tab_output_text() only). */
159 void tab_value (struct tab_table *, int c, int r, unsigned char opt,
160 const union value *, const struct fmt_spec *);
161 void tab_float (struct tab_table *, int c, int r, unsigned char opt,
162 double v, int w, int d);
163 void tab_text (struct tab_table *, int c, int r, unsigned opt,
165 PRINTF_FORMAT (5, 6);
166 void tab_joint_text (struct tab_table *, int x1, int y1, int x2, int y2,
167 unsigned opt, const char *, ...)
168 PRINTF_FORMAT (7, 8);
170 /* Cell low-level access. */
171 #define tab_alloc(TABLE, AMT) pool_alloc ((TABLE)->container, (AMT))
172 void tab_raw (struct tab_table *, int c, int r, unsigned opt,
176 void tab_offset (struct tab_table *, int col, int row);
177 void tab_next_row (struct tab_table *);
179 /* Current row/column offset. */
180 #define tab_row(TABLE) ((TABLE)->row_ofs)
181 #define tab_col(TABLE) ((TABLE)->col_ofs)
184 void tab_output_text (int options, const char *string, ...)
185 PRINTF_FORMAT (2, 3);
187 /* Embedding the command name in the output. */
188 void tab_set_command_name (const char *);