diff options
author | Chris Michael <cp.michael@samsung.com> | 2015-09-23 12:39:18 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-12-03 12:02:40 -0500 |
commit | f811cc85d57c38b379337a48c14d39b83f6ff439 (patch) | |
tree | 776b01f7a9422eb47bf7519e4190b382b9c6c8d1 /src/lib/ecore_wl2/ecore_wl2.c | |
parent | 7e5ccc3862dbf8385730b3ffc9aee0612ea62ad3 (diff) |
ecore-wl2: Add event structures for focus in/out
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to 'src/lib/ecore_wl2/ecore_wl2.c')
-rw-r--r-- | src/lib/ecore_wl2/ecore_wl2.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/ecore_wl2/ecore_wl2.c b/src/lib/ecore_wl2/ecore_wl2.c index 5eb377e325..74218cbe77 100644 --- a/src/lib/ecore_wl2/ecore_wl2.c +++ b/src/lib/ecore_wl2/ecore_wl2.c | |||
@@ -13,6 +13,8 @@ int _ecore_wl2_log_dom = -1; | |||
13 | /* public API variables */ | 13 | /* public API variables */ |
14 | EAPI int ECORE_WL2_EVENT_GLOBAL_ADDED = 0; | 14 | EAPI int ECORE_WL2_EVENT_GLOBAL_ADDED = 0; |
15 | EAPI int ECORE_WL2_EVENT_GLOBAL_REMOVED = 0; | 15 | EAPI int ECORE_WL2_EVENT_GLOBAL_REMOVED = 0; |
16 | EAPI int ECORE_WL2_EVENT_FOCUS_IN = 0; | ||
17 | EAPI int ECORE_WL2_EVENT_FOCUS_OUT = 0; | ||
16 | 18 | ||
17 | static void | 19 | static void |
18 | _cb_wl_log_print(const char *format, va_list args) | 20 | _cb_wl_log_print(const char *format, va_list args) |
@@ -57,6 +59,8 @@ ecore_wl2_init(void) | |||
57 | { | 59 | { |
58 | ECORE_WL2_EVENT_GLOBAL_ADDED = ecore_event_type_new(); | 60 | ECORE_WL2_EVENT_GLOBAL_ADDED = ecore_event_type_new(); |
59 | ECORE_WL2_EVENT_GLOBAL_REMOVED = ecore_event_type_new(); | 61 | ECORE_WL2_EVENT_GLOBAL_REMOVED = ecore_event_type_new(); |
62 | ECORE_WL2_EVENT_FOCUS_IN = ecore_event_type_new(); | ||
63 | ECORE_WL2_EVENT_FOCUS_OUT = ecore_event_type_new(); | ||
60 | } | 64 | } |
61 | 65 | ||
62 | wl_log_set_handler_server(_cb_wl_log_print); | 66 | wl_log_set_handler_server(_cb_wl_log_print); |