diff options
author | Chris Michael <cp.michael@samsung.com> | 2015-09-25 10:37:06 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-12-03 12:02:40 -0500 |
commit | 60aee3e03c6b9faf1f1731756d91e3147a3e5bce (patch) | |
tree | dd09d3b4e06da5a14097776d6995f12c2e400459 /src/lib/ecore_wl2/ecore_wl2.c | |
parent | d3fab1b33f1a673813567dd8d60e4abcbd960cc8 (diff) |
ecore-wl2: Add event and structure for event dnd leave
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_wl2/ecore_wl2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/ecore_wl2/ecore_wl2.c b/src/lib/ecore_wl2/ecore_wl2.c index dd8cdefedd..d291b39690 100644 --- a/src/lib/ecore_wl2/ecore_wl2.c +++ b/src/lib/ecore_wl2/ecore_wl2.c | |||
@@ -16,6 +16,7 @@ EAPI int ECORE_WL2_EVENT_GLOBAL_REMOVED = 0; | |||
16 | EAPI int ECORE_WL2_EVENT_FOCUS_IN = 0; | 16 | EAPI int ECORE_WL2_EVENT_FOCUS_IN = 0; |
17 | EAPI int ECORE_WL2_EVENT_FOCUS_OUT = 0; | 17 | EAPI int ECORE_WL2_EVENT_FOCUS_OUT = 0; |
18 | EAPI int ECORE_WL2_EVENT_DND_ENTER = 0; | 18 | EAPI int ECORE_WL2_EVENT_DND_ENTER = 0; |
19 | EAPI int ECORE_WL2_EVENT_DND_LEAVE = 0; | ||
19 | 20 | ||
20 | static void | 21 | static void |
21 | _cb_wl_log_print(const char *format, va_list args) | 22 | _cb_wl_log_print(const char *format, va_list args) |
@@ -63,6 +64,7 @@ ecore_wl2_init(void) | |||
63 | ECORE_WL2_EVENT_FOCUS_IN = ecore_event_type_new(); | 64 | ECORE_WL2_EVENT_FOCUS_IN = ecore_event_type_new(); |
64 | ECORE_WL2_EVENT_FOCUS_OUT = ecore_event_type_new(); | 65 | ECORE_WL2_EVENT_FOCUS_OUT = ecore_event_type_new(); |
65 | ECORE_WL2_EVENT_DND_ENTER = ecore_event_type_new(); | 66 | ECORE_WL2_EVENT_DND_ENTER = ecore_event_type_new(); |
67 | ECORE_WL2_EVENT_DND_LEAVE = ecore_event_type_new(); | ||
66 | } | 68 | } |
67 | 69 | ||
68 | wl_log_set_handler_server(_cb_wl_log_print); | 70 | wl_log_set_handler_server(_cb_wl_log_print); |