Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  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 2012 Daniel Silverstone <dsilvers@netsurf-browser.org>
  6.  */
  7.  
  8. #ifndef dom_html_body_element_h_
  9. #define dom_html_body_element_h_
  10.  
  11. #include <dom/core/exceptions.h>
  12. #include <dom/core/string.h>
  13.  
  14. typedef struct dom_html_body_element dom_html_body_element;
  15.  
  16. dom_exception dom_html_body_element_get_a_link(dom_html_body_element *ele,
  17.                 dom_string **a_link);
  18.  
  19. dom_exception dom_html_body_element_set_a_link(dom_html_body_element *ele,
  20.                 dom_string *a_link);
  21.  
  22. dom_exception dom_html_body_element_get_v_link(dom_html_body_element *ele,
  23.                 dom_string **v_link);
  24.  
  25. dom_exception dom_html_body_element_set_v_link(dom_html_body_element *ele,
  26.                 dom_string *v_link);
  27.  
  28. dom_exception dom_html_body_element_get_background(dom_html_body_element *ele,
  29.                 dom_string **background);
  30.  
  31. dom_exception dom_html_body_element_set_background(dom_html_body_element *ele,
  32.                 dom_string *background);
  33.  
  34. dom_exception dom_html_body_element_get_bg_color(dom_html_body_element *ele,
  35.                 dom_string **bg_color);
  36.  
  37. dom_exception dom_html_body_element_set_bg_color(dom_html_body_element *ele,
  38.                 dom_string *bg_color);
  39.  
  40. dom_exception dom_html_body_element_get_link(dom_html_body_element *ele,
  41.                 dom_string **link);
  42.  
  43. dom_exception dom_html_body_element_set_link(dom_html_body_element *ele,
  44.                 dom_string *link);
  45.  
  46. dom_exception dom_html_body_element_get_text(dom_html_body_element *ele,
  47.                 dom_string **text);
  48.  
  49. dom_exception dom_html_body_element_set_text(dom_html_body_element *ele,
  50.                 dom_string *text);
  51.  
  52. #endif
  53.  
  54.