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