diff options
author | Chris Michael <cp.michael@samsung.com> | 2015-09-25 10:47:46 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-12-03 12:02:40 -0500 |
commit | 25f199969c0723d439dfa2380b5b7f488c8c780b (patch) | |
tree | 24e9128c629c4cbedc9bb196456a2e5f04c5e841 /src/lib/ecore_wl2/ecore_wl2.c | |
parent | 2758d6fcbab4a5a6f96e4a51ed89396f40f76e5f (diff) |
ecore-wl2: Add dnd drop event type and event structure
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 9ab17deec2..06dd669562 100644 --- a/src/lib/ecore_wl2/ecore_wl2.c +++ b/src/lib/ecore_wl2/ecore_wl2.c | |||
@@ -18,6 +18,7 @@ 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 | EAPI int ECORE_WL2_EVENT_DND_LEAVE = 0; |
20 | EAPI int ECORE_WL2_EVENT_DND_MOTION = 0; | 20 | EAPI int ECORE_WL2_EVENT_DND_MOTION = 0; |
21 | EAPI int ECORE_WL2_EVENT_DND_DROP = 0; | ||
21 | 22 | ||
22 | static void | 23 | static void |
23 | _cb_wl_log_print(const char *format, va_list args) | 24 | _cb_wl_log_print(const char *format, va_list args) |
@@ -67,6 +68,7 @@ ecore_wl2_init(void) | |||
67 | ECORE_WL2_EVENT_DND_ENTER = ecore_event_type_new(); | 68 | ECORE_WL2_EVENT_DND_ENTER = ecore_event_type_new(); |
68 | ECORE_WL2_EVENT_DND_LEAVE = ecore_event_type_new(); | 69 | ECORE_WL2_EVENT_DND_LEAVE = ecore_event_type_new(); |
69 | ECORE_WL2_EVENT_DND_MOTION = ecore_event_type_new(); | 70 | ECORE_WL2_EVENT_DND_MOTION = ecore_event_type_new(); |
71 | ECORE_WL2_EVENT_DND_DROP = ecore_event_type_new(); | ||
70 | } | 72 | } |
71 | 73 | ||
72 | wl_log_set_handler_server(_cb_wl_log_print); | 74 | wl_log_set_handler_server(_cb_wl_log_print); |