summaryrefslogtreecommitdiff
path: root/src/events/mutation_event.h
blob: 142e18c69ab36cae183359f18cbb30e742d20e70 (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
/*
 * 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_interntal_events_mutation_event_h_
#define dom_interntal_events_mutation_event_h_

#include <dom/events/mutation_event.h>

#include "events/event.h"

/**
 * The MutationEvent
 */
struct dom_mutation_event {
	struct dom_event base;

	struct dom_node *related_node;
	dom_string *prev_value;
	dom_string *new_value;
	dom_string *attr_name;
	dom_mutation_type change;
};

/* Constructor */
dom_exception _dom_mutation_event_create(struct dom_document *doc, 
		struct dom_mutation_event **evt);

/* Destructor */
void _dom_mutation_event_destroy(struct dom_mutation_event *evt);

/* Initialise function */
dom_exception _dom_mutation_event_initialise(struct dom_document *doc, 
		struct dom_mutation_event *evt);

/* Finalise function */
void _dom_mutation_event_finalise(struct dom_mutation_event *evt);

#endif