]>
git.cameronkatri.com Git - mandoc.git/blob - term.h
1 /* $Id: term.h,v 1.4 2009/02/22 19:23:48 kristaps Exp $ */
3 * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
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.
33 #define TERMP_BOLD (1 << 0) /* Embolden words. */
34 #define TERMP_UNDERLINE (1 << 1) /* Underline words. */
35 #define TERMP_NOSPACE (1 << 2) /* No space before words. */
36 #define TERMP_NOLPAD (1 << 3) /* No leftpad before flush. */
37 #define TERMP_NOBREAK (1 << 4) /* No break after flush. */
38 #define TERMP_LITERAL (1 << 5) /* Literal words. */
39 #define TERMP_IGNDELIM (1 << 6) /* Delims like regulars. */
44 int (*pre
)(struct termp
*,
45 const struct mdoc_meta
*,
46 const struct mdoc_node
*);
47 void (*post
)(struct termp
*,
48 const struct mdoc_meta
*,
49 const struct mdoc_node
*);
52 void termprint(const struct mdoc_node
*,
53 const struct mdoc_meta
*);
55 void newln(struct termp
*);
56 void vspace(struct termp
*);
57 void word(struct termp
*, const char *);
58 void flushln(struct termp
*);
59 void transcode(struct termp
*,
60 const char *, size_t);
62 const struct termact
*termacts
;