From 12d3f1b1de5b47f710cb02d7d4b4136219ea5603 Mon Sep 17 00:00:00 2001 From: rsk1994 Date: Wed, 30 Apr 2014 20:47:44 +0530 Subject: adding DL element rev.1 --- src/html/html_dlist_element.c | 140 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 140 insertions(+) (limited to 'src/html/html_dlist_element.c') diff --git a/src/html/html_dlist_element.c b/src/html/html_dlist_element.c index 2e182d5..c79ad6c 100644 --- a/src/html/html_dlist_element.c +++ b/src/html/html_dlist_element.c @@ -3,5 +3,145 @@ * Licensed under the MIT License, * http://www.opensource.org/licenses/mit-license.php * Copyright 2009 Bo Yang + * Copyright 2014 Rupinder Singh Khokhar */ +#include +#include + +#include + +#include "html/html_document.h" +#include "html/html_dlist_element.h" + +#include "core/node.h" +#include "core/attr.h" +#include "utils/utils.h" + +static struct dom_element_protected_vtable _protect_vtable = { + { + DOM_NODE_PROTECT_VTABLE_HTML_DL_ELEMENT + }, + DOM_HTML_DL_ELEMENT_PROTECT_VTABLE +}; + +/** + * Create a dom_html_d_list_element object + * + * \param doc The document object + * \param ele The returned element object + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception _dom_html_d_list_element_create(struct dom_html_document *doc, + dom_string *namespace, dom_string *prefix, + struct dom_html_d_list_element **ele) +{ + struct dom_node_internal *node; + + *ele = malloc(sizeof(dom_html_d_list_element)); + if (*ele == NULL) + return DOM_NO_MEM_ERR; + + /* Set up vtables */ + node = (struct dom_node_internal *) *ele; + node->base.vtable = &_dom_html_element_vtable; + node->vtable = &_protect_vtable; + + return _dom_html_d_list_element_initialise(doc, namespace, prefix, *ele); +} + +/** + * Initialise a dom_html_d_list_element object + * + * \param doc The document object + * \param ele The dom_html_d_list_element object + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception _dom_html_d_list_element_initialise(struct dom_html_document *doc, + dom_string *namespace, dom_string *prefix, + struct dom_html_d_list_element *ele) +{ + return _dom_html_element_initialise(doc, &ele->base, + doc->memoised[hds_DL], + namespace, prefix); +} + +/** + * Finalise a dom_html_d_list_element object + * + * \param ele The dom_html_d_list_element object + */ +void _dom_html_d_list_element_finalise(struct dom_html_d_list_element *ele) +{ + _dom_html_element_finalise(&ele->base); +} + +/** + * Destroy a dom_html_d_list_element object + * + * \param ele The dom_html_d_list_element object + */ +void _dom_html_d_list_element_destroy(struct dom_html_d_list_element *ele) +{ + _dom_html_d_list_element_finalise(ele); + free(ele); +} + +/** + * Get the compact property + * + * \param ele The dom_html_d_list_element object + * \param compact The status + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_d_list_element_get_compact(dom_html_d_list_element *ele, + bool *compact) +{ + return dom_html_element_get_bool_property(&ele->base, "compact", + SLEN("compact"), compact); +} + +/** + * Set the compact property + * + * \param ele The dom_html_d_list_element object + * \param compact The status + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_d_list_element_set_compact(dom_html_d_list_element *ele, + bool compact) +{ + return dom_html_element_set_bool_property(&ele->base, "compact", + SLEN("compact"), compact); +} + +/*------------------------------------------------------------------------*/ +/* The protected virtual functions */ + +/* The virtual function used to parse attribute value, see src/core/element.c + * for detail */ +dom_exception _dom_html_d_list_element_parse_attribute(dom_element *ele, + dom_string *name, dom_string *value, + dom_string **parsed) +{ + UNUSED(ele); + UNUSED(name); + + dom_string_ref(value); + *parsed = value; + + return DOM_NO_ERR; +} + +/* The virtual destroy function, see src/core/node.c for detail */ +void _dom_virtual_html_d_list_element_destroy(dom_node_internal *node) +{ + _dom_html_d_list_element_destroy((struct dom_html_d_list_element *) node); +} + +/* The virtual copy function, see src/core/node.c for detail */ +dom_exception _dom_html_d_list_element_copy(dom_node_internal *old, + dom_node_internal **copy) +{ + return _dom_html_element_copy(old, copy); +} -- cgit v1.2.3