[BACK]Return to html.h CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Annotation of mandoc/html.h, Revision 1.28

1.28    ! kristaps    1: /*     $Id: html.h,v 1.27 2010/07/23 00:08:57 kristaps Exp $ */
1.1       kristaps    2: /*
1.26      schwarze    3:  * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
1.1       kristaps    4:  *
                      5:  * Permission to use, copy, modify, and distribute this software for any
1.6       kristaps    6:  * purpose with or without fee is hereby granted, provided that the above
                      7:  * copyright notice and this permission notice appear in all copies.
1.1       kristaps    8:  *
1.6       kristaps    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.
1.1       kristaps   16:  */
                     17: #ifndef HTML_H
                     18: #define HTML_H
                     19:
1.6       kristaps   20: __BEGIN_DECLS
                     21:
                     22: enum   htmltag {
                     23:        TAG_HTML,
                     24:        TAG_HEAD,
                     25:        TAG_BODY,
                     26:        TAG_META,
                     27:        TAG_TITLE,
                     28:        TAG_DIV,
                     29:        TAG_H1,
                     30:        TAG_H2,
                     31:        TAG_SPAN,
                     32:        TAG_LINK,
                     33:        TAG_BR,
                     34:        TAG_A,
                     35:        TAG_TABLE,
1.28    ! kristaps   36:        TAG_TBODY,
1.6       kristaps   37:        TAG_COL,
                     38:        TAG_TR,
                     39:        TAG_TD,
                     40:        TAG_LI,
                     41:        TAG_UL,
                     42:        TAG_OL,
1.28    ! kristaps   43:        TAG_DL,
        !            44:        TAG_DT,
        !            45:        TAG_DD,
1.6       kristaps   46:        TAG_MAX
                     47: };
                     48:
                     49: enum   htmlattr {
                     50:        ATTR_HTTPEQUIV,
                     51:        ATTR_CONTENT,
                     52:        ATTR_NAME,
                     53:        ATTR_REL,
                     54:        ATTR_HREF,
                     55:        ATTR_TYPE,
                     56:        ATTR_MEDIA,
                     57:        ATTR_CLASS,
                     58:        ATTR_STYLE,
                     59:        ATTR_WIDTH,
                     60:        ATTR_VALIGN,
1.9       kristaps   61:        ATTR_TARGET,
1.11      kristaps   62:        ATTR_ID,
1.15      kristaps   63:        ATTR_SUMMARY,
1.6       kristaps   64:        ATTR_MAX
                     65: };
                     66:
1.21      kristaps   67: enum   htmlfont {
                     68:        HTMLFONT_NONE = 0,
                     69:        HTMLFONT_BOLD,
                     70:        HTMLFONT_ITALIC,
                     71:        HTMLFONT_MAX
                     72: };
                     73:
1.6       kristaps   74: struct tag {
1.14      kristaps   75:        struct tag       *next;
1.6       kristaps   76:        enum htmltag      tag;
                     77: };
                     78:
1.14      kristaps   79: struct tagq {
                     80:        struct tag       *head;
                     81: };
1.6       kristaps   82:
                     83: struct htmlpair {
                     84:        enum htmlattr     key;
1.13      kristaps   85:        const char       *val;
1.1       kristaps   86: };
                     87:
1.23      kristaps   88: #define        PAIR_INIT(p, t, v) \
                     89:        do { \
                     90:                (p)->key = (t); \
                     91:                (p)->val = (v); \
                     92:        } while (/* CONSTCOND */ 0)
                     93:
                     94: #define        PAIR_ID_INIT(p, v)      PAIR_INIT(p, ATTR_ID, v)
                     95: #define        PAIR_CLASS_INIT(p, v)   PAIR_INIT(p, ATTR_CLASS, v)
                     96: #define        PAIR_HREF_INIT(p, v)    PAIR_INIT(p, ATTR_HREF, v)
                     97: #define        PAIR_STYLE_INIT(p, h)   PAIR_INIT(p, ATTR_STYLE, (h)->buf)
                     98: #define        PAIR_SUMMARY_INIT(p, v) PAIR_INIT(p, ATTR_SUMMARY, v)
1.12      kristaps   99:
1.22      kristaps  100: enum   htmltype {
                    101:        HTML_HTML_4_01_STRICT,
                    102:        HTML_XHTML_1_0_STRICT
                    103: };
                    104:
1.6       kristaps  105: struct html {
                    106:        int               flags;
                    107: #define        HTML_NOSPACE     (1 << 0)
1.25      kristaps  108: #define        HTML_IGNDELIM    (1 << 1)
                    109: #define        HTML_KEEP        (1 << 2)
                    110: #define        HTML_PREKEEP     (1 << 3)
1.27      kristaps  111: #define        HTML_NONOSPACE   (1 << 4)
1.6       kristaps  112:        struct tagq       tags;
                    113:        void             *symtab;
                    114:        char             *base;
1.8       kristaps  115:        char             *base_man;
1.9       kristaps  116:        char             *base_includes;
1.6       kristaps  117:        char             *style;
1.8       kristaps  118:        char              buf[BUFSIZ];
                    119:        size_t            buflen;
1.19      kristaps  120:        struct tag       *metaf;
1.21      kristaps  121:        enum htmlfont     metal;
                    122:        enum htmlfont     metac;
1.22      kristaps  123:        enum htmltype     type;
1.6       kristaps  124: };
1.1       kristaps  125:
1.12      kristaps  126: struct roffsu;
                    127:
1.22      kristaps  128: void             print_gen_decls(struct html *);
1.6       kristaps  129: void             print_gen_head(struct html *);
1.21      kristaps  130: struct tag      *print_ofont(struct html *, enum htmlfont);
1.6       kristaps  131: struct tag      *print_otag(struct html *, enum htmltag,
                    132:                                int, const struct htmlpair *);
                    133: void             print_tagq(struct html *, const struct tag *);
                    134: void             print_stagq(struct html *, const struct tag *);
                    135: void             print_text(struct html *, const char *);
1.1       kristaps  136:
1.12      kristaps  137: void             bufcat_su(struct html *, const char *,
                    138:                        const struct roffsu *);
                    139: void             buffmt_man(struct html *,
                    140:                        const char *, const char *);
1.10      kristaps  141: void             buffmt_includes(struct html *, const char *);
                    142: void             buffmt(struct html *, const char *, ...);
                    143: void             bufcat(struct html *, const char *);
1.12      kristaps  144: void             bufcat_style(struct html *,
                    145:                        const char *, const char *);
1.10      kristaps  146: void             bufncat(struct html *, const char *, size_t);
                    147: void             bufinit(struct html *);
                    148:
1.16      kristaps  149: void             html_idcat(char *, const char *, int);
                    150:
1.1       kristaps  151: __END_DECLS
                    152:
                    153: #endif /*!HTML_H*/

CVSweb