2003-05-02 00:48:41 +00:00
|
|
|
|
/* multi.c -- multiple-column tables (@multitable) for makeinfo.
|
|
|
|
|
$Id: multi.c,v 1.4 2002/11/04 21:28:10 karl Exp $
|
1997-01-11 02:12:38 +00:00
|
|
|
|
|
2003-05-02 00:48:41 +00:00
|
|
|
|
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free Software
|
|
|
|
|
Foundation, Inc.
|
1997-01-11 02:12:38 +00:00
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software Foundation,
|
2002-03-25 13:08:32 +00:00
|
|
|
|
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
|
|
Written by phr@gnu.org (Paul Rubin). */
|
1997-01-11 02:12:38 +00:00
|
|
|
|
|
1999-01-14 19:35:19 +00:00
|
|
|
|
#include "system.h"
|
2000-01-17 10:39:58 +00:00
|
|
|
|
#include "insertion.h"
|
1997-01-11 02:12:38 +00:00
|
|
|
|
#include "makeinfo.h"
|
2002-03-25 13:08:32 +00:00
|
|
|
|
#include "xml.h"
|
1997-01-11 02:12:38 +00:00
|
|
|
|
|
1999-01-14 19:35:19 +00:00
|
|
|
|
#define MAXCOLS 100 /* remove this limit later @@ */
|
1997-01-11 02:12:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Output environments. This is a hack grafted onto existing
|
|
|
|
|
* structure. The "output environment" used to consist of the
|
|
|
|
|
* global variables `output_paragraph', `fill_column', etc.
|
|
|
|
|
* Routines like add_char would manipulate these variables.
|
|
|
|
|
*
|
|
|
|
|
* Now, when formatting a multitable, we maintain separate environments
|
|
|
|
|
* for each column. That way we can build up the columns separately
|
|
|
|
|
* and write them all out at once. The "current" output environment"
|
|
|
|
|
* is still kept in those global variables, so that the old output
|
|
|
|
|
* routines don't have to change. But we provide routines to save
|
|
|
|
|
* and restore these variables in an "environment table". The
|
|
|
|
|
* `select_output_environment' function switches from one output
|
|
|
|
|
* environment to another.
|
|
|
|
|
*
|
1999-01-14 19:35:19 +00:00
|
|
|
|
* Environment #0 (i.e., element #0 of the table) is the regular
|
1997-01-11 02:12:38 +00:00
|
|
|
|
* environment that is used when we're not formatting a multitable.
|
|
|
|
|
*
|
|
|
|
|
* Environment #N (where N = 1,2,3,...) is the env. for column #N of
|
|
|
|
|
* the table, when a multitable is active.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* contents of an output environment */
|
|
|
|
|
/* some more vars may end up being needed here later @@ */
|
|
|
|
|
struct env
|
|
|
|
|
{
|
|
|
|
|
unsigned char *output_paragraph;
|
|
|
|
|
int output_paragraph_offset;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
int meta_char_pos;
|
1997-01-11 02:12:38 +00:00
|
|
|
|
int output_column;
|
|
|
|
|
int paragraph_is_open;
|
|
|
|
|
int current_indent;
|
|
|
|
|
int fill_column;
|
1999-01-14 19:35:19 +00:00
|
|
|
|
} envs[MAXCOLS]; /* the environment table */
|
1997-01-11 02:12:38 +00:00
|
|
|
|
|
|
|
|
|
/* index in environment table of currently selected environment */
|
|
|
|
|
static int current_env_no;
|
|
|
|
|
|
|
|
|
|
/* column number of last column in current multitable */
|
|
|
|
|
static int last_column;
|
|
|
|
|
|
|
|
|
|
/* flags indicating whether horizontal and vertical separators need
|
|
|
|
|
to be drawn, separating rows and columns in the current multitable. */
|
|
|
|
|
static int hsep, vsep;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
|
|
|
|
/* whether this is the first row. */
|
|
|
|
|
static int first_row;
|
|
|
|
|
|
|
|
|
|
static void output_multitable_row ();
|
1997-01-11 02:12:38 +00:00
|
|
|
|
|
2000-01-17 10:39:58 +00:00
|
|
|
|
/* Output a row. Calls insert, but also flushes the buffered output
|
|
|
|
|
when we see a newline, since in multitable every line is a separate
|
|
|
|
|
paragraph. */
|
1999-01-14 19:35:19 +00:00
|
|
|
|
static void
|
|
|
|
|
out_char (ch)
|
|
|
|
|
int ch;
|
|
|
|
|
{
|
2000-01-17 10:39:58 +00:00
|
|
|
|
if (html)
|
|
|
|
|
add_char (ch);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int env = select_output_environment (0);
|
|
|
|
|
insert (ch);
|
|
|
|
|
if (ch == '\n')
|
|
|
|
|
{
|
|
|
|
|
uninhibit_output_flushing ();
|
|
|
|
|
flush_output ();
|
|
|
|
|
inhibit_output_flushing ();
|
|
|
|
|
}
|
|
|
|
|
select_output_environment (env);
|
|
|
|
|
}
|
1999-01-14 19:35:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
draw_horizontal_separator ()
|
|
|
|
|
{
|
|
|
|
|
int i, j, s;
|
|
|
|
|
|
2000-01-17 10:39:58 +00:00
|
|
|
|
if (html)
|
|
|
|
|
{
|
|
|
|
|
add_word ("<hr>");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2002-03-25 13:08:32 +00:00
|
|
|
|
if (xml)
|
|
|
|
|
return;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
1999-01-14 19:35:19 +00:00
|
|
|
|
for (s = 0; s < envs[0].current_indent; s++)
|
|
|
|
|
out_char (' ');
|
|
|
|
|
if (vsep)
|
|
|
|
|
out_char ('+');
|
|
|
|
|
for (i = 1; i <= last_column; i++) {
|
|
|
|
|
for (j = 0; j <= envs[i].fill_column; j++)
|
|
|
|
|
out_char ('-');
|
|
|
|
|
if (vsep)
|
|
|
|
|
out_char ('+');
|
|
|
|
|
}
|
|
|
|
|
out_char ('\n');
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
|
|
|
|
/* multitable strategy:
|
|
|
|
|
for each item {
|
|
|
|
|
for each column in an item {
|
|
|
|
|
initialize a new paragraph
|
|
|
|
|
do ordinary formatting into the new paragraph
|
|
|
|
|
save the paragraph away
|
|
|
|
|
repeat if there are more paragraphs in the column
|
|
|
|
|
}
|
|
|
|
|
dump out the saved paragraphs and free the storage
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
For HTML we construct a simple HTML 3.2 table with <br>s inserted
|
|
|
|
|
to help non-tables browsers. `@item' inserts a <tr> and `@tab'
|
|
|
|
|
inserts <td>; we also try to close <tr>. The only real
|
|
|
|
|
alternative is to rely on the info formatting engine and present
|
|
|
|
|
preformatted text. */
|
|
|
|
|
|
1997-01-11 02:12:38 +00:00
|
|
|
|
void
|
|
|
|
|
do_multitable ()
|
|
|
|
|
{
|
|
|
|
|
int ncolumns;
|
|
|
|
|
|
|
|
|
|
if (multitable_active)
|
|
|
|
|
{
|
|
|
|
|
line_error ("Multitables cannot be nested");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-17 10:39:58 +00:00
|
|
|
|
close_single_paragraph ();
|
|
|
|
|
|
1997-01-11 02:12:38 +00:00
|
|
|
|
/* scan the current item function to get the field widths
|
|
|
|
|
and number of columns, and set up the output environment list
|
|
|
|
|
accordingly. */
|
2002-03-25 13:08:32 +00:00
|
|
|
|
/* if (docbook)*/ /* 05-08 */
|
|
|
|
|
if (xml)
|
|
|
|
|
xml_no_para = 1;
|
1997-01-11 02:12:38 +00:00
|
|
|
|
ncolumns = setup_multitable_parameters ();
|
2000-01-17 10:39:58 +00:00
|
|
|
|
first_row = 1;
|
|
|
|
|
|
|
|
|
|
/* <p> for non-tables browsers. @multitable implicitly ends the
|
|
|
|
|
current paragraph, so this is ok. */
|
|
|
|
|
if (html)
|
|
|
|
|
add_word ("<p><table>");
|
2002-03-25 13:08:32 +00:00
|
|
|
|
/* else if (docbook)*/ /* 05-08 */
|
|
|
|
|
else if (xml)
|
|
|
|
|
{
|
|
|
|
|
int *widths = xmalloc (ncolumns * sizeof (int));
|
|
|
|
|
int i;
|
|
|
|
|
for (i=0; i<ncolumns; i++)
|
|
|
|
|
widths[i] = envs[i+1].fill_column;
|
|
|
|
|
xml_begin_multitable (ncolumns, widths);
|
|
|
|
|
free (widths);
|
|
|
|
|
}
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
1997-01-11 02:12:38 +00:00
|
|
|
|
if (hsep)
|
|
|
|
|
draw_horizontal_separator ();
|
|
|
|
|
|
|
|
|
|
/* The next @item command will direct stdout into the first column
|
|
|
|
|
and start processing. @tab will then switch to the next column,
|
|
|
|
|
and @item will flush out the saved output and return to the first
|
|
|
|
|
column. Environment #1 is the first column. (Environment #0 is
|
|
|
|
|
the normal output) */
|
|
|
|
|
|
|
|
|
|
++multitable_active;
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-17 10:39:58 +00:00
|
|
|
|
/* Called to handle a {...} template on the @multitable line.
|
|
|
|
|
We're at the { and our first job is to find the matching }; as a side
|
|
|
|
|
effect, we change *PARAMS to point to after it. Our other job is to
|
|
|
|
|
expand the template text and return the width of that string. */
|
|
|
|
|
static unsigned
|
|
|
|
|
find_template_width (params)
|
|
|
|
|
char **params;
|
|
|
|
|
{
|
|
|
|
|
char *template, *xtemplate;
|
|
|
|
|
unsigned len;
|
|
|
|
|
char *start = *params;
|
|
|
|
|
int brace_level = 0;
|
|
|
|
|
|
|
|
|
|
/* The first character should be a {. */
|
|
|
|
|
if (!params || !*params || **params != '{')
|
|
|
|
|
{
|
|
|
|
|
line_error ("find_template width internal error: passed %s",
|
|
|
|
|
params ? *params : "null");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
2002-03-25 13:08:32 +00:00
|
|
|
|
if (**params == '{' && (*params == start || (*params)[-1] != '@'))
|
2000-01-17 10:39:58 +00:00
|
|
|
|
brace_level++;
|
|
|
|
|
else if (**params == '}' && (*params)[-1] != '@')
|
|
|
|
|
brace_level--;
|
|
|
|
|
else if (**params == 0)
|
|
|
|
|
{
|
|
|
|
|
line_error (_("Missing } in @multitable template"));
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
(*params)++;
|
|
|
|
|
}
|
|
|
|
|
while (brace_level > 0);
|
|
|
|
|
|
|
|
|
|
template = substring (start + 1, *params - 1); /* omit braces */
|
|
|
|
|
xtemplate = expansion (template, 0);
|
|
|
|
|
len = strlen (xtemplate);
|
|
|
|
|
|
|
|
|
|
free (template);
|
|
|
|
|
free (xtemplate);
|
|
|
|
|
|
|
|
|
|
return len;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1997-01-11 02:12:38 +00:00
|
|
|
|
/* Read the parameters for a multitable from the current command
|
|
|
|
|
line, save the parameters away, and return the
|
|
|
|
|
number of columns. */
|
|
|
|
|
int
|
|
|
|
|
setup_multitable_parameters ()
|
|
|
|
|
{
|
|
|
|
|
char *params = insertion_stack->item_function;
|
|
|
|
|
int nchars;
|
|
|
|
|
float columnfrac;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
char command[200]; /* xx no fixed limits */
|
1997-01-11 02:12:38 +00:00
|
|
|
|
int i = 1;
|
|
|
|
|
|
|
|
|
|
/* We implement @hsep and @vsep even though TeX doesn't.
|
|
|
|
|
We don't get mixing of @columnfractions and templates right,
|
|
|
|
|
but TeX doesn't either. */
|
|
|
|
|
hsep = vsep = 0;
|
|
|
|
|
|
|
|
|
|
while (*params) {
|
|
|
|
|
while (whitespace (*params))
|
|
|
|
|
params++;
|
|
|
|
|
|
|
|
|
|
if (*params == '@') {
|
1999-01-14 19:35:19 +00:00
|
|
|
|
sscanf (params, "%200s", command);
|
|
|
|
|
nchars = strlen (command);
|
1997-01-11 02:12:38 +00:00
|
|
|
|
params += nchars;
|
|
|
|
|
if (strcmp (command, "@hsep") == 0)
|
1999-01-14 19:35:19 +00:00
|
|
|
|
hsep++;
|
1997-01-11 02:12:38 +00:00
|
|
|
|
else if (strcmp (command, "@vsep") == 0)
|
1999-01-14 19:35:19 +00:00
|
|
|
|
vsep++;
|
1997-01-11 02:12:38 +00:00
|
|
|
|
else if (strcmp (command, "@columnfractions") == 0) {
|
1999-01-14 19:35:19 +00:00
|
|
|
|
/* Clobber old environments and create new ones, starting at #1.
|
|
|
|
|
Environment #0 is the normal output, so don't mess with it. */
|
|
|
|
|
for ( ; i <= MAXCOLS; i++) {
|
|
|
|
|
if (sscanf (params, "%f", &columnfrac) < 1)
|
|
|
|
|
goto done;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
/* Unfortunately, can't use %n since m68k-hp-bsd libc (at least)
|
1999-01-14 19:35:19 +00:00
|
|
|
|
doesn't support it. So skip whitespace (preceding the
|
|
|
|
|
number) and then non-whitespace (the number). */
|
|
|
|
|
while (*params && (*params == ' ' || *params == '\t'))
|
|
|
|
|
params++;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
/* Hmm, but what about @columnfractions 3foo. Well, I suppose
|
1999-01-14 19:35:19 +00:00
|
|
|
|
it's invalid input anyway. */
|
|
|
|
|
while (*params && *params != ' ' && *params != '\t'
|
|
|
|
|
&& *params != '\n' && *params != '@')
|
|
|
|
|
params++;
|
|
|
|
|
setup_output_environment (i,
|
|
|
|
|
(int) (columnfrac * (fill_column - current_indent) + .5));
|
|
|
|
|
}
|
1997-01-11 02:12:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else if (*params == '{') {
|
2000-01-17 10:39:58 +00:00
|
|
|
|
unsigned template_width = find_template_width (¶ms);
|
|
|
|
|
|
1997-01-11 02:12:38 +00:00
|
|
|
|
/* This gives us two spaces between columns. Seems reasonable.
|
2000-01-17 10:39:58 +00:00
|
|
|
|
How to take into account current_indent here? */
|
|
|
|
|
setup_output_environment (i++, template_width + 2);
|
1997-01-11 02:12:38 +00:00
|
|
|
|
|
|
|
|
|
} else {
|
1999-01-14 19:35:19 +00:00
|
|
|
|
warning (_("ignoring stray text `%s' after @multitable"), params);
|
1997-01-11 02:12:38 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
done:
|
|
|
|
|
flush_output ();
|
|
|
|
|
inhibit_output_flushing ();
|
|
|
|
|
|
|
|
|
|
last_column = i - 1;
|
|
|
|
|
return last_column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Initialize environment number ENV_NO, of width WIDTH.
|
|
|
|
|
The idea is that we're going to use one environment for each column of
|
|
|
|
|
a multitable, so we can build them up separately and print them
|
|
|
|
|
all out at the end. */
|
|
|
|
|
int
|
|
|
|
|
setup_output_environment (env_no, width)
|
|
|
|
|
int env_no;
|
|
|
|
|
int width;
|
|
|
|
|
{
|
|
|
|
|
int old_env = select_output_environment (env_no);
|
|
|
|
|
|
|
|
|
|
/* clobber old environment and set width of new one */
|
|
|
|
|
init_paragraph ();
|
|
|
|
|
|
|
|
|
|
/* make our change */
|
|
|
|
|
fill_column = width;
|
|
|
|
|
|
|
|
|
|
/* Save new environment and restore previous one. */
|
|
|
|
|
select_output_environment (old_env);
|
|
|
|
|
|
|
|
|
|
return env_no;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Direct current output to environment number N. Used when
|
|
|
|
|
switching work from one column of a multitable to the next.
|
|
|
|
|
Returns previous environment number. */
|
|
|
|
|
int
|
|
|
|
|
select_output_environment (n)
|
|
|
|
|
int n;
|
|
|
|
|
{
|
|
|
|
|
struct env *e = &envs[current_env_no];
|
|
|
|
|
int old_env_no = current_env_no;
|
|
|
|
|
|
|
|
|
|
/* stash current env info from global vars into the old environment */
|
|
|
|
|
e->output_paragraph = output_paragraph;
|
|
|
|
|
e->output_paragraph_offset = output_paragraph_offset;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
e->meta_char_pos = meta_char_pos;
|
1997-01-11 02:12:38 +00:00
|
|
|
|
e->output_column = output_column;
|
|
|
|
|
e->paragraph_is_open = paragraph_is_open;
|
|
|
|
|
e->current_indent = current_indent;
|
|
|
|
|
e->fill_column = fill_column;
|
|
|
|
|
|
|
|
|
|
/* now copy new environment into global vars */
|
|
|
|
|
current_env_no = n;
|
|
|
|
|
e = &envs[current_env_no];
|
|
|
|
|
output_paragraph = e->output_paragraph;
|
|
|
|
|
output_paragraph_offset = e->output_paragraph_offset;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
meta_char_pos = e->meta_char_pos;
|
1997-01-11 02:12:38 +00:00
|
|
|
|
output_column = e->output_column;
|
|
|
|
|
paragraph_is_open = e->paragraph_is_open;
|
|
|
|
|
current_indent = e->current_indent;
|
|
|
|
|
fill_column = e->fill_column;
|
|
|
|
|
return old_env_no;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* advance to the next environment number */
|
1999-01-14 19:35:19 +00:00
|
|
|
|
void
|
1997-01-11 02:12:38 +00:00
|
|
|
|
nselect_next_environment ()
|
|
|
|
|
{
|
|
|
|
|
if (current_env_no >= last_column) {
|
1999-01-14 19:35:19 +00:00
|
|
|
|
line_error (_("Too many columns in multitable item (max %d)"), last_column);
|
|
|
|
|
return;
|
1997-01-11 02:12:38 +00:00
|
|
|
|
}
|
|
|
|
|
select_output_environment (current_env_no + 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-01-14 19:35:19 +00:00
|
|
|
|
/* do anything needed at the beginning of processing a
|
|
|
|
|
multitable column. */
|
|
|
|
|
void
|
|
|
|
|
init_column ()
|
|
|
|
|
{
|
|
|
|
|
/* don't indent 1st paragraph in the item */
|
|
|
|
|
cm_noindent ();
|
|
|
|
|
|
|
|
|
|
/* throw away possible whitespace after @item or @tab command */
|
|
|
|
|
skip_whitespace ();
|
|
|
|
|
}
|
|
|
|
|
|
1997-01-11 02:12:38 +00:00
|
|
|
|
/* start a new item (row) of a multitable */
|
1999-01-14 19:35:19 +00:00
|
|
|
|
int
|
1997-01-11 02:12:38 +00:00
|
|
|
|
multitable_item ()
|
|
|
|
|
{
|
|
|
|
|
if (!multitable_active) {
|
2000-01-17 10:39:58 +00:00
|
|
|
|
line_error ("multitable_item internal error: no active multitable");
|
|
|
|
|
xexit (1);
|
1997-01-11 02:12:38 +00:00
|
|
|
|
}
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
|
|
|
|
if (html)
|
|
|
|
|
{
|
|
|
|
|
if (!first_row)
|
2002-03-25 13:08:32 +00:00
|
|
|
|
add_word ("<br></td></tr>"); /* <br> for non-tables browsers. */
|
|
|
|
|
add_word ("<tr align=\"left\"><td valign=\"top\">");
|
2000-01-17 10:39:58 +00:00
|
|
|
|
first_row = 0;
|
2002-03-25 13:08:32 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
/* else if (docbook)*/ /* 05-08 */
|
|
|
|
|
else if (xml)
|
|
|
|
|
{
|
|
|
|
|
xml_end_multitable_row (first_row);
|
|
|
|
|
first_row = 0;
|
|
|
|
|
return 0;
|
2000-01-17 10:39:58 +00:00
|
|
|
|
}
|
|
|
|
|
first_row = 0;
|
|
|
|
|
|
1997-01-11 02:12:38 +00:00
|
|
|
|
if (current_env_no > 0) {
|
|
|
|
|
output_multitable_row ();
|
|
|
|
|
}
|
|
|
|
|
/* start at column 1 */
|
|
|
|
|
select_output_environment (1);
|
|
|
|
|
if (!output_paragraph) {
|
2003-05-02 00:48:41 +00:00
|
|
|
|
line_error (_("[unexpected] cannot select column #%d in multitable"),
|
|
|
|
|
current_env_no);
|
|
|
|
|
xexit (1);
|
1997-01-11 02:12:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
init_column ();
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
output_multitable_row ()
|
|
|
|
|
{
|
|
|
|
|
/* offset in the output paragraph of the next char needing
|
|
|
|
|
to be output for that column. */
|
|
|
|
|
int offset[MAXCOLS];
|
2000-01-17 10:39:58 +00:00
|
|
|
|
int i, j, s, remaining;
|
|
|
|
|
int had_newline = 0;
|
1997-01-11 02:12:38 +00:00
|
|
|
|
|
|
|
|
|
for (i = 0; i <= last_column; i++)
|
|
|
|
|
offset[i] = 0;
|
|
|
|
|
|
|
|
|
|
/* select the current environment, to make sure the env variables
|
|
|
|
|
get updated */
|
|
|
|
|
select_output_environment (current_env_no);
|
|
|
|
|
|
|
|
|
|
#define CHAR_ADDR(n) (offset[i] + (n))
|
|
|
|
|
#define CHAR_AT(n) (envs[i].output_paragraph[CHAR_ADDR(n)])
|
|
|
|
|
|
|
|
|
|
/* remove trailing whitespace from each column */
|
|
|
|
|
for (i = 1; i <= last_column; i++) {
|
2000-01-17 10:39:58 +00:00
|
|
|
|
if (envs[i].output_paragraph_offset)
|
|
|
|
|
while (cr_or_whitespace (CHAR_AT (envs[i].output_paragraph_offset - 1)))
|
|
|
|
|
envs[i].output_paragraph_offset--;
|
|
|
|
|
|
|
|
|
|
if (i == current_env_no)
|
|
|
|
|
output_paragraph_offset = envs[i].output_paragraph_offset;
|
1997-01-11 02:12:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* read the current line from each column, outputting them all
|
|
|
|
|
pasted together. Do this til all lines are output from all
|
|
|
|
|
columns. */
|
|
|
|
|
for (;;) {
|
|
|
|
|
remaining = 0;
|
|
|
|
|
/* first, see if there is any work to do */
|
|
|
|
|
for (i = 1; i <= last_column; i++) {
|
|
|
|
|
if (CHAR_ADDR (0) < envs[i].output_paragraph_offset) {
|
1999-01-14 19:35:19 +00:00
|
|
|
|
remaining = 1;
|
|
|
|
|
break;
|
1997-01-11 02:12:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!remaining)
|
|
|
|
|
break;
|
1999-01-14 19:35:19 +00:00
|
|
|
|
|
|
|
|
|
for (s = 0; s < envs[0].current_indent; s++)
|
|
|
|
|
out_char (' ');
|
|
|
|
|
|
1997-01-11 02:12:38 +00:00
|
|
|
|
if (vsep)
|
|
|
|
|
out_char ('|');
|
|
|
|
|
|
|
|
|
|
for (i = 1; i <= last_column; i++) {
|
2000-01-17 10:39:58 +00:00
|
|
|
|
for (s = 0; s < envs[i].current_indent; s++)
|
1999-01-14 19:35:19 +00:00
|
|
|
|
out_char (' ');
|
1997-01-11 02:12:38 +00:00
|
|
|
|
for (j = 0; CHAR_ADDR (j) < envs[i].output_paragraph_offset; j++) {
|
1999-01-14 19:35:19 +00:00
|
|
|
|
if (CHAR_AT (j) == '\n')
|
|
|
|
|
break;
|
|
|
|
|
out_char (CHAR_AT (j));
|
1997-01-11 02:12:38 +00:00
|
|
|
|
}
|
1999-01-14 19:35:19 +00:00
|
|
|
|
offset[i] += j + 1; /* skip last text plus skip the newline */
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
|
|
|
|
/* Do not output trailing blanks if we're in the last column and
|
|
|
|
|
there will be no trailing |. */
|
|
|
|
|
if (i < last_column && !vsep)
|
|
|
|
|
for (; j <= envs[i].fill_column; j++)
|
|
|
|
|
out_char (' ');
|
1997-01-11 02:12:38 +00:00
|
|
|
|
if (vsep)
|
1999-01-14 19:35:19 +00:00
|
|
|
|
out_char ('|'); /* draw column separator */
|
1997-01-11 02:12:38 +00:00
|
|
|
|
}
|
1999-01-14 19:35:19 +00:00
|
|
|
|
out_char ('\n'); /* end of line */
|
2000-01-17 10:39:58 +00:00
|
|
|
|
had_newline = 1;
|
1997-01-11 02:12:38 +00:00
|
|
|
|
}
|
2000-01-17 10:39:58 +00:00
|
|
|
|
|
|
|
|
|
/* If completely blank item, get blank line despite no other output. */
|
|
|
|
|
if (!had_newline)
|
|
|
|
|
out_char ('\n'); /* end of line */
|
1997-01-11 02:12:38 +00:00
|
|
|
|
|
|
|
|
|
if (hsep)
|
|
|
|
|
draw_horizontal_separator ();
|
|
|
|
|
|
|
|
|
|
/* Now dispose of the buffered output. */
|
|
|
|
|
for (i = 1; i <= last_column; i++) {
|
|
|
|
|
select_output_environment (i);
|
|
|
|
|
init_paragraph ();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#undef CHAR_AT
|
|
|
|
|
#undef CHAR_ADDR
|
|
|
|
|
|
|
|
|
|
/* select a new column in current row of multitable */
|
|
|
|
|
void
|
|
|
|
|
cm_tab ()
|
|
|
|
|
{
|
|
|
|
|
if (!multitable_active)
|
1999-01-14 19:35:19 +00:00
|
|
|
|
error (_("ignoring @tab outside of multitable"));
|
1997-01-11 02:12:38 +00:00
|
|
|
|
|
2000-01-17 10:39:58 +00:00
|
|
|
|
if (html)
|
2002-03-25 13:08:32 +00:00
|
|
|
|
add_word ("</td><td valign=\"top\">");
|
|
|
|
|
/* else if (docbook)*/ /* 05-08 */
|
|
|
|
|
else if (xml)
|
|
|
|
|
xml_end_multitable_column ();
|
2000-01-17 10:39:58 +00:00
|
|
|
|
else
|
|
|
|
|
nselect_next_environment ();
|
|
|
|
|
|
1997-01-11 02:12:38 +00:00
|
|
|
|
init_column ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* close a multitable, flushing its output and resetting
|
|
|
|
|
whatever needs resetting */
|
|
|
|
|
void
|
|
|
|
|
end_multitable ()
|
|
|
|
|
{
|
2002-03-25 13:08:32 +00:00
|
|
|
|
if (!html && !docbook)
|
2000-01-17 10:39:58 +00:00
|
|
|
|
output_multitable_row ();
|
1997-01-11 02:12:38 +00:00
|
|
|
|
|
|
|
|
|
/* Multitables cannot be nested. Otherwise, we'd have to save the
|
|
|
|
|
previous output environment number on a stack somewhere, and then
|
|
|
|
|
restore to that environment. */
|
|
|
|
|
select_output_environment (0);
|
|
|
|
|
multitable_active = 0;
|
|
|
|
|
uninhibit_output_flushing ();
|
2000-01-17 10:39:58 +00:00
|
|
|
|
close_insertion_paragraph ();
|
|
|
|
|
|
|
|
|
|
if (html)
|
2002-03-25 13:08:32 +00:00
|
|
|
|
add_word ("<br></td></tr></table>\n");
|
|
|
|
|
/* else if (docbook)*/ /* 05-08 */
|
|
|
|
|
else if (xml)
|
|
|
|
|
xml_end_multitable ();
|
1997-01-11 02:12:38 +00:00
|
|
|
|
|
|
|
|
|
#if 0
|
1999-01-14 19:35:19 +00:00
|
|
|
|
printf (_("** Multicolumn output from last row:\n"));
|
1997-01-11 02:12:38 +00:00
|
|
|
|
for (i = 1; i <= last_column; i++) {
|
|
|
|
|
select_output_environment (i);
|
1999-01-14 19:35:19 +00:00
|
|
|
|
printf (_("* column #%d: output = %s\n"), i, output_paragraph);
|
1997-01-11 02:12:38 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
}
|