]>
git.cameronkatri.com Git - mandoc.git/blob - term.h
1 /* $Id: term.h,v 1.31 2009/03/23 14:22:11 kristaps Exp $ */
3 * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the
7 * above copyright notice and this permission notice appear in all
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
11 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
12 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
13 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
14 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
15 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
16 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
24 /* FIXME - clean up tabs. */
37 size_t rmargin
; /* Current right margin. */
38 size_t maxrmargin
; /* Max right margin. */
39 size_t maxcols
; /* Max size of buf. */
40 size_t offset
; /* Margin offest. */
41 size_t col
; /* Bytes in buf. */
43 #define TERMP_NOSPACE (1 << 0) /* No space before words. */
44 #define TERMP_NOLPAD (1 << 1) /* No leftpad before flush. */
45 #define TERMP_NOBREAK (1 << 2) /* No break after flush. */
46 #define TERMP_LITERAL (1 << 3) /* Literal words. */
47 #define TERMP_IGNDELIM (1 << 4) /* Delims like regulars. */
48 #define TERMP_NONOSPACE (1 << 5) /* No space (no autounset). */
49 #define TERMP_NONOBREAK (1 << 7) /* Don't newln NOBREAK. */
50 #define TERMP_STYLE 0x0300 /* Style mask. */
51 #define TERMP_BOLD (1 << 8) /* Styles... */
52 #define TERMP_UNDER (1 << 9)
53 char *buf
; /* Output buffer. */
54 enum termenc enc
; /* Type of encoding. */
55 void *symtab
; /* Encoded-symbol table. */
58 /* XXX - clean this up. */
61 struct termpair
*ppair
;
63 #define TERMPAIR_FLAG (1 << 0)
70 #define TERMPAIR_SETFLAG(termp, p, fl) \
72 assert(! (TERMPAIR_FLAG & (p)->type)); \
73 (termp)->flags |= (fl); \
75 (p)->type |= TERMPAIR_FLAG; \
76 } while ( /* CONSTCOND */ 0)
79 int (*pre
)(struct termp
*, struct termpair
*,
80 const struct mdoc_meta
*,
81 const struct mdoc_node
*);
82 void (*post
)(struct termp
*, struct termpair
*,
83 const struct mdoc_meta
*,
84 const struct mdoc_node
*);
87 void *term_ascii2htab(void);
88 const char *term_a2ascii(void *, const char *, size_t, size_t *);
89 void term_asciifree(void *);
91 void term_newln(struct termp
*);
92 void term_vspace(struct termp
*);
93 void term_word(struct termp
*, const char *);
94 void term_flushln(struct termp
*);
95 void term_node(struct termp
*, struct termpair
*,
96 const struct mdoc_meta
*,
97 const struct mdoc_node
*);
99 const struct termact
*termacts
;