summaryrefslogtreecommitdiff
path: root/include/dom/events/ui_event.h
blob: eaded9937ef4528e648124d7f3551dc932554fa2 (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
/*
 * 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_ui_event_h_
#define dom_events_ui_event_h_

#include <stdbool.h>
#include <dom/core/exceptions.h>

struct dom_string;
struct dom_abstract_view;

typedef struct dom_ui_event dom_ui_event;

dom_exception _dom_ui_event_get_view(dom_ui_event *evt, 
		struct dom_abstract_view **view);
#define dom_ui_event_get_view(e, v) _dom_ui_event_get_view( \
		(dom_ui_event *) (e), (struct dom_abstract_view **) (v))

dom_exception _dom_ui_event_get_detail(dom_ui_event *evt,
		long *detail);
#define dom_ui_event_get_detail(e, d) _dom_ui_event_get_detail(\
		(dom_ui_event *) (e), (long *) (d))

dom_exception _dom_ui_event_init(dom_ui_event *evt, struct dom_string *type, 
		bool bubble, bool cancelable, struct dom_abstract_view *view,
		long detail);
#define dom_ui_event_init(e, t, b, c, v, d) _dom_ui_event_init( \
		(dom_ui_event *) (e), (struct dom_string *) (t), (bool) (b), \
		(bool) (c), (struct dom_abstract_view *) (v), (long) (d))

dom_exception _dom_ui_event_init_ns(dom_ui_event *evt,
		struct dom_string *namespace, struct dom_string *type,
		bool bubble, bool cancelable, struct dom_abstract_view *view,
		long detail);
#define dom_ui_event_init_ns(e, n, t, b, c, v, d) _dom_ui_event_init_ns( \
		(dom_ui_event *) (e), (struct dom_string *) (n), \
		(struct dom_string *) (t), (bool) (b), (bool) (c), \
		(struct dom_abstract_view *) (v), (long) (d))

#endif