summaryrefslogtreecommitdiff
path: root/src/html/html_canvas_element.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2020-04-23 22:11:48 +0100
committerVincent Sanders <vince@kyllikki.org>2020-04-23 22:11:48 +0100
commit65af1490bbabe62b0dbe22a84c1ef3d67a626d59 (patch)
treefeb8ed9527fb55eb3bc580a0b5f3ed0429f0fa55 /src/html/html_canvas_element.h
parentce5bfc251e49ac7e5d657b3a9b579c2578698277 (diff)
downloadlibdom-65af1490bbabe62b0dbe22a84c1ef3d67a626d59.tar.gz
libdom-65af1490bbabe62b0dbe22a84c1ef3d67a626d59.tar.bz2
Add HTMLCanvasElement
Diffstat (limited to 'src/html/html_canvas_element.h')
-rw-r--r--src/html/html_canvas_element.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/html/html_canvas_element.h b/src/html/html_canvas_element.h
new file mode 100644
index 0000000..4cf3042
--- /dev/null
+++ b/src/html/html_canvas_element.h
@@ -0,0 +1,62 @@
+/*
+ * This file is part of libdom.
+ * Licensed under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ * Copyright 2020 Vincent Sanders <vince@netsurf-browser.org>
+ */
+
+#ifndef dom_internal_html_canvas_element_h_
+#define dom_internal_html_canvas_element_h_
+
+#include <dom/html/html_canvas_element.h>
+
+#include "html/html_element.h"
+
+struct dom_html_canvas_element {
+ struct dom_html_element base;
+ /**< The base class */
+};
+
+/* Create a dom_html_canvas_element object */
+dom_exception _dom_html_canvas_element_create(
+ struct dom_html_element_create_params *params,
+ struct dom_html_canvas_element **ele);
+
+/* Initialise a dom_html_canvas_element object */
+dom_exception _dom_html_canvas_element_initialise(
+ struct dom_html_element_create_params *params,
+ struct dom_html_canvas_element *ele);
+
+/* Finalise a dom_html_canvas_element object */
+void _dom_html_canvas_element_finalise(struct dom_html_canvas_element *ele);
+
+/* Destroy a dom_html_canvas_element object */
+void _dom_html_canvas_element_destroy(struct dom_html_canvas_element *ele);
+
+/* The protected virtual functions */
+dom_exception _dom_html_canvas_element_parse_attribute(dom_element *ele,
+ dom_string *name, dom_string *value,
+ dom_string **parsed);
+
+void _dom_virtual_html_canvas_element_destroy(dom_node_internal *node);
+dom_exception _dom_html_canvas_element_copy(dom_node_internal *old,
+ dom_node_internal **copy);
+
+#define DOM_HTML_CANVAS_ELEMENT_PROTECT_VTABLE \
+ _dom_html_canvas_element_parse_attribute
+
+#define DOM_NODE_PROTECT_VTABLE_HTML_CANVAS_ELEMENT \
+ _dom_virtual_html_canvas_element_destroy, \
+ _dom_html_canvas_element_copy
+
+/* Helper functions*/
+dom_exception _dom_html_canvas_element_copy_internal(
+ dom_html_canvas_element *old,
+ dom_html_canvas_element *new);
+#define dom_html_canvas_element_copy_internal(o, n) \
+ _dom_html_canvas_element_copy_internal( \
+ (dom_html_canvas_element *) (o), \
+ (dom_html_canvas_element *) (n))
+
+
+#endif