9 #include "ecore_private.h"
11 #include "Ecore_Input.h"
12 #include "ecore_input_private.h"
15 int _ecore_input_log_dom = -1;
17 EAPI int ECORE_EVENT_KEY_DOWN = 0;
18 EAPI int ECORE_EVENT_KEY_UP = 0;
19 EAPI int ECORE_EVENT_MOUSE_BUTTON_DOWN = 0;
20 EAPI int ECORE_EVENT_MOUSE_BUTTON_UP = 0;
21 EAPI int ECORE_EVENT_MOUSE_MOVE = 0;
22 EAPI int ECORE_EVENT_MOUSE_WHEEL = 0;
23 EAPI int ECORE_EVENT_MOUSE_IN = 0;
24 EAPI int ECORE_EVENT_MOUSE_OUT = 0;
26 static int _ecore_event_init_count = 0;
29 ecore_event_init(void)
31 if (++_ecore_event_init_count != 1)
32 return _ecore_event_init_count;
34 _ecore_input_log_dom = eina_log_domain_register("EcoreInput", ECORE_INPUT_DEFAULT_LOG_COLOR);
35 if(_ecore_input_log_dom < 0)
37 EINA_LOG_ERR("Impossible to create a log domain for the ecore input module.");
38 return --_ecore_event_init_count;
41 ECORE_EVENT_KEY_DOWN = ecore_event_type_new();
42 ECORE_EVENT_KEY_UP = ecore_event_type_new();
43 ECORE_EVENT_MOUSE_BUTTON_DOWN = ecore_event_type_new();
44 ECORE_EVENT_MOUSE_BUTTON_UP = ecore_event_type_new();
45 ECORE_EVENT_MOUSE_MOVE = ecore_event_type_new();
46 ECORE_EVENT_MOUSE_WHEEL = ecore_event_type_new();
47 ECORE_EVENT_MOUSE_IN = ecore_event_type_new();
48 ECORE_EVENT_MOUSE_OUT = ecore_event_type_new();
50 return _ecore_event_init_count;
54 ecore_event_shutdown(void)
56 if (--_ecore_event_init_count != 0)
57 return _ecore_event_init_count;
59 ECORE_EVENT_KEY_DOWN = 0;
60 ECORE_EVENT_KEY_UP = 0;
61 ECORE_EVENT_MOUSE_BUTTON_DOWN = 0;
62 ECORE_EVENT_MOUSE_BUTTON_UP = 0;
63 ECORE_EVENT_MOUSE_MOVE = 0;
64 ECORE_EVENT_MOUSE_WHEEL = 0;
65 ECORE_EVENT_MOUSE_IN = 0;
66 ECORE_EVENT_MOUSE_OUT = 0;
67 eina_log_domain_unregister(_ecore_input_log_dom);
68 _ecore_input_log_dom = -1;
69 return _ecore_event_init_count;
72 typedef struct _Ecore_Event_Modifier_Match Ecore_Event_Modifier_Match;
73 struct _Ecore_Event_Modifier_Match
76 Ecore_Event_Modifier modifier;
77 unsigned int event_modifier;
80 static const Ecore_Event_Modifier_Match matchs[] = {
81 { "Shift_L", ECORE_SHIFT, ECORE_EVENT_MODIFIER_SHIFT },
82 { "Shift_R", ECORE_SHIFT, ECORE_EVENT_MODIFIER_SHIFT },
83 { "Alt_L", ECORE_ALT, ECORE_EVENT_MODIFIER_ALT },
84 { "Alt_R", ECORE_ALT, ECORE_EVENT_MODIFIER_ALT },
85 { "Control_L", ECORE_CTRL, ECORE_EVENT_MODIFIER_CTRL },
86 { "Control_R", ECORE_CTRL, ECORE_EVENT_MODIFIER_CTRL },
87 { "Caps_Lock", ECORE_CAPS, ECORE_EVENT_MODIFIER_CAPS },
88 { "Super_L", ECORE_WIN, ECORE_EVENT_MODIFIER_WIN },
89 { "Super_R", ECORE_WIN, ECORE_EVENT_MODIFIER_WIN },
90 { "Scroll_Lock", ECORE_SCROLL, ECORE_EVENT_MODIFIER_SCROLL }
94 ecore_event_modifier_mask(Ecore_Event_Modifier modifier)
98 for (i = 0; i < sizeof (matchs) / sizeof (Ecore_Event_Modifier_Match); i++)
99 if (matchs[i].modifier == modifier)
100 return matchs[i].event_modifier;
105 EAPI Ecore_Event_Modifier
106 ecore_event_update_modifier(const char *key, Ecore_Event_Modifiers *modifiers, int inc)
110 for (i = 0; i < sizeof (matchs) / sizeof (Ecore_Event_Modifier_Match); i++)
111 if (strcmp(matchs[i].key, key) == 0)
113 if (modifiers && matchs[i].modifier < modifiers->size)
114 modifiers->array[matchs[i].modifier] += inc;
115 return matchs[i].modifier;