summaryrefslogtreecommitdiff
path: root/include/dom/events/mutation_event.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/dom/events/mutation_event.h')
-rw-r--r--include/dom/events/mutation_event.h80
1 files changed, 80 insertions, 0 deletions
diff --git a/include/dom/events/mutation_event.h b/include/dom/events/mutation_event.h
new file mode 100644
index 0000000..9dc3fdd
--- /dev/null
+++ b/include/dom/events/mutation_event.h
@@ -0,0 +1,80 @@
+/*
+ * This file is part of libdom.
+ * Licensed under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ * Copyright 2009 Bo Yang <struggleyb.nku@gmail.com>
+ */
+
+#ifndef dom_events_mutation_event_h_
+#define dom_events_mutation_event_h_
+
+#include <stdbool.h>
+#include <dom/core/exceptions.h>
+
+struct dom_string;
+struct dom_node;
+
+typedef enum {
+ DOM_MUTATION_MODIFICATION = 1,
+ DOM_MUTATION_ADDITION = 2,
+ DOM_MUTATION_REMOVAL = 3
+} dom_mutation_type;
+
+typedef struct dom_mutation_event dom_mutation_event;
+
+dom_exception _dom_mutation_event_get_related_node(dom_mutation_event *evt,
+ struct dom_node **node);
+#define dom_mutation_event_get_related_node(e, n) \
+ _dom_mutation_event_get_related_node(\
+ (dom_mutation_event *) (e), (struct dom_node **) (n))
+
+dom_exception _dom_mutation_event_get_prev_value(dom_mutation_event *evt,
+ struct dom_string **ret);
+#define dom_mutation_event_get_prev_value(e, r) \
+ _dom_mutation_event_get_prev_value((dom_mutation_event *) (e), \
+ (struct dom_string **) (r))
+
+dom_exception _dom_mutation_event_get_new_value(dom_mutation_event *evt,
+ struct dom_string **ret);
+#define dom_mutation_event_get_new_value(e, r) \
+ _dom_mutation_event_get_new_value((dom_mutation_event *) (e), \
+ (struct dom_string **) (r))
+
+dom_exception _dom_mutation_event_get_attr_name(dom_mutation_event *evt,
+ struct dom_string **ret);
+#define dom_mutation_event_get_attr_name(e, r) \
+ _dom_mutation_event_get_attr_name((dom_mutation_event *) (e), \
+ (struct dom_string **) (r))
+
+dom_exception _dom_mutation_event_get_attr_change(dom_mutation_event *evt,
+ dom_mutation_type *type);
+#define dom_mutation_event_get_attr_change(e, t) \
+ _dom_mutation_event_get_attr_change((dom_mutation_event *) (e),\
+ (dom_mutation_type *) (t))
+
+dom_exception _dom_mutation_event_init(dom_mutation_event *evt,
+ struct dom_string *type, bool bubble, bool cancelable,
+ struct dom_node *node, struct dom_string *prev_value,
+ struct dom_string *new_value, struct dom_string *attr_name,
+ dom_mutation_type change);
+#define dom_mutation_event_init(e, t, b, c, n, p, nv, a, ch) \
+ _dom_mutation_event_init((dom_mutation_event *) (e), \
+ (struct dom_string *) (t), (bool) (b), (bool) (c), \
+ (struct dom_node *) (n), (struct dom_string *) (p), \
+ (struct dom_string *) (nv), (struct dom_string *) (a), \
+ (dom_mutation_type) (ch))
+
+dom_exception _dom_mutation_event_init_ns(dom_mutation_event *evt,
+ struct dom_string *namespace, struct dom_string *type,
+ bool bubble, bool cancelable, struct dom_node *node,
+ struct dom_string *prev_value, struct dom_string *new_value,
+ struct dom_string *attr_name, dom_mutation_type change);
+#define dom_mutation_event_init_ns(e, n, t, b, c, nd, p, nv, a, ch) \
+ _dom_mutation_event_init_ns((dom_mutation_event *) (e), \
+ (struct dom_string *) (n), (struct dom_string *) (t),\
+ (bool) (b), (bool) (c), (struct dom_node *) (nd), \
+ (struct dom_string *) (p), (struct dom_string *) (nv),\
+ (struct dom_string *) (a), (dom_mutation_type) (ch))
+
+#endif
+