]> git.cameronkatri.com Git - mandoc.git/blobdiff - term.h
Added more character-escape regressions.
[mandoc.git] / term.h
diff --git a/term.h b/term.h
index 21e2b2d536571ec4cdb89d01934de3fbd7ce561c..22fddd18d3407dd5249e21d9f08f44bc2e232649 100644 (file)
--- a/term.h
+++ b/term.h
@@ -1,4 +1,4 @@
-/* $Id: term.h,v 1.4 2009/02/22 19:23:48 kristaps Exp $ */
+/* $Id: term.h,v 1.11 2009/02/25 23:18:50 kristaps Exp $ */
 /*
  * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -37,21 +37,39 @@ struct      termp {
 #define        TERMP_NOBREAK    (1 << 4)       /* No break after flush. */
 #define        TERMP_LITERAL    (1 << 5)       /* Literal words. */
 #define        TERMP_IGNDELIM   (1 << 6)       /* Delims like regulars. */
+#define        TERMP_NONOSPACE  (1 << 7)       /* No space (no autounset). */
+#define        TERMP_NORPAD     (1 << 8)       /* No rightpad. */
        char             *buf;
 };
 
+struct termpair {
+       struct termpair  *ppair;
+       int               type;
+#define        TERMPAIR_FLAG    (1 << 0)
+       int               flag;
+       size_t            offset;
+       size_t            rmargin;
+       int               count;
+};
+
+#define        TERMPAIR_SETFLAG(p, fl) \
+       do { \
+               assert(! (TERMPAIR_FLAG & (p)->type)); \
+               (p)->flag = (fl); \
+               (p)->type |= TERMPAIR_FLAG; \
+       } while (0)
+
 struct termact {
        int             (*pre)(struct termp *,
+                               struct termpair *,
                                const struct mdoc_meta *,
                                const struct mdoc_node *);
        void            (*post)(struct termp *,
+                               struct termpair *,
                                const struct mdoc_meta *,
                                const struct mdoc_node *);
 };
 
-void                     termprint(const struct mdoc_node *,
-                               const struct mdoc_meta *);
-
 void                     newln(struct termp *);
 void                     vspace(struct termp *);
 void                     word(struct termp *, const char *);
@@ -59,6 +77,10 @@ void                   flushln(struct termp *);
 void                     transcode(struct termp *, 
                                const char *, size_t);
 
+void                     subtree(struct termp *,
+                               const struct mdoc_meta *,
+                               const struct mdoc_node *);
+
 const  struct termact   *termacts;
 
 __END_DECLS