Implement Focus UI
[framework/web/webkit-efl.git] / Source / WebKit2 / WebProcess / WebPage / WebPage.messages.in
index fe713b8..11b2b47 100755 (executable)
@@ -71,8 +71,13 @@ messages -> WebPage {
     RequestUpdateFormNavigation()
     MoveFocus(int newIndex)
 #if ENABLE(TIZEN_WEBKIT2_HIT_TEST)
+#if ENABLE(TOUCH_ADJUSTMENT)
+    HitTestResultAtPoint(WebCore::IntPoint point, int hitTestMode, WebCore::IntSize area) -> (WebKit::WebHitTestResult::Data hitTestResultData)
+#endif
+#if !ENABLE(TOUCH_ADJUSTMENT)
     HitTestResultAtPoint(WebCore::IntPoint point, int hitTestMode) -> (WebKit::WebHitTestResult::Data hitTestResultData)
 #endif
+#endif
     SuspendJavaScriptAndResources()
     ResumeJavaScriptAndResources()
 
@@ -378,9 +383,9 @@ messages -> WebPage {
 #endif
 
 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
-    SelectClosestWord(WebCore::IntPoint point, bool isStartedTextSelectionFromOutside) -> (bool result)
-    SetLeftSelection(WebCore::IntPoint point) -> (bool result)
-    SetRightSelection(WebCore::IntPoint point) -> (bool result)
+    SelectClosestWord(WebCore::IntPoint point) -> (bool result)
+    SetLeftSelection(WebCore::IntPoint point, int direction) -> (int result)
+    SetRightSelection(WebCore::IntPoint point, int direction) -> (int result)
     GetSelectionHandlers() -> (WebCore::IntRect leftRect, WebCore::IntRect rightRect)
     GetSelectionText() -> (String result)
     SelectionRangeClear() -> (bool result)
@@ -438,9 +443,11 @@ messages -> WebPage {
 #endif
 
 #if ENABLE(TIZEN_SCREEN_READER)
-    RaiseTapEvent(WebCore::IntPoint position, WebCore::IntPoint globalPosition)
     MoveScreenReaderFocus(bool forward) -> (bool result)
     MoveScreenReaderFocusByPoint(WebCore::IntPoint point)
+    ClearScreenReaderFocus()
+    RaiseTapEvent(WebCore::IntPoint position, WebCore::IntPoint globalPosition) -> (bool result)
+    AdjustScreenReaderFocusedObjectValue(bool up)
     RecalcScreenReaderFocusRect()
     ClearScreenReader()
 #endif
@@ -452,4 +459,8 @@ messages -> WebPage {
 #if ENABLE(TIZEN_USE_SETTINGS_FONT)
     UseSettingsFont()
 #endif
+
+#if ENABLE(TIZEN_FOCUS_UI)
+    SetSpatialNavigationEnabled(bool enabled)
+#endif
 }