Ecore Event Handler struct initializations.
[platform/core/uifw/dali-adaptor.git] / adaptors / ecore / wayland / event-handler-ecore-wl.cpp
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include <events/event-handler.h>
20
21 // EXTERNAL INCLUDES
22 #include <Ecore.h>
23 #include <Ecore_Input.h>
24 #include <ecore-wl-render-surface.h>
25 #include <cstring>
26
27 #include <sys/time.h>
28
29 #ifndef DALI_PROFILE_UBUNTU
30 #include <vconf.h>
31 #include <vconf-keys.h>
32 #endif // DALI_PROFILE_UBUNTU
33
34 #ifdef DALI_ELDBUS_AVAILABLE
35 #include <Eldbus.h>
36 #endif // DALI_ELDBUS_AVAILABLE
37
38 #include <dali/public-api/common/vector-wrapper.h>
39 #include <dali/public-api/events/touch-point.h>
40 #include <dali/public-api/events/key-event.h>
41 #include <dali/public-api/events/wheel-event.h>
42 #include <dali/integration-api/debug.h>
43 #include <dali/integration-api/events/key-event-integ.h>
44 #include <dali/integration-api/events/touch-event-integ.h>
45 #include <dali/integration-api/events/hover-event-integ.h>
46 #include <dali/integration-api/events/wheel-event-integ.h>
47
48 // INTERNAL INCLUDES
49 #include <events/gesture-manager.h>
50 #include <window-render-surface.h>
51 #include <clipboard-impl.h>
52 #include <key-impl.h>
53 #include <physical-keyboard-impl.h>
54 #include <style-monitor-impl.h>
55 #include <base/core-event-interface.h>
56 #include <virtual-keyboard.h>
57
58 namespace Dali
59 {
60
61 namespace Internal
62 {
63
64 namespace Adaptor
65 {
66
67 #if defined(DEBUG_ENABLED)
68 namespace
69 {
70 Integration::Log::Filter* gTouchEventLogFilter  = Integration::Log::Filter::New(Debug::NoLogging, false, "LOG_ADAPTOR_EVENTS_TOUCH");
71 Integration::Log::Filter* gClientMessageLogFilter  = Integration::Log::Filter::New(Debug::NoLogging, false, "LOG_ADAPTOR_EVENTS_CLIENT_MESSAGE");
72 Integration::Log::Filter* gDragAndDropLogFilter = Integration::Log::Filter::New(Debug::NoLogging, false, "LOG_ADAPTOR_EVENTS_DND");
73 Integration::Log::Filter* gImfLogging  = Integration::Log::Filter::New(Debug::NoLogging, false, "LOG_ADAPTOR_EVENTS_IMF");
74 Integration::Log::Filter* gSelectionEventLogFilter = Integration::Log::Filter::New(Debug::NoLogging, false, "LOG_ADAPTOR_EVENTS_SELECTION");
75 } // unnamed namespace
76 #endif
77
78
79 namespace
80 {
81
82 // DBUS accessibility
83 #define A11Y_BUS "org.a11y.Bus"
84 #define A11Y_INTERFACE "org.a11y.Bus"
85 #define A11Y_PATH "/org/a11y/bus"
86 #define A11Y_GET_ADDRESS "GetAddress"
87 #define BUS "com.samsung.EModule"
88 #define INTERFACE "com.samsung.GestureNavigation"
89 #define PATH "/com/samsung/GestureNavigation"
90 #define SIGNAL "GestureDetected"
91
92 const unsigned int PRIMARY_TOUCH_BUTTON_ID( 1 );
93
94 const unsigned int BYTES_PER_CHARACTER_FOR_ATTRIBUTES = 3;
95
96 #ifdef DALI_ELDBUS_AVAILABLE
97 // DBus gesture string matching lists.
98 // TODO: This needs moving to its own module.
99 const char * ElDBusAccessibilityFingerCountStrings[] =
100 {
101   "OneFinger",
102   "TwoFingers",
103   "ThreeFingers"
104 };
105 const unsigned int FingerCountStringsTotal = sizeof( ElDBusAccessibilityFingerCountStrings ) / sizeof( ElDBusAccessibilityFingerCountStrings[0] );
106 enum GestureType
107 {
108   GESTURE_TYPE_NONE,
109   GESTURE_TYPE_HOVER,
110   GESTURE_TYPE_SINGLE_TAP,
111   GESTURE_TYPE_DOUBLE_TAP,
112   GESTURE_TYPE_TRIPLE_TAP
113 };
114 struct GestureTypeTable
115 {
116   const char* name;
117   const GestureType type;
118 };
119 GestureTypeTable ElDBusAccessibilityFullEventTypeStrings[] =
120 {
121   { "Hover",     GESTURE_TYPE_HOVER      },
122   { "SingleTap", GESTURE_TYPE_SINGLE_TAP },
123   { "DoubleTap", GESTURE_TYPE_DOUBLE_TAP },
124   { "TripleTap", GESTURE_TYPE_TRIPLE_TAP }
125 };
126 const unsigned int FullEventTypeStringsTotal = sizeof( ElDBusAccessibilityFullEventTypeStrings ) / sizeof( ElDBusAccessibilityFullEventTypeStrings[0] );
127 enum SubGestureType
128 {
129   SUB_GESTURE_TYPE_NONE,
130   SUB_GESTURE_TYPE_FLICK
131 };
132 struct SubGestureTypeTable
133 {
134   const char* name;
135   const SubGestureType type;
136 };
137 SubGestureTypeTable ElDBusAccessibilityDirectionalEventTypeStrings[] =
138 {
139   { "Flick", SUB_GESTURE_TYPE_FLICK }
140 };
141 const unsigned int DirectionalEventTypeStringsTotal = sizeof( ElDBusAccessibilityDirectionalEventTypeStrings ) / sizeof( ElDBusAccessibilityDirectionalEventTypeStrings[0] );
142 enum GestureDirection
143 {
144   GESTURE_DIRECTION_NONE,
145   GESTURE_DIRECTION_UP,
146   GESTURE_DIRECTION_DOWN,
147   GESTURE_DIRECTION_LEFT,
148   GESTURE_DIRECTION_RIGHT,
149   GESTURE_DIRECTION_UP_RETURN,
150   GESTURE_DIRECTION_DOWN_RETURN,
151   GESTURE_DIRECTION_LEFT_RETURN,
152   GESTURE_DIRECTION_RIGHT_RETURN
153 };
154 struct GestureDirectionTable
155 {
156     const char* name;
157     const GestureDirection direction;
158 };
159 GestureDirectionTable ElDBusAccessibilityDirectionStrings[] =
160 {
161   { "Up",           GESTURE_DIRECTION_UP           },
162   { "Down",         GESTURE_DIRECTION_DOWN         },
163   { "Left",         GESTURE_DIRECTION_LEFT         },
164   { "Right",        GESTURE_DIRECTION_RIGHT        },
165   { "UpReturn",     GESTURE_DIRECTION_UP_RETURN    },
166   { "DownReturn",   GESTURE_DIRECTION_DOWN_RETURN  },
167   { "LeftReturn",   GESTURE_DIRECTION_LEFT_RETURN  },
168   { "RightReturn",  GESTURE_DIRECTION_RIGHT_RETURN }
169 };
170 const unsigned int DirectionStringsTotal = sizeof( ElDBusAccessibilityDirectionStrings ) / sizeof( ElDBusAccessibilityDirectionStrings[0] );
171 #endif // DALI_ELDBUS_AVAILABLE
172
173 /**
174  * Ecore_Event_Modifier enums in Ecore_Input.h do not match Ecore_IMF_Keyboard_Modifiers in Ecore_IMF.h.
175  * This function converts from Ecore_Event_Modifier to Ecore_IMF_Keyboard_Modifiers enums.
176  * @param[in] ecoreModifier the Ecore_Event_Modifier input.
177  * @return the Ecore_IMF_Keyboard_Modifiers output.
178  */
179 Ecore_IMF_Keyboard_Modifiers EcoreInputModifierToEcoreIMFModifier(unsigned int ecoreModifier)
180 {
181    int modifier( ECORE_IMF_KEYBOARD_MODIFIER_NONE );  // If no other matches returns NONE.
182
183
184    if ( ecoreModifier & ECORE_EVENT_MODIFIER_SHIFT )  // enums from ecore_input/Ecore_Input.h
185    {
186      modifier |= ECORE_IMF_KEYBOARD_MODIFIER_SHIFT;  // enums from ecore_imf/ecore_imf.h
187    }
188
189    if ( ecoreModifier & ECORE_EVENT_MODIFIER_ALT )
190    {
191      modifier |= ECORE_IMF_KEYBOARD_MODIFIER_ALT;
192    }
193
194    if ( ecoreModifier & ECORE_EVENT_MODIFIER_CTRL )
195    {
196      modifier |= ECORE_IMF_KEYBOARD_MODIFIER_CTRL;
197    }
198
199    if ( ecoreModifier & ECORE_EVENT_MODIFIER_WIN )
200    {
201      modifier |= ECORE_IMF_KEYBOARD_MODIFIER_WIN;
202    }
203
204    if ( ecoreModifier & ECORE_EVENT_MODIFIER_ALTGR )
205    {
206      modifier |= ECORE_IMF_KEYBOARD_MODIFIER_ALTGR;
207    }
208
209    return static_cast<Ecore_IMF_Keyboard_Modifiers>( modifier );
210 }
211
212
213 // Copied from x server
214 static unsigned int GetCurrentMilliSeconds(void)
215 {
216   struct timeval tv;
217
218   struct timespec tp;
219   static clockid_t clockid;
220
221   if (!clockid)
222   {
223 #ifdef CLOCK_MONOTONIC_COARSE
224     if (clock_getres(CLOCK_MONOTONIC_COARSE, &tp) == 0 &&
225       (tp.tv_nsec / 1000) <= 1000 && clock_gettime(CLOCK_MONOTONIC_COARSE, &tp) == 0)
226     {
227       clockid = CLOCK_MONOTONIC_COARSE;
228     }
229     else
230 #endif
231     if (clock_gettime(CLOCK_MONOTONIC, &tp) == 0)
232     {
233       clockid = CLOCK_MONOTONIC;
234     }
235     else
236     {
237       clockid = ~0L;
238     }
239   }
240   if (clockid != ~0L && clock_gettime(clockid, &tp) == 0)
241   {
242     return (tp.tv_sec * 1000) + (tp.tv_nsec / 1000000L);
243   }
244
245   gettimeofday(&tv, NULL);
246   return (tv.tv_sec * 1000) + (tv.tv_usec / 1000);
247 }
248
249 #ifndef DALI_PROFILE_UBUNTU
250 const char * DALI_VCONFKEY_SETAPPL_ACCESSIBILITY_FONT_SIZE = "db/setting/accessibility/font_name";  // It will be update at vconf-key.h and replaced.
251 #endif // DALI_PROFILE_UBUNTU
252
253 } // unnamed namespace
254
255 // Impl to hide EFL implementation.
256 struct EventHandler::Impl
257 {
258   // Construction & Destruction
259
260   /**
261    * Constructor
262    */
263   Impl( EventHandler* handler, Ecore_Wl_Window* window )
264   : mHandler( handler ),
265     mEcoreEventHandler(),
266     mWindow( window )
267 #ifdef DALI_ELDBUS_AVAILABLE
268   , mSessionConnection( NULL ),
269     mA11yConnection( NULL )
270 #endif
271   {
272     // Only register for touch and key events if we have a window
273     if ( window != 0 )
274     {
275       // Register Touch events
276       mEcoreEventHandler.push_back( ecore_event_handler_add( ECORE_EVENT_MOUSE_BUTTON_DOWN,  EcoreEventMouseButtonDown, handler ) );
277       mEcoreEventHandler.push_back( ecore_event_handler_add( ECORE_EVENT_MOUSE_BUTTON_UP,    EcoreEventMouseButtonUp,   handler ) );
278       mEcoreEventHandler.push_back( ecore_event_handler_add( ECORE_EVENT_MOUSE_MOVE,         EcoreEventMouseButtonMove, handler ) );
279       mEcoreEventHandler.push_back( ecore_event_handler_add( ECORE_EVENT_MOUSE_OUT,          EcoreEventMouseButtonUp,   handler ) ); // process mouse out event like up event
280
281       // Register Mouse wheel events
282       mEcoreEventHandler.push_back( ecore_event_handler_add( ECORE_EVENT_MOUSE_WHEEL,        EcoreEventMouseWheel,      handler ) );
283
284       // Register Focus events
285       mEcoreEventHandler.push_back( ecore_event_handler_add( ECORE_WL_EVENT_FOCUS_IN,  EcoreEventWindowFocusIn,   handler ) );
286       mEcoreEventHandler.push_back( ecore_event_handler_add( ECORE_WL_EVENT_FOCUS_OUT, EcoreEventWindowFocusOut,  handler ) );
287
288       // Register Key events
289       mEcoreEventHandler.push_back( ecore_event_handler_add( ECORE_EVENT_KEY_DOWN,           EcoreEventKeyDown,         handler ) );
290       mEcoreEventHandler.push_back( ecore_event_handler_add( ECORE_EVENT_KEY_UP,             EcoreEventKeyUp,           handler ) );
291
292       // Register Selection event - clipboard selection
293       mEcoreEventHandler.push_back( ecore_event_handler_add( ECORE_WL_EVENT_DATA_SOURCE_SEND, EcoreEventDataSend, handler ) );
294       mEcoreEventHandler.push_back( ecore_event_handler_add( ECORE_WL_EVENT_SELECTION_DATA_READY, EcoreEventDataReceive, handler ) );
295
296       // Register Rotate event
297       mEcoreEventHandler.push_back( ecore_event_handler_add( ECORE_WL_EVENT_WINDOW_ROTATE, EcoreEventRotate, handler) );
298
299       // Register Detent event
300       mEcoreEventHandler.push_back( ecore_event_handler_add( ECORE_EVENT_DETENT_ROTATE, EcoreEventDetent, handler) );
301
302 #ifndef DALI_PROFILE_UBUNTU
303       // Register Vconf notify - font name and size
304       vconf_notify_key_changed( DALI_VCONFKEY_SETAPPL_ACCESSIBILITY_FONT_SIZE, VconfNotifyFontNameChanged, handler );
305       vconf_notify_key_changed( VCONFKEY_SETAPPL_ACCESSIBILITY_FONT_SIZE, VconfNotifyFontSizeChanged, handler );
306 #endif // DALI_PROFILE_UBUNTU
307
308 #ifdef DALI_ELDBUS_AVAILABLE
309
310       // Initialize ElDBus.
311       DALI_LOG_INFO( gImfLogging, Debug::General, "Starting DBus Initialization\n" );
312       eldbus_init();
313
314       mSessionConnection = eldbus_connection_get( ELDBUS_CONNECTION_TYPE_SESSION );
315
316       Eldbus_Object *a11yObject = eldbus_object_get( mSessionConnection, A11Y_BUS, A11Y_PATH );
317       Eldbus_Proxy *elDBusManager = eldbus_proxy_get( a11yObject, A11Y_INTERFACE );
318
319       // Pass in handler in the cb_data field so we can access the accessibility adaptor within the callback.
320       eldbus_proxy_call( elDBusManager, A11Y_GET_ADDRESS, EcoreElDBusInitialisation, handler, -1, "" );
321
322       DALI_LOG_INFO( gImfLogging, Debug::General, "Finished DBus Initialization\n" );
323
324 #endif // DALI_ELDBUS_AVAILABLE
325     }
326   }
327
328   /**
329    * Destructor
330    */
331   ~Impl()
332   {
333 #ifndef DALI_PROFILE_UBUNTU
334     vconf_ignore_key_changed( VCONFKEY_SETAPPL_ACCESSIBILITY_FONT_SIZE, VconfNotifyFontSizeChanged );
335     vconf_ignore_key_changed( DALI_VCONFKEY_SETAPPL_ACCESSIBILITY_FONT_SIZE, VconfNotifyFontNameChanged );
336 #endif // DALI_PROFILE_UBUNTU
337
338     for( std::vector<Ecore_Event_Handler*>::iterator iter = mEcoreEventHandler.begin(), endIter = mEcoreEventHandler.end(); iter != endIter; ++iter )
339     {
340       ecore_event_handler_del( *iter );
341     }
342
343 #ifdef DALI_ELDBUS_AVAILABLE
344     // Close down ElDBus
345     if( mA11yConnection )
346     {
347       eldbus_connection_unref( mA11yConnection );
348     }
349
350     if( mSessionConnection )
351     {
352       eldbus_connection_unref( mSessionConnection );
353     }
354
355     eldbus_shutdown();
356 #endif // DALI_ELDBUS_AVAILABLE
357   }
358
359   // Static methods
360
361   /////////////////////////////////////////////////////////////////////////////////////////////////
362   // Touch Callbacks
363   /////////////////////////////////////////////////////////////////////////////////////////////////
364
365   /**
366    * Called when a touch down is received.
367    */
368   static Eina_Bool EcoreEventMouseButtonDown( void* data, int type, void* event )
369   {
370     Ecore_Event_Mouse_Button *touchEvent( (Ecore_Event_Mouse_Button*)event );
371     EventHandler* handler( (EventHandler*)data );
372
373     if ( touchEvent->window == (unsigned int)ecore_wl_window_id_get(handler->mImpl->mWindow) )
374     {
375       PointState::Type state ( PointState::DOWN );
376
377       // Check if the buttons field is set and ensure it's the primary touch button.
378       // If this event was triggered by buttons other than the primary button (used for touch), then
379       // just send an interrupted event to Core.
380       if ( touchEvent->buttons && (touchEvent->buttons != PRIMARY_TOUCH_BUTTON_ID ) )
381       {
382         state = PointState::INTERRUPTED;
383       }
384
385       Integration::Point point;
386       point.SetDeviceId( touchEvent->multi.device );
387       point.SetState( state );
388       point.SetScreenPosition( Vector2( touchEvent->x, touchEvent->y ) );
389       point.SetRadius( touchEvent->multi.radius, Vector2( touchEvent->multi.radius_x, touchEvent->multi.radius_y ) );
390       point.SetPressure( touchEvent->multi.pressure );
391       point.SetAngle( Degree( touchEvent->multi.angle ) );
392       handler->SendEvent( point, touchEvent->timestamp );
393     }
394
395     return ECORE_CALLBACK_PASS_ON;
396   }
397
398   /**
399    * Called when a touch up is received.
400    */
401   static Eina_Bool EcoreEventMouseButtonUp( void* data, int type, void* event )
402   {
403     Ecore_Event_Mouse_Button *touchEvent( (Ecore_Event_Mouse_Button*)event );
404     EventHandler* handler( (EventHandler*)data );
405
406     if ( touchEvent->window == (unsigned int)ecore_wl_window_id_get(handler->mImpl->mWindow) )
407     {
408       Integration::Point point;
409       point.SetDeviceId( touchEvent->multi.device );
410       point.SetState( PointState::UP );
411       point.SetScreenPosition( Vector2( touchEvent->x, touchEvent->y ) );
412       point.SetRadius( touchEvent->multi.radius, Vector2( touchEvent->multi.radius_x, touchEvent->multi.radius_y ) );
413       point.SetPressure( touchEvent->multi.pressure );
414       point.SetAngle( Degree( touchEvent->multi.angle ) );
415       handler->SendEvent( point, touchEvent->timestamp );
416     }
417
418     return ECORE_CALLBACK_PASS_ON;
419   }
420
421   /**
422    * Called when a touch up is received.
423    */
424   static Eina_Bool EcoreEventMouseWheel( void* data, int type, void* event )
425   {
426     Ecore_Event_Mouse_Wheel *mouseWheelEvent( (Ecore_Event_Mouse_Wheel*)event );
427
428     DALI_LOG_INFO( gImfLogging, Debug::General, "EVENT Ecore_Event_Mouse_Wheel: direction: %d, modifiers: %d, x: %d, y: %d, z: %d\n", mouseWheelEvent->direction, mouseWheelEvent->modifiers, mouseWheelEvent->x, mouseWheelEvent->y, mouseWheelEvent->z);
429
430     EventHandler* handler( (EventHandler*)data );
431     if ( mouseWheelEvent->window == (unsigned int)ecore_wl_window_id_get(handler->mImpl->mWindow) )
432     {
433       WheelEvent wheelEvent( WheelEvent::MOUSE_WHEEL, mouseWheelEvent->direction, mouseWheelEvent->modifiers, Vector2(mouseWheelEvent->x, mouseWheelEvent->y), mouseWheelEvent->z, mouseWheelEvent->timestamp );
434       handler->SendWheelEvent( wheelEvent );
435     }
436     return ECORE_CALLBACK_PASS_ON;
437   }
438
439   /**
440    * Called when a touch motion is received.
441    */
442   static Eina_Bool EcoreEventMouseButtonMove( void* data, int type, void* event )
443   {
444     Ecore_Event_Mouse_Move *touchEvent( (Ecore_Event_Mouse_Move*)event );
445     EventHandler* handler( (EventHandler*)data );
446
447     if ( touchEvent->window == (unsigned int)ecore_wl_window_id_get(handler->mImpl->mWindow) )
448     {
449       Integration::Point point;
450       point.SetDeviceId( touchEvent->multi.device );
451       point.SetState( PointState::MOTION );
452       point.SetScreenPosition( Vector2( touchEvent->x, touchEvent->y ) );
453       point.SetRadius( touchEvent->multi.radius, Vector2( touchEvent->multi.radius_x, touchEvent->multi.radius_y ) );
454       point.SetPressure( touchEvent->multi.pressure );
455       point.SetAngle( Degree( touchEvent->multi.angle ) );
456       handler->SendEvent( point, touchEvent->timestamp );
457     }
458
459     return ECORE_CALLBACK_PASS_ON;
460   }
461
462   /////////////////////////////////////////////////////////////////////////////////////////////////
463   // Key Callbacks
464   /////////////////////////////////////////////////////////////////////////////////////////////////
465
466   /**
467    * Called when a key down is received.
468    */
469   static Eina_Bool EcoreEventKeyDown( void* data, int type, void* event )
470   {
471     DALI_LOG_INFO( gImfLogging, Debug::General, "EVENT >>EcoreEventKeyDown \n" );
472
473     EventHandler* handler( (EventHandler*)data );
474     Ecore_Event_Key *keyEvent( (Ecore_Event_Key*)event );
475     bool eventHandled( false );
476
477     // If a device key then skip ecore_imf_context_filter_event.
478     if ( ! KeyLookup::IsDeviceButton( keyEvent->keyname ) )
479     {
480       Ecore_IMF_Context* imfContext = NULL;
481       Dali::ImfManager imfManager( ImfManager::Get() );
482       if ( imfManager )
483       {
484         imfContext = ImfManager::GetImplementation( imfManager ).GetContext();
485       }
486
487       if ( imfContext )
488       {
489         // We're consuming key down event so we have to pass to IMF so that it can parse it as well.
490         Ecore_IMF_Event_Key_Down ecoreKeyDownEvent;
491         ecoreKeyDownEvent.keyname   = keyEvent->keyname;
492         ecoreKeyDownEvent.key       = keyEvent->key;
493         ecoreKeyDownEvent.string    = keyEvent->string;
494         ecoreKeyDownEvent.compose   = keyEvent->compose;
495         ecoreKeyDownEvent.timestamp = keyEvent->timestamp;
496         ecoreKeyDownEvent.modifiers = EcoreInputModifierToEcoreIMFModifier ( keyEvent->modifiers );
497         ecoreKeyDownEvent.locks     = (Ecore_IMF_Keyboard_Locks) ECORE_IMF_KEYBOARD_LOCK_NONE;
498 #ifdef ECORE_IMF_1_13
499         ecoreKeyDownEvent.dev_name  = "";
500         ecoreKeyDownEvent.dev_class = ECORE_IMF_DEVICE_CLASS_KEYBOARD;
501         ecoreKeyDownEvent.dev_subclass = ECORE_IMF_DEVICE_SUBCLASS_NONE;
502 #endif // ECORE_IMF_1_13
503
504         eventHandled = ecore_imf_context_filter_event( imfContext,
505                                                        ECORE_IMF_EVENT_KEY_DOWN,
506                                                        (Ecore_IMF_Event *) &ecoreKeyDownEvent );
507
508         // If the event has not been handled by IMF then check if we should reset our IMF context
509         if( !eventHandled )
510         {
511           if ( !strcmp( keyEvent->keyname, "Escape"   ) ||
512                !strcmp( keyEvent->keyname, "Return"   ) ||
513                !strcmp( keyEvent->keyname, "KP_Enter" ) )
514           {
515             ecore_imf_context_reset( imfContext );
516           }
517         }
518       }
519     }
520
521     // If the event wasn't handled then we should send a key event.
522     if ( !eventHandled )
523     {
524       if ( keyEvent->window == (unsigned int)ecore_wl_window_id_get(handler->mImpl->mWindow) )
525       {
526         std::string keyName( keyEvent->keyname );
527         std::string keyString( "" );
528         int keyCode = KeyLookup::GetDaliKeyCode( keyEvent->keyname);
529         keyCode = (keyCode == -1) ? 0 : keyCode;
530         int modifier( keyEvent->modifiers );
531         unsigned long time = keyEvent->timestamp;
532         if (!strncmp(keyEvent->keyname, "Keycode-", 8))
533           keyCode = atoi(keyEvent->keyname + 8);
534
535         // Ensure key event string is not NULL as keys like SHIFT have a null string.
536         if ( keyEvent->string )
537         {
538           keyString = keyEvent->string;
539         }
540
541         KeyEvent keyEvent(keyName, keyString, keyCode, modifier, time, KeyEvent::Down);
542         handler->SendEvent( keyEvent );
543       }
544     }
545
546     return ECORE_CALLBACK_PASS_ON;
547   }
548
549   /**
550    * Called when a key up is received.
551    */
552   static Eina_Bool EcoreEventKeyUp( void* data, int type, void* event )
553   {
554     DALI_LOG_INFO( gImfLogging, Debug::General, "EVENT >>EcoreEventKeyUp\n" );
555
556     EventHandler* handler( (EventHandler*)data );
557     Ecore_Event_Key *keyEvent( (Ecore_Event_Key*)event );
558     bool eventHandled( false );
559
560     // Device keys like Menu, home, back button must skip ecore_imf_context_filter_event.
561     if ( ! KeyLookup::IsDeviceButton( keyEvent->keyname ) )
562     {
563       Ecore_IMF_Context* imfContext = NULL;
564       Dali::ImfManager imfManager( ImfManager::Get() );
565       if ( imfManager )
566       {
567         imfContext = ImfManager::GetImplementation( imfManager ).GetContext();
568       }
569
570       if ( imfContext )
571       {
572         // We're consuming key up event so we have to pass to IMF so that it can parse it as well.
573         Ecore_IMF_Event_Key_Up ecoreKeyUpEvent;
574         ecoreKeyUpEvent.keyname   = keyEvent->keyname;
575         ecoreKeyUpEvent.key       = keyEvent->key;
576         ecoreKeyUpEvent.string    = keyEvent->string;
577         ecoreKeyUpEvent.compose   = keyEvent->compose;
578         ecoreKeyUpEvent.timestamp = keyEvent->timestamp;
579         ecoreKeyUpEvent.modifiers = EcoreInputModifierToEcoreIMFModifier ( keyEvent->modifiers );
580         ecoreKeyUpEvent.locks     = (Ecore_IMF_Keyboard_Locks) ECORE_IMF_KEYBOARD_LOCK_NONE;
581
582         eventHandled = ecore_imf_context_filter_event( imfContext,
583                                                        ECORE_IMF_EVENT_KEY_UP,
584                                                        (Ecore_IMF_Event *) &ecoreKeyUpEvent );
585       }
586     }
587
588     // If the event wasn't handled then we should send a key event.
589     if ( !eventHandled )
590     {
591       if ( keyEvent->window == (unsigned int)ecore_wl_window_id_get(handler->mImpl->mWindow) )
592       {
593         std::string keyName( keyEvent->keyname );
594         std::string keyString( "" );
595         int keyCode = KeyLookup::GetDaliKeyCode( keyEvent->keyname);
596         keyCode = (keyCode == -1) ? 0 : keyCode;
597         int modifier( keyEvent->modifiers );
598         unsigned long time = keyEvent->timestamp;
599         if (!strncmp(keyEvent->keyname, "Keycode-", 8))
600           keyCode = atoi(keyEvent->keyname + 8);
601
602         // Ensure key event string is not NULL as keys like SHIFT have a null string.
603         if ( keyEvent->string )
604         {
605           keyString = keyEvent->string;
606         }
607
608         KeyEvent keyEvent(keyName, keyString, keyCode, modifier, time, KeyEvent::Up);
609         handler->SendEvent( keyEvent );
610       }
611     }
612
613     return ECORE_CALLBACK_PASS_ON;
614   }
615
616   /////////////////////////////////////////////////////////////////////////////////////////////////
617   // Window Callbacks
618   /////////////////////////////////////////////////////////////////////////////////////////////////
619
620   /**
621    * Called when the window gains focus.
622    */
623   static Eina_Bool EcoreEventWindowFocusIn( void* data, int type, void* event )
624   {
625     Ecore_Wl_Event_Focus_In* focusInEvent( (Ecore_Wl_Event_Focus_In*)event );
626     EventHandler* handler( (EventHandler*)data );
627
628     DALI_LOG_INFO( gImfLogging, Debug::General, "EVENT >>EcoreEventWindowFocusIn \n" );
629
630     // If the window gains focus and we hid the keyboard then show it again.
631     if ( focusInEvent->win == (unsigned int)ecore_wl_window_id_get(handler->mImpl->mWindow) )
632     {
633       DALI_LOG_INFO( gImfLogging, Debug::General, "EVENT EcoreEventWindowFocusIn - >>WindowFocusGained \n" );
634
635       if ( ImfManager::IsAvailable() /* Only get the ImfManager if it's available as we do not want to create it */ )
636       {
637         Dali::ImfManager imfManager( ImfManager::Get() );
638         if ( imfManager )
639         {
640           ImfManager& imfManagerImpl( ImfManager::GetImplementation( imfManager ) );
641           if( imfManagerImpl.RestoreAfterFocusLost() )
642           {
643             imfManagerImpl.Activate();
644           }
645         }
646       }
647       Dali::Clipboard clipboard = Clipboard::Get();
648       clipboard.HideClipboard();
649     }
650
651     return ECORE_CALLBACK_PASS_ON;
652   }
653
654   /**
655    * Called when the window loses focus.
656    */
657   static Eina_Bool EcoreEventWindowFocusOut( void* data, int type, void* event )
658   {
659     Ecore_Wl_Event_Focus_Out* focusOutEvent( (Ecore_Wl_Event_Focus_Out*)event );
660     EventHandler* handler( (EventHandler*)data );
661
662     DALI_LOG_INFO( gImfLogging, Debug::General, "EVENT >>EcoreEventWindowFocusOut \n" );
663
664     // If the window loses focus then hide the keyboard.
665     if ( focusOutEvent->win == (unsigned int)ecore_wl_window_id_get(handler->mImpl->mWindow) )
666     {
667       if ( ImfManager::IsAvailable() /* Only get the ImfManager if it's available as we do not want to create it */ )
668       {
669         Dali::ImfManager imfManager( ImfManager::Get() );
670         if ( imfManager )
671         {
672           ImfManager& imfManagerImpl( ImfManager::GetImplementation( imfManager ) );
673           if( imfManagerImpl.RestoreAfterFocusLost() )
674           {
675             imfManagerImpl.Deactivate();
676           }
677         }
678       }
679
680       // Hiding clipboard event will be ignored once because window focus out event is always received on showing clipboard
681       Dali::Clipboard clipboard = Clipboard::Get();
682       if ( clipboard )
683       {
684         Clipboard& clipBoardImpl( GetImplementation( clipboard ) );
685         clipBoardImpl.HideClipboard(true);
686       }
687     }
688
689     return ECORE_CALLBACK_PASS_ON;
690   }
691
692   /**
693    * Called when the window is damaged.
694    */
695   static Eina_Bool EcoreEventWindowDamaged(void *data, int type, void *event)
696   {
697     return ECORE_CALLBACK_PASS_ON;
698   }
699
700   /**
701    * Called when the window properties are changed.
702    * We are only interested in the font change.
703    */
704
705
706   /////////////////////////////////////////////////////////////////////////////////////////////////
707   // Drag & Drop Callbacks
708   /////////////////////////////////////////////////////////////////////////////////////////////////
709
710   /**
711    * Called when a dragged item enters our window's bounds.
712    * This is when items are dragged INTO our window.
713    */
714   static Eina_Bool EcoreEventDndEnter( void* data, int type, void* event )
715   {
716     DALI_LOG_INFO( gDragAndDropLogFilter, Debug::Concise, "EcoreEventDndEnter\n" );
717
718     return ECORE_CALLBACK_PASS_ON;
719   }
720
721   /**
722    * Called when a dragged item is moved within our window.
723    * This is when items are dragged INTO our window.
724    */
725   static Eina_Bool EcoreEventDndPosition( void* data, int type, void* event )
726   {
727     DALI_LOG_INFO(gDragAndDropLogFilter, Debug::Concise, "EcoreEventDndPosition\n" );
728
729     return ECORE_CALLBACK_PASS_ON;
730   }
731
732   /**
733    * Called when a dragged item leaves our window's bounds.
734    * This is when items are dragged INTO our window.
735    */
736   static Eina_Bool EcoreEventDndLeave( void* data, int type, void* event )
737   {
738     DALI_LOG_INFO(gDragAndDropLogFilter, Debug::Concise, "EcoreEventDndLeave\n" );
739
740     return ECORE_CALLBACK_PASS_ON;
741   }
742
743   /**
744    * Called when the dragged item is dropped within our window's bounds.
745    * This is when items are dragged INTO our window.
746    */
747   static Eina_Bool EcoreEventDndDrop( void* data, int type, void* event )
748   {
749     DALI_LOG_INFO(gDragAndDropLogFilter, Debug::Concise, "EcoreEventDndDrop\n" );
750
751     return ECORE_CALLBACK_PASS_ON;
752   }
753
754   /**
755    * Called when a dragged item is moved from our window and the target window has done processing it.
756    * This is when items are dragged FROM our window.
757    */
758   static Eina_Bool EcoreEventDndFinished( void* data, int type, void* event )
759   {
760     DALI_LOG_INFO(gDragAndDropLogFilter, Debug::Concise, "EcoreEventDndFinished\n" );
761     return ECORE_CALLBACK_PASS_ON;
762   }
763
764   /**
765    * Called when a dragged item is moved from our window and the target window has sent us a status.
766    * This is when items are dragged FROM our window.
767    */
768   static Eina_Bool EcoreEventDndStatus( void* data, int type, void* event )
769   {
770     DALI_LOG_INFO(gDragAndDropLogFilter, Debug::Concise, "EcoreEventDndStatus\n" );
771     return ECORE_CALLBACK_PASS_ON;
772   }
773
774   /**
775    * Called when the client messages (i.e. the accessibility events) are received.
776    */
777   static Eina_Bool EcoreEventClientMessage( void* data, int type, void* event )
778   {
779     return ECORE_CALLBACK_PASS_ON;
780   }
781
782
783   /////////////////////////////////////////////////////////////////////////////////////////////////
784   // ElDBus Accessibility Callbacks
785   /////////////////////////////////////////////////////////////////////////////////////////////////
786
787 #ifdef DALI_ELDBUS_AVAILABLE
788   // Callback for Ecore ElDBus accessibility events.
789   static void OnEcoreElDBusAccessibilityNotification( void *context EINA_UNUSED, const Eldbus_Message *message )
790   {
791     EventHandler* handler = static_cast< EventHandler* >( context );
792     // Ignore any accessibility events when paused.
793     if( handler->mPaused )
794     {
795       return;
796     }
797
798     if ( !handler->mAccessibilityAdaptor )
799     {
800       DALI_LOG_ERROR( "Invalid accessibility adaptor\n" );
801       return;
802     }
803
804     AccessibilityAdaptor* accessibilityAdaptor( &AccessibilityAdaptor::GetImplementation( handler->mAccessibilityAdaptor ) );
805     if ( !accessibilityAdaptor )
806     {
807       DALI_LOG_ERROR( "Cannot access accessibility adaptor\n" );
808       return;
809     }
810
811     const char *gestureName;
812     int xS, yS, xE, yE;
813     unsigned int state;
814
815     // The string defines the arg-list's respective types.
816     if( !eldbus_message_arguments_get( message, "siiiiu", &gestureName, &xS, &yS, &xE, &yE, &state ) )
817     {
818       DALI_LOG_ERROR( "OnEcoreElDBusAccessibilityNotification: Error getting arguments\n" );
819     }
820
821     DALI_LOG_INFO( gImfLogging, Debug::General, "Got gesture: Name: %s  Args: %d,%d,%d,%d  State: %d\n", gestureName, xS, yS, xE, yE );
822
823     unsigned int fingers = 0;
824     char* stringPosition = ( char* )gestureName;
825
826     // Check how many fingers the gesture uses.
827     for( unsigned int i = 0; i < FingerCountStringsTotal; ++i )
828     {
829       unsigned int matchLength = strlen( ElDBusAccessibilityFingerCountStrings[ i ] );
830       if( strncmp( gestureName, ElDBusAccessibilityFingerCountStrings[ i ], matchLength ) == 0 )
831       {
832         fingers = i + 1;
833         stringPosition += matchLength;
834         break;
835       }
836     }
837
838     if( fingers == 0 )
839     {
840       // Error: invalid gesture.
841       return;
842     }
843
844     GestureType gestureType = GESTURE_TYPE_NONE;
845     SubGestureType subGestureType = SUB_GESTURE_TYPE_NONE;
846     GestureDirection direction = GESTURE_DIRECTION_NONE;
847
848     // Check for full gesture type names first.
849     for( unsigned int i = 0; i < FullEventTypeStringsTotal; ++i )
850     {
851       unsigned int matchLength = strlen( ElDBusAccessibilityFullEventTypeStrings[ i ].name );
852       if( strncmp( stringPosition, ElDBusAccessibilityFullEventTypeStrings[ i ].name, matchLength ) == 0 )
853       {
854         gestureType = ElDBusAccessibilityFullEventTypeStrings[ i ].type;
855         break;
856       }
857     }
858
859     // If we didn't find a full gesture, check for sub gesture type names.
860     if( gestureType == GESTURE_TYPE_NONE )
861     {
862       // No full gesture name found, look for partial types.
863       for( unsigned int i = 0; i < DirectionalEventTypeStringsTotal; ++i )
864       {
865         unsigned int matchLength = strlen( ElDBusAccessibilityDirectionalEventTypeStrings[ i ].name );
866         if( strncmp( stringPosition, ElDBusAccessibilityDirectionalEventTypeStrings[ i ].name, matchLength ) == 0 )
867         {
868           subGestureType = ElDBusAccessibilityDirectionalEventTypeStrings[ i ].type;
869           stringPosition += matchLength;
870         break;
871         }
872       }
873
874       if( subGestureType == SUB_GESTURE_TYPE_NONE )
875       {
876         // ERROR: Gesture not recognised.
877         return;
878       }
879
880       // If the gesture was a sub type, get it's respective direction.
881       for( unsigned int i = 0; i < DirectionStringsTotal; ++i )
882       {
883         unsigned int matchLength = strlen( ElDBusAccessibilityDirectionStrings[ i ].name );
884         if( strncmp( stringPosition, ElDBusAccessibilityDirectionStrings[ i ].name, matchLength ) == 0 )
885         {
886           direction = ElDBusAccessibilityDirectionStrings[ i ].direction;
887           stringPosition += matchLength;
888           break;
889         }
890       }
891
892       if( direction == GESTURE_DIRECTION_NONE )
893       {
894         // ERROR: Gesture not recognised.
895         return;
896       }
897     }
898
899     // Action the detected gesture here.
900     if( gestureType != GESTURE_TYPE_NONE )
901     {
902       DALI_LOG_INFO( gImfLogging, Debug::General, "Got gesture: Fingers: %d  Gesture type: %d\n", fingers, gestureType );
903     }
904     else
905     {
906       DALI_LOG_INFO( gImfLogging, Debug::General, "Got gesture: Fingers: %d  Gesture sub type: %d Gesture direction: %d\n",
907         fingers, subGestureType, direction );
908     }
909
910     // Create a touch point object.
911     TouchPoint::State touchPointState( TouchPoint::Down );
912     if ( state == 0 )
913     {
914       touchPointState = TouchPoint::Down; // Mouse down.
915     }
916     else if ( state == 1 )
917     {
918       touchPointState = TouchPoint::Motion; // Mouse move.
919     }
920     else if ( state == 2 )
921     {
922       touchPointState = TouchPoint::Up; // Mouse up.
923     }
924     else
925     {
926       touchPointState = TouchPoint::Interrupted; // Error.
927     }
928
929     // Send touch event to accessibility adaptor.
930     TouchPoint point( 0, touchPointState, (float)xS, (float)yS );
931
932     // Perform actions based on received gestures.
933     // Note: This is seperated from the reading so we can (in future)
934     // have other input readers without changing the below code.
935     switch( fingers )
936     {
937       case 1:
938       {
939         if( gestureType == GESTURE_TYPE_SINGLE_TAP || ( gestureType == GESTURE_TYPE_HOVER && touchPointState == TouchPoint::Motion ) )
940         {
941           // Focus, read out.
942           accessibilityAdaptor->HandleActionReadEvent( (unsigned int)xS, (unsigned int)yS, true /* allow read again */ );
943         }
944         else if( gestureType == GESTURE_TYPE_DOUBLE_TAP )
945         {
946           if( false ) // TODO: how to detect double tap + hold
947           {
948             // Move or drag icon / view more options for selected items.
949             // accessibilityAdaptor->HandleActionTouchEvent( point, GetCurrentMilliSeconds() );
950           }
951           else
952           {
953             // Activate selected item / active edit mode.
954             accessibilityAdaptor->HandleActionActivateEvent();
955           }
956         }
957         else if( gestureType == GESTURE_TYPE_TRIPLE_TAP )
958         {
959           // Zoom
960           accessibilityAdaptor->HandleActionZoomEvent();
961         }
962         else if( subGestureType == SUB_GESTURE_TYPE_FLICK )
963         {
964           if( direction == GESTURE_DIRECTION_LEFT )
965           {
966             // Move to previous item.
967             accessibilityAdaptor->HandleActionReadPreviousEvent();
968           }
969           else if( direction == GESTURE_DIRECTION_RIGHT )
970           {
971             // Move to next item.
972             accessibilityAdaptor->HandleActionReadNextEvent();
973           }
974           else if( direction == GESTURE_DIRECTION_UP )
975           {
976             // Move to next item.
977             accessibilityAdaptor->HandleActionPreviousEvent();
978           }
979           else if( direction == GESTURE_DIRECTION_DOWN )
980           {
981             // Move to next item.
982             accessibilityAdaptor->HandleActionNextEvent();
983           }
984           else if( direction == GESTURE_DIRECTION_LEFT_RETURN )
985           {
986             // Scroll up to the previous page
987             accessibilityAdaptor->HandleActionPageUpEvent();
988           }
989           else if( direction == GESTURE_DIRECTION_RIGHT_RETURN )
990           {
991             // Scroll down to the next page
992             accessibilityAdaptor->HandleActionPageDownEvent();
993           }
994           else if( direction == GESTURE_DIRECTION_UP_RETURN )
995           {
996             // Move to the first item on screen
997             accessibilityAdaptor->HandleActionMoveToFirstEvent();
998           }
999           else if( direction == GESTURE_DIRECTION_DOWN_RETURN )
1000           {
1001             // Move to the last item on screen
1002             accessibilityAdaptor->HandleActionMoveToLastEvent();
1003           }
1004         }
1005         break;
1006       }
1007
1008       case 2:
1009       {
1010         if( gestureType == GESTURE_TYPE_HOVER )
1011         {
1012           // In accessibility mode, scroll action should be handled when the currently focused actor is contained in scrollable control
1013           accessibilityAdaptor->HandleActionScrollEvent( point, GetCurrentMilliSeconds() );
1014         }
1015         else if( gestureType == GESTURE_TYPE_SINGLE_TAP )
1016         {
1017           // Pause/Resume current speech
1018           accessibilityAdaptor->HandleActionReadPauseResumeEvent();
1019         }
1020         else if( gestureType == GESTURE_TYPE_DOUBLE_TAP )
1021         {
1022           // Start/Stop current action
1023           accessibilityAdaptor->HandleActionStartStopEvent();
1024         }
1025         else if( gestureType == GESTURE_TYPE_TRIPLE_TAP )
1026         {
1027           // Read information from indicator
1028           accessibilityAdaptor->HandleActionReadIndicatorInformationEvent();
1029         }
1030         else if( subGestureType == SUB_GESTURE_TYPE_FLICK )
1031         {
1032           if( direction == GESTURE_DIRECTION_LEFT )
1033           {
1034             // Scroll left to the previous page
1035             accessibilityAdaptor->HandleActionPageLeftEvent();
1036           }
1037           else if( direction == GESTURE_DIRECTION_RIGHT )
1038           {
1039             // Scroll right to the next page
1040             accessibilityAdaptor->HandleActionPageRightEvent();
1041           }
1042           else if( direction == GESTURE_DIRECTION_UP )
1043           {
1044             // Scroll up the list.
1045             accessibilityAdaptor->HandleActionScrollUpEvent();
1046           }
1047           else if( direction == GESTURE_DIRECTION_DOWN )
1048           {
1049             // Scroll down the list.
1050             accessibilityAdaptor->HandleActionScrollDownEvent();
1051           }
1052         }
1053         break;
1054       }
1055
1056       case 3:
1057       {
1058         if( gestureType == GESTURE_TYPE_SINGLE_TAP )
1059         {
1060           // Read from top item on screen continuously.
1061           accessibilityAdaptor->HandleActionReadFromTopEvent();
1062         }
1063         else if( gestureType == GESTURE_TYPE_DOUBLE_TAP )
1064         {
1065           // Read from next item continuously.
1066           accessibilityAdaptor->HandleActionReadFromNextEvent();
1067         }
1068         break;
1069       }
1070     }
1071   }
1072
1073   // Callback for to set up Ecore ElDBus for accessibility callbacks.
1074   static void EcoreElDBusInitialisation( void *handle, const Eldbus_Message *message, Eldbus_Pending *pending EINA_UNUSED )
1075   {
1076     Eldbus_Object *object;
1077     Eldbus_Proxy *manager;
1078     const char *a11yBusAddress = NULL;
1079     EventHandler* handler = static_cast< EventHandler* >( handle );
1080
1081     // The string defines the arg-list's respective types.
1082     if( !eldbus_message_arguments_get( message, "s", &a11yBusAddress ) )
1083     {
1084       DALI_LOG_ERROR( "EcoreElDBusInitialisation: Error getting arguments\n" );
1085     }
1086
1087     DALI_LOG_INFO( gImfLogging, Debug::General, "Ecore ElDBus Accessibility address: %s\n", a11yBusAddress );
1088
1089     handler->mImpl->mA11yConnection = eldbus_address_connection_get( a11yBusAddress );
1090
1091     object = eldbus_object_get( handler->mImpl->mA11yConnection, BUS, PATH );
1092     manager = eldbus_proxy_get( object, INTERFACE );
1093
1094     // Pass the callback data through to the signal handler.
1095     eldbus_proxy_signal_handler_add( manager, SIGNAL, OnEcoreElDBusAccessibilityNotification, handle );
1096   }
1097 #endif // DALI_ELDBUS_AVAILABLE
1098
1099   /**
1100    * Called when the source window notifies us the content in clipboard is selected.
1101    */
1102   static Eina_Bool EcoreEventSelectionClear( void* data, int type, void* event )
1103   {
1104     DALI_LOG_INFO(gSelectionEventLogFilter, Debug::Concise, "EcoreEventSelectionClear\n" );
1105     return ECORE_CALLBACK_PASS_ON;
1106   }
1107
1108   /**
1109    * Called when the source window sends us about the selected content.
1110    * For example, when dragged items are dragged INTO our window or when items are selected in the clipboard.
1111    */
1112   static Eina_Bool EcoreEventSelectionNotify( void* data, int type, void* event )
1113   {
1114     DALI_LOG_INFO(gSelectionEventLogFilter, Debug::Concise, "EcoreEventSelectionNotify\n" );
1115     return ECORE_CALLBACK_PASS_ON;
1116   }
1117
1118   /**
1119   * Called when the source window notifies us the content in clipboard is selected.
1120   */
1121   static Eina_Bool EcoreEventDataSend( void* data, int type, void* event )
1122   {
1123     DALI_LOG_INFO(gSelectionEventLogFilter, Debug::Concise, "EcoreEventDataSend\n" );
1124
1125     Dali::Clipboard clipboard = Clipboard::Get();
1126     if ( clipboard )
1127     {
1128       Clipboard& clipBoardImpl( GetImplementation( clipboard ) );
1129       clipBoardImpl.ExcuteBuffered( true, event );
1130     }
1131     return ECORE_CALLBACK_PASS_ON;
1132   }
1133
1134    /**
1135     * Called when the source window sends us about the selected content.
1136     * For example, when item is selected in the clipboard.
1137     */
1138    static Eina_Bool EcoreEventDataReceive( void* data, int type, void* event )
1139    {
1140      DALI_LOG_INFO(gSelectionEventLogFilter, Debug::Concise, "EcoreEventDataReceive\n" );
1141
1142      EventHandler* handler( (EventHandler*)data );
1143       Dali::Clipboard clipboard = Clipboard::Get();
1144       char *selectionData = NULL;
1145       if ( clipboard )
1146       {
1147         Clipboard& clipBoardImpl( GetImplementation( clipboard ) );
1148         selectionData = clipBoardImpl.ExcuteBuffered( false, event );
1149       }
1150       if ( selectionData && handler->mClipboardEventNotifier )
1151       {
1152         ClipboardEventNotifier& clipboardEventNotifier( ClipboardEventNotifier::GetImplementation( handler->mClipboardEventNotifier ) );
1153         std::string content( selectionData, strlen(selectionData) );
1154
1155         clipboardEventNotifier.SetContent( content );
1156         clipboardEventNotifier.EmitContentSelectedSignal();
1157       }
1158      return ECORE_CALLBACK_PASS_ON;
1159    }
1160
1161   /*
1162   * Called when rotate event is recevied
1163   */
1164   static Eina_Bool EcoreEventRotate( void* data, int type, void* event )
1165   {
1166     DALI_LOG_INFO( gSelectionEventLogFilter, Debug::Concise, "EcoreEventRotate\n" );
1167
1168     EventHandler* handler( (EventHandler*)data );
1169     Ecore_Wl_Event_Window_Rotate* ev( (Ecore_Wl_Event_Window_Rotate*)event );
1170
1171     if( ev->win != (unsigned int)ecore_wl_window_id_get( handler->mImpl->mWindow ) )
1172     {
1173       return ECORE_CALLBACK_PASS_ON;
1174     }
1175
1176     RotationEvent rotationEvent;
1177     rotationEvent.angle = ev->angle;
1178     rotationEvent.winResize = 0;
1179     rotationEvent.width = ev->w;
1180     rotationEvent.height = ev->h;
1181     handler->SendRotationPrepareEvent( rotationEvent );
1182
1183     return ECORE_CALLBACK_PASS_ON;
1184   }
1185
1186   /*
1187   * Called when detent event is recevied
1188   */
1189   static Eina_Bool EcoreEventDetent( void* data, int type, void* event )
1190   {
1191     DALI_LOG_INFO(gSelectionEventLogFilter, Debug::Concise, "EcoreEventDetent\n" );
1192     EventHandler* handler( (EventHandler*)data );
1193     Ecore_Event_Detent_Rotate *e((Ecore_Event_Detent_Rotate *)event);
1194     int direction = (e->direction == ECORE_DETENT_DIRECTION_CLOCKWISE) ? 1 : -1;
1195     int timeStamp = e->timestamp;
1196
1197     WheelEvent wheelEvent( WheelEvent::CUSTOM_WHEEL, 0, 0, Vector2(0.0f, 0.0f), direction, timeStamp );
1198     handler->SendWheelEvent( wheelEvent );
1199     return ECORE_CALLBACK_PASS_ON;
1200   }
1201
1202   /////////////////////////////////////////////////////////////////////////////////////////////////
1203   // Font Callbacks
1204   /////////////////////////////////////////////////////////////////////////////////////////////////
1205   /**
1206    * Called when a font name is changed.
1207    */
1208   static void VconfNotifyFontNameChanged( keynode_t* node, void* data )
1209   {
1210     EventHandler* handler = static_cast<EventHandler*>( data );
1211     handler->SendEvent( StyleChange::DEFAULT_FONT_CHANGE );
1212   }
1213
1214   /**
1215    * Called when a font size is changed.
1216    */
1217   static void VconfNotifyFontSizeChanged( keynode_t* node, void* data )
1218   {
1219     EventHandler* handler = static_cast<EventHandler*>( data );
1220     handler->SendEvent( StyleChange::DEFAULT_FONT_SIZE_CHANGE );
1221   }
1222
1223   // Data
1224   EventHandler* mHandler;
1225   std::vector<Ecore_Event_Handler*> mEcoreEventHandler;
1226   Ecore_Wl_Window* mWindow;
1227
1228 #ifdef DALI_ELDBUS_AVAILABLE
1229   Eldbus_Connection* mSessionConnection;
1230   Eldbus_Connection* mA11yConnection;
1231 #endif
1232 };
1233
1234 EventHandler::EventHandler( RenderSurface* surface, CoreEventInterface& coreEventInterface, GestureManager& gestureManager, DamageObserver& damageObserver, DragAndDropDetectorPtr dndDetector )
1235 : mCoreEventInterface( coreEventInterface ),
1236   mGestureManager( gestureManager ),
1237   mStyleMonitor( StyleMonitor::Get() ),
1238   mDamageObserver( damageObserver ),
1239   mRotationObserver( NULL ),
1240   mDragAndDropDetector( dndDetector ),
1241   mAccessibilityAdaptor( AccessibilityAdaptor::Get() ),
1242   mClipboardEventNotifier( ClipboardEventNotifier::Get() ),
1243   mClipboard( Clipboard::Get() ),
1244   mImpl( NULL ),
1245   mPaused( false )
1246 {
1247   Ecore_Wl_Window* window = 0;
1248
1249   // this code only works with the Ecore RenderSurface so need to downcast
1250   ECore::WindowRenderSurface* ecoreSurface = dynamic_cast< ECore::WindowRenderSurface* >( surface );
1251   if( ecoreSurface )
1252   {
1253     window = ecoreSurface->GetWlWindow();
1254   }
1255
1256   mImpl = new Impl(this, window);
1257 }
1258
1259 EventHandler::~EventHandler()
1260 {
1261   if(mImpl)
1262   {
1263     delete mImpl;
1264   }
1265
1266   mGestureManager.Stop();
1267 }
1268
1269 void EventHandler::SendEvent(Integration::Point& point, unsigned long timeStamp)
1270 {
1271   if(timeStamp < 1)
1272   {
1273     timeStamp = GetCurrentMilliSeconds();
1274   }
1275
1276   Integration::TouchEvent touchEvent;
1277   Integration::HoverEvent hoverEvent;
1278   Integration::TouchEventCombiner::EventDispatchType type = mCombiner.GetNextTouchEvent(point, timeStamp, touchEvent, hoverEvent);
1279   if(type != Integration::TouchEventCombiner::DispatchNone )
1280   {
1281     DALI_LOG_INFO(gTouchEventLogFilter, Debug::General, "%d: Device %d: Button state %d (%.2f, %.2f)\n", timeStamp, point.deviceId, point.state, point.local.x, point.local.y);
1282
1283     // First the touch and/or hover event & related gesture events are queued
1284     if(type == Integration::TouchEventCombiner::DispatchTouch || type == Integration::TouchEventCombiner::DispatchBoth)
1285     {
1286       mCoreEventInterface.QueueCoreEvent( touchEvent );
1287       mGestureManager.SendEvent(touchEvent);
1288     }
1289
1290     if(type == Integration::TouchEventCombiner::DispatchHover || type == Integration::TouchEventCombiner::DispatchBoth)
1291     {
1292       mCoreEventInterface.QueueCoreEvent( hoverEvent );
1293     }
1294
1295     // Next the events are processed with a single call into Core
1296     mCoreEventInterface.ProcessCoreEvents();
1297   }
1298 }
1299
1300 void EventHandler::SendEvent(KeyEvent& keyEvent)
1301 {
1302   Dali::PhysicalKeyboard physicalKeyboard = PhysicalKeyboard::Get();
1303   if ( physicalKeyboard )
1304   {
1305     if ( ! KeyLookup::IsDeviceButton( keyEvent.keyPressedName.c_str() ) )
1306     {
1307       GetImplementation( physicalKeyboard ).KeyReceived( keyEvent.time > 1 );
1308     }
1309   }
1310
1311   // Create KeyEvent and send to Core.
1312   Integration::KeyEvent event(keyEvent.keyPressedName, keyEvent.keyPressed, keyEvent.keyCode,
1313   keyEvent.keyModifier, keyEvent.time, static_cast<Integration::KeyEvent::State>(keyEvent.state));
1314   mCoreEventInterface.QueueCoreEvent( event );
1315   mCoreEventInterface.ProcessCoreEvents();
1316 }
1317
1318 void EventHandler::SendWheelEvent( WheelEvent& wheelEvent )
1319 {
1320   // Create WheelEvent and send to Core.
1321   Integration::WheelEvent event( static_cast< Integration::WheelEvent::Type >(wheelEvent.type), wheelEvent.direction, wheelEvent.modifiers, wheelEvent.point, wheelEvent.z, wheelEvent.timeStamp );
1322   mCoreEventInterface.QueueCoreEvent( event );
1323   mCoreEventInterface.ProcessCoreEvents();
1324 }
1325
1326 void EventHandler::SendEvent( StyleChange::Type styleChange )
1327 {
1328   DALI_ASSERT_DEBUG( mStyleMonitor && "StyleMonitor Not Available" );
1329   GetImplementation( mStyleMonitor ).StyleChanged(styleChange);
1330 }
1331
1332 void EventHandler::SendEvent( const DamageArea& area )
1333 {
1334   mDamageObserver.OnDamaged( area );
1335 }
1336
1337 void EventHandler::SendRotationPrepareEvent( const RotationEvent& event )
1338 {
1339   if( mRotationObserver != NULL )
1340   {
1341     mRotationObserver->OnRotationPrepare( event );
1342     mRotationObserver->OnRotationRequest();
1343   }
1344 }
1345
1346 void EventHandler::SendRotationRequestEvent( )
1347 {
1348   // No need to separate event into prepare and request in wayland
1349 }
1350
1351 void EventHandler::FeedTouchPoint( TouchPoint& point, int timeStamp)
1352 {
1353   Integration::Point convertedPoint( point );
1354   SendEvent(convertedPoint, timeStamp);
1355 }
1356
1357 void EventHandler::FeedWheelEvent( WheelEvent& wheelEvent )
1358 {
1359   SendWheelEvent( wheelEvent );
1360 }
1361
1362 void EventHandler::FeedKeyEvent( KeyEvent& event )
1363 {
1364   SendEvent( event );
1365 }
1366
1367 void EventHandler::FeedEvent( Integration::Event& event )
1368 {
1369   mCoreEventInterface.QueueCoreEvent( event );
1370   mCoreEventInterface.ProcessCoreEvents();
1371 }
1372
1373 void EventHandler::Reset()
1374 {
1375   mCombiner.Reset();
1376
1377   // Any touch listeners should be told of the interruption.
1378   Integration::TouchEvent event;
1379   Integration::Point point;
1380   point.SetState( PointState::INTERRUPTED );
1381   event.AddPoint( point );
1382
1383   // First the touch event & related gesture events are queued
1384   mCoreEventInterface.QueueCoreEvent( event );
1385   mGestureManager.SendEvent( event );
1386
1387   // Next the events are processed with a single call into Core
1388   mCoreEventInterface.ProcessCoreEvents();
1389 }
1390
1391 void EventHandler::Pause()
1392 {
1393   mPaused = true;
1394   Reset();
1395 }
1396
1397 void EventHandler::Resume()
1398 {
1399   mPaused = false;
1400   Reset();
1401 }
1402
1403 void EventHandler::SetDragAndDropDetector( DragAndDropDetectorPtr detector )
1404 {
1405   mDragAndDropDetector = detector;
1406 }
1407
1408 void EventHandler::SetRotationObserver( RotationObserver* observer )
1409 {
1410   mRotationObserver = observer;
1411 }
1412
1413 } // namespace Adaptor
1414
1415 } // namespace Internal
1416
1417 } // namespace Dali