libdom
Loading...
Searching...
No Matches
html_basefont_element.h
Go to the documentation of this file.
1/*
2 * This file is part of libdom.
3 * Licensed under the MIT License,
4 * http://www.opensource.org/licenses/mit-license.php
5 * Copyright 2009 Bo Yang <struggleyb.nku@gmail.com>
6 * Copyright 2014 Rupinder Singh Khokhar <rsk1coder99@gmail.com>
7 */
8#ifndef dom_html_base_font_element_h_
9#define dom_html_base_font_element_h_
10
11#include <stdbool.h>
12#include <dom/core/exceptions.h>
13#include <dom/core/string.h>
14
16
18 dom_html_base_font_element *element, int32_t *size);
19
21 dom_html_base_font_element *element, uint32_t size);
22
24 dom_html_base_font_element *element, dom_string **color);
25
27 dom_html_base_font_element *element, dom_string *color);
28
30 dom_html_base_font_element *element, dom_string **face);
31
34#endif
dom_exception
Definition exceptions.h:24
dom_exception dom_html_base_font_element_get_size(dom_html_base_font_element *element, int32_t *size)
Definition html_basefont_element.c:92
dom_exception dom_html_base_font_element_get_color(dom_html_base_font_element *element, dom_string **color)
dom_exception dom_html_base_font_element_get_face(dom_html_base_font_element *element, dom_string **face)
dom_exception dom_html_base_font_element_set_size(dom_html_base_font_element *element, uint32_t size)
Definition html_basefont_element.c:104
dom_exception dom_html_base_font_element_set_color(dom_html_base_font_element *element, dom_string *color)
dom_exception dom_html_base_font_element_set_face(dom_html_base_font_element *element, dom_string *face)
Definition html_basefont_element.h:16
Definition string.h:19