]>
git.cameronkatri.com Git - mandoc.git/blob - out.h
1 /* $Id: out.h,v 1.17 2011/03/07 01:35:51 schwarze Exp $ */
3 * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 size_t width
; /* width of cell */
24 size_t decimal
; /* decimal position in cell */
27 typedef size_t (*tbl_strlen
)(const char *, void *);
28 typedef size_t (*tbl_len
)(size_t, void *);
31 tbl_strlen slen
; /* calculate string length */
32 tbl_len len
; /* produce width of empty space */
33 struct roffcol
*cols
; /* master column specifiers */
34 void *arg
; /* passed to slen and len */
53 DECO_NUMBERED
, /* numbered character */
54 DECO_SPECIAL
, /* special character */
55 DECO_SSPECIAL
, /* single-char special */
56 DECO_RESERVED
, /* reserved word */
57 DECO_BOLD
, /* bold font */
58 DECO_ITALIC
, /* italic font */
59 DECO_ROMAN
, /* "normal" undecorated font */
60 DECO_PREVIOUS
, /* revert to previous font */
61 DECO_NOSPACE
, /* suppress spacing */
63 DECO_FFONT
, /* font family */
72 #define SCALE_VS_INIT(p, v) \
73 do { (p)->unit = SCALE_VS; \
75 while (/* CONSTCOND */ 0)
77 #define SCALE_HS_INIT(p, v) \
78 do { (p)->unit = SCALE_BU; \
80 while (/* CONSTCOND */ 0)
82 int a2roffsu(const char *, struct roffsu
*, enum roffscale
);
83 int a2roffdeco(enum roffdeco
*, const char **, size_t *);
84 void time2a(time_t, char *, size_t);
85 void tblcalc(struct rofftbl
*tbl
, const struct tbl_span
*);