summaryrefslogtreecommitdiff
path: root/include/dom/events/mutation_event.h
blob: 80a8b4674873ce5c59a00103a4da6721ca1f154a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
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>
#include <dom/core/string.h>

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,
		dom_string **ret);
#define dom_mutation_event_get_prev_value(e, r) \
		_dom_mutation_event_get_prev_value((dom_mutation_event *) (e), \
		(dom_string **) (r))

dom_exception _dom_mutation_event_get_new_value(dom_mutation_event *evt,
		dom_string **ret);
#define dom_mutation_event_get_new_value(e, r) \
		_dom_mutation_event_get_new_value((dom_mutation_event *) (e), \
		(dom_string **) (r))

dom_exception _dom_mutation_event_get_attr_name(dom_mutation_event *evt,
		dom_string **ret);
#define dom_mutation_event_get_attr_name(e, r) \
		_dom_mutation_event_get_attr_name((dom_mutation_event *) (e), \
		(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, 
		dom_string *type, bool bubble, bool cancelable,
		struct dom_node *node, dom_string *prev_value,
		dom_string *new_value, 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), \
		(dom_string *) (t), (bool) (b), (bool) (c), \
		(struct dom_node *) (n), (dom_string *) (p), \
		(dom_string *) (nv), (dom_string *) (a), \
		(dom_mutation_type) (ch))

dom_exception _dom_mutation_event_init_ns(dom_mutation_event *evt,
		dom_string *namespace, dom_string *type,
		bool bubble, bool cancelable, struct dom_node *node,
		dom_string *prev_value, dom_string *new_value,
		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), \
		(dom_string *) (n), (dom_string *) (t),\
		(bool) (b), (bool) (c), (struct dom_node *) (nd), \
		(dom_string *) (p), (dom_string *) (nv),\
		(dom_string *) (a), (dom_mutation_type) (ch))

#endif