diff options
author | jcid <devnull@localhost> | 2008-06-21 00:34:21 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-06-21 00:34:21 +0200 |
commit | c0e13375ae537ac98f778e18a1c4f19c7f3f3fcf (patch) | |
tree | 473988b362497ed48dfabf470bb5abbf5760e729 /src/html_common.hh | |
parent | 8dee751cceb7eb4a4a0511df643842dfcd087a24 (diff) |
- split table code from html.cc
Diffstat (limited to 'src/html_common.hh')
-rw-r--r-- | src/html_common.hh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/html_common.hh b/src/html_common.hh index 10ca0ee5..77a97ff6 100644 --- a/src/html_common.hh +++ b/src/html_common.hh @@ -251,5 +251,16 @@ DilloImage *a_Html_add_new_image(DilloHtml *html, const char *tag, char *a_Html_parse_entities(DilloHtml *html, const char *token, int toksize); void a_Html_pop_tag(DilloHtml *html, int TagIdx); void a_Html_stash_init(DilloHtml *html); +int32_t a_Html_color_parse(DilloHtml *html, + const char *subtag, int32_t default_color); +dw::core::style::Length a_Html_parse_length (DilloHtml *html, + const char *attr); +void a_Html_tag_set_align_attr(DilloHtml *html, + const char *tag, int tagsize); +bool a_Html_tag_set_valign_attr(DilloHtml *html, + const char *tag, int tagsize, + dw::core::style::StyleAttrs *style_attrs); +void a_Html_set_top_font(DilloHtml *html, const char *name, int size, + int BI, int BImask); #endif /* __HTML_COMMON_HH__ */ |