X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fdevel-api%2Fadaptor-framework%2Fwindow-devel.h;h=882ee128d34e9e097b6a8d28b18ca89b777072f8;hb=c714563baa3d8c19bc7c2b7110acfb2b99c9678f;hp=bb066c3e62c3131e4f89615961ce49306e2f191d;hpb=f2042a7dcf5e5511fa0244f354b4fc4ec08bc711;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/devel-api/adaptor-framework/window-devel.h b/dali/devel-api/adaptor-framework/window-devel.h index bb066c3..882ee12 100644 --- a/dali/devel-api/adaptor-framework/window-devel.h +++ b/dali/devel-api/adaptor-framework/window-devel.h @@ -32,6 +32,7 @@ class KeyEvent; class TouchEvent; class WheelEvent; class RenderTaskList; +struct TouchPoint; namespace DevelWindow { @@ -400,6 +401,27 @@ DALI_ADAPTOR_API void SendRotationCompletedAcknowledgement(Window window); */ DALI_ADAPTOR_API bool IsWindowRotating(Window window); +/** + * @brief Feed (Send) touch event to window + * @param[in] window The window instance + * @param[in] point The touch point + * @param[in] timeStamp The time stamp + */ +DALI_ADAPTOR_API void FeedTouchPoint(Window window, const Dali::TouchPoint& point, int32_t timeStamp); + +/** + * @brief Feed (Send) wheel event to window + * @param[in] window The window instance + * @param[in] wheelEvent The wheel event + */ +DALI_ADAPTOR_API void FeedWheelEvent(Window window, const Dali::WheelEvent& wheelEvent); + +/** + * @brief Feed (Send) key event to window + * @param[in] window The window instance + * @param[in] keyEvent The key event holding the key information. + */ +DALI_ADAPTOR_API void FeedKeyEvent(Window window, const Dali::KeyEvent& keyEvent); } // namespace DevelWindow