]>
git.cameronkatri.com Git - mandoc.git/blob - out.h
1 /* $Id: out.h,v 1.34 2020/04/03 11:35:01 schwarze Exp $ */
3 * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2014, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 * Utilities for use by multiple mandoc(1) formatters.
22 SCALE_CM
, /* centimeters (c) */
23 SCALE_IN
, /* inches (i) */
24 SCALE_PC
, /* pica (P) */
25 SCALE_PT
, /* points (p) */
26 SCALE_EM
, /* ems (m) */
27 SCALE_MM
, /* mini-ems (M) */
28 SCALE_EN
, /* ens (n) */
29 SCALE_BU
, /* default horizontal (u) */
30 SCALE_VS
, /* default vertical (v) */
31 SCALE_FS
, /* syn. for u (f) */
36 size_t width
; /* width of cell */
37 size_t nwidth
; /* max. width of number in cell */
38 size_t decimal
; /* decimal position in cell */
39 size_t spacing
; /* spacing after the column */
40 int flags
; /* layout flags, see tbl_cell */
48 typedef size_t (*tbl_sulen
)(const struct roffsu
*, void *);
49 typedef size_t (*tbl_strlen
)(const char *, void *);
50 typedef size_t (*tbl_len
)(size_t, void *);
53 tbl_sulen sulen
; /* calculate scaling unit length */
54 tbl_strlen slen
; /* calculate string length */
55 tbl_len len
; /* produce width of empty space */
56 struct roffcol
*cols
; /* master column specifiers */
57 void *arg
; /* passed to sulen, slen, and len */
60 #define SCALE_HS_INIT(p, v) \
61 do { (p)->unit = SCALE_EN; \
63 while (/* CONSTCOND */ 0)
68 const char *a2roffsu(const char *, struct roffsu
*, enum roffscale
);
69 void tblcalc(struct rofftbl
*,
70 const struct tbl_span
*, size_t, size_t);