summaryrefslogtreecommitdiff
path: root/src/events/keyboard_event.h
blob: b51518f4036b2f4191a35f4574bc4a5dfff48d77 (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
/*
 * 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_keyboard_event_h_
#define dom_interntal_events_keyboard_event_h_

#include <dom/events/keyboard_event.h>

#include "events/ui_event.h"

/**
 * The keyboard event
 */
struct dom_keyboard_event {
	struct dom_ui_event base;	/**< The base class */

	dom_string *key_ident;	/**< The identifier of the key in this 
					 * event, please refer:
					 * http://www.w3.org/TR/DOM-Level-3-Events/keyset.html#KeySet-Set
					 * for detail
					 */

	dom_key_location key_loc;	/**< Indicate the location of the key on
					 * the keyboard
					 */

	uint32_t modifier_state;	/**< The modifier keys state */
};

/* Constructor */
dom_exception _dom_keyboard_event_create(struct dom_document *doc, 
		struct dom_keyboard_event **evt);

/* Destructor */
void _dom_keyboard_event_destroy(struct dom_keyboard_event *evt);

/* Initialise function */
dom_exception _dom_keyboard_event_initialise(struct dom_document *doc, 
		struct dom_keyboard_event *evt);

/* Finalise function */
void _dom_keyboard_event_finalise(struct dom_keyboard_event *evt);


/* Parse the modifier list string to corresponding bool variable state */
dom_exception _dom_parse_modifier_list(dom_string *modifier_list,
		uint32_t *modifier_state);

#endif