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

Annotation of mandoc/html.h, Revision 1.22

1.22    ! kristaps    1: /*     $Id: html.h,v 1.21 2009/11/16 06:07:49 kristaps Exp $ */
1.1       kristaps    2: /*
1.6       kristaps    3:  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
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,
                     36:        TAG_COL,
                     37:        TAG_TR,
                     38:        TAG_TD,
                     39:        TAG_LI,
                     40:        TAG_UL,
                     41:        TAG_OL,
                     42:        TAG_MAX
                     43: };
                     44:
                     45: enum   htmlattr {
                     46:        ATTR_HTTPEQUIV,
                     47:        ATTR_CONTENT,
                     48:        ATTR_NAME,
                     49:        ATTR_REL,
                     50:        ATTR_HREF,
                     51:        ATTR_TYPE,
                     52:        ATTR_MEDIA,
                     53:        ATTR_CLASS,
                     54:        ATTR_STYLE,
                     55:        ATTR_WIDTH,
                     56:        ATTR_VALIGN,
1.9       kristaps   57:        ATTR_TARGET,
1.11      kristaps   58:        ATTR_ID,
1.15      kristaps   59:        ATTR_SUMMARY,
1.6       kristaps   60:        ATTR_MAX
                     61: };
                     62:
1.21      kristaps   63: enum   htmlfont {
                     64:        HTMLFONT_NONE = 0,
                     65:        HTMLFONT_BOLD,
                     66:        HTMLFONT_ITALIC,
                     67:        HTMLFONT_MAX
                     68: };
                     69:
1.6       kristaps   70: struct tag {
1.14      kristaps   71:        struct tag       *next;
1.6       kristaps   72:        enum htmltag      tag;
                     73: };
                     74:
                     75: struct ord {
1.14      kristaps   76:        struct ord       *next;
                     77:        const void       *cookie;
1.6       kristaps   78:        int               pos;
                     79: };
1.1       kristaps   80:
1.14      kristaps   81: struct tagq {
                     82:        struct tag       *head;
                     83: };
                     84: struct ordq {
                     85:        struct ord       *head;
                     86: };
1.6       kristaps   87:
                     88: struct htmlpair {
                     89:        enum htmlattr     key;
1.13      kristaps   90:        const char       *val;
1.1       kristaps   91: };
                     92:
1.12      kristaps   93: #define        PAIR_CLASS_INIT(p, v) \
                     94:        do { (p)->key = ATTR_CLASS; \
                     95:        (p)->val = (v); } while (/* CONSTCOND */ 0)
                     96: #define        PAIR_HREF_INIT(p, v) \
                     97:        do { (p)->key = ATTR_HREF; \
                     98:        (p)->val = (v); } while (/* CONSTCOND */ 0)
                     99: #define        PAIR_STYLE_INIT(p, h) \
                    100:        do { (p)->key = ATTR_STYLE; \
                    101:        (p)->val = (h)->buf; } while (/* CONSTCOND */ 0)
1.15      kristaps  102: #define        PAIR_SUMMARY_INIT(p, v) \
                    103:        do { (p)->key = ATTR_SUMMARY; \
                    104:        (p)->val = (v); } while (/* CONSTCOND */ 0)
1.12      kristaps  105:
1.22    ! kristaps  106: enum   htmltype {
        !           107:        HTML_HTML_4_01_STRICT,
        !           108:        HTML_XHTML_1_0_STRICT
        !           109: };
        !           110:
1.6       kristaps  111: struct html {
                    112:        int               flags;
                    113: #define        HTML_NOSPACE     (1 << 0)
1.7       kristaps  114: #define        HTML_IGNDELIM    (1 << 2)
1.6       kristaps  115:        struct tagq       tags;
                    116:        struct ordq       ords;
                    117:        void             *symtab;
                    118:        char             *base;
1.8       kristaps  119:        char             *base_man;
1.9       kristaps  120:        char             *base_includes;
1.6       kristaps  121:        char             *style;
1.8       kristaps  122:        char              buf[BUFSIZ];
                    123:        size_t            buflen;
1.19      kristaps  124:        struct tag       *metaf;
1.21      kristaps  125:        enum htmlfont     metal;
                    126:        enum htmlfont     metac;
1.22    ! kristaps  127:        enum htmltype     type;
1.6       kristaps  128: };
1.1       kristaps  129:
1.12      kristaps  130: struct roffsu;
                    131:
1.22    ! kristaps  132: void             print_gen_decls(struct html *);
1.6       kristaps  133: void             print_gen_head(struct html *);
1.21      kristaps  134: struct tag      *print_ofont(struct html *, enum htmlfont);
1.6       kristaps  135: struct tag      *print_otag(struct html *, enum htmltag,
                    136:                                int, const struct htmlpair *);
                    137: void             print_tagq(struct html *, const struct tag *);
                    138: void             print_stagq(struct html *, const struct tag *);
                    139: void             print_text(struct html *, const char *);
1.1       kristaps  140:
1.12      kristaps  141: void             bufcat_su(struct html *, const char *,
                    142:                        const struct roffsu *);
                    143: void             buffmt_man(struct html *,
                    144:                        const char *, const char *);
1.10      kristaps  145: void             buffmt_includes(struct html *, const char *);
                    146: void             buffmt(struct html *, const char *, ...);
                    147: void             bufcat(struct html *, const char *);
1.12      kristaps  148: void             bufcat_style(struct html *,
                    149:                        const char *, const char *);
1.10      kristaps  150: void             bufncat(struct html *, const char *, size_t);
                    151: void             bufinit(struct html *);
                    152:
1.16      kristaps  153: void             html_idcat(char *, const char *, int);
                    154:
1.1       kristaps  155: __END_DECLS
                    156:
                    157: #endif /*!HTML_H*/

CVSweb