Implement Focus UI
[framework/web/webkit-efl.git] / Source / WebKit2 / UIProcess / API / efl / ewk_view.cpp
1 /*
2    Copyright (C) 2011 Samsung Electronics
3    Copyright (C) 2012 Intel Corporation. All rights reserved.
4
5     This library is free software; you can redistribute it and/or
6     modify it under the terms of the GNU Library General Public
7     License as published by the Free Software Foundation; either
8     version 2 of the License, or (at your option) any later version.
9
10     This library is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13     Library General Public License for more details.
14
15     You should have received a copy of the GNU Library General Public License
16     along with this library; see the file COPYING.LIB.  If not, write to
17     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18     Boston, MA 02110-1301, USA.
19 */
20
21 #include "config.h"
22 #include "ewk_view.h"
23
24 #include "EwkViewImpl.h"
25 #include "FindClientEfl.h"
26 #include "FormClientEfl.h"
27 #include "LayerTreeCoordinatorProxy.h"
28 #include "InputMethodContextEfl.h"
29 #include "NativeWebKeyboardEvent.h"
30 #include "NativeWebMouseEvent.h"
31 #include "NativeWebWheelEvent.h"
32 #include "PageClientImpl.h"
33 #include "PageLoadClientEfl.h"
34 #include "PagePolicyClientEfl.h"
35 #include "PageUIClientEfl.h"
36 #include "ResourceLoadClientEfl.h"
37 #include "WKAPICast.h"
38 #include "WKEinaSharedString.h"
39 #include "WKFindOptions.h"
40 #include "WKRetainPtr.h"
41 #include "WKString.h"
42 #include "WebContext.h"
43 #include "WebData.h"
44 #include "WebPageGroup.h"
45 #include "WebPopupItem.h"
46 #include "WebPopupMenuProxyEfl.h"
47 #include "WebPreferences.h"
48 #include "ewk_back_forward_list_private.h"
49 #include "ewk_context.h"
50 #include "ewk_context_private.h"
51 #include "ewk_favicon_database_private.h"
52 #include "ewk_intent_private.h"
53 #include "ewk_popup_menu_item_private.h"
54 #include "ewk_private.h"
55 #include "ewk_settings_private.h"
56 #include "ewk_view_private.h"
57 #include <Ecore_Evas.h>
58 #include <Ecore_X.h>
59 #include <WebKit2/WKPageGroup.h>
60 #include <wtf/text/CString.h>
61
62 #if ENABLE(FULLSCREEN_API)
63 #include "WebFullScreenManagerProxy.h"
64 #endif
65
66 #if ENABLE(TIZEN_WEBKIT2_DDK_CHECK)
67 namespace EGL {
68 #include <EGL/egl.h>
69 }
70 #endif
71
72 #if OS(TIZEN)
73 #include "DrawingAreaProxyImpl.h"
74 #include "WKArray.h"
75 #include "WKData.h"
76 #include "WKDownload.h"
77 #include "WKError.h"
78 #include "WKGeolocationPermissionRequest.h"
79 #include "WKImageCairo.h"
80 #include "WKOpenPanelParameters.h"
81 #include "WKOpenPanelResultListener.h"
82 #include "WKPage.h"
83 #include "WKPageGroup.h"
84 #include "WKView.h"
85 #include "WKPageTizen.h"
86 #include "WKPreferences.h"
87 #include "WKSerializedScriptValue.h"
88 #include "WKString.h"
89 #include "WKURLRequest.h"
90 #include "ewk_context_menu_private.h"
91 #include "ewk_error.h"
92 #include "ewk_error_private.h"
93 #include "ewk_history_private.h"
94 #include "ewk_popup_menu_item.h"
95 #include "ewk_popup_menu_item_private.h"
96 #include "ewk_view_context_menu_client.h"
97 #include "ewk_view_icondatabase_client.h"
98 #include "ewk_view_tizen_client.h"
99 #include <Ecore.h>
100 #include <Elementary.h>
101 #include <WebCore/EflScreenUtilities.h>
102 #include <WebCore/NotImplemented.h>
103 #include <cairo.h>
104
105 #if ENABLE(TIZEN_ICON_DATABASE)
106 #include "WKContextPrivate.h"
107 #endif
108
109 #if ENABLE(TIZEN_GEOLOCATION)
110 #include "ewk_geolocation_private.h"
111 #include "ewk_security_origin.h"
112 #include "ewk_view_geolocation_provider.h"
113 #endif
114
115 #if ENABLE(TOUCH_EVENTS)
116 #include "NativeWebTouchEvent.h"
117 #include "WebEvent.h"
118 #endif
119
120 #if ENABLE(TIZEN_ISF_PORT)
121 #include <Ecore_IMF.h>
122 #endif
123
124 #if ENABLE(TIZEN_NOTIFICATIONS)
125 #include "WKArray.h"
126 #include "WKNotificationManager.h"
127 #include "WKNumber.h"
128 #include "ewk_notification_private.h"
129 #include "ewk_view_notification_provider.h"
130 #endif
131
132 #if ENABLE(TIZEN_MEDIA_STREAM)
133 #include "WKUserMediaPermissionRequest.h"
134 #include "ewk_user_media_private.h"
135 #endif
136
137 #if ENABLE(TIZEN_RUNTIME_BACKEND_SELECTION)
138 #include "WebPageGroup.h"
139 #include "WebPreferences.h"
140 #endif
141
142 #if ENABLE(TIZEN_WEBKIT2_HIT_TEST)
143 #include "ewk_hit_test_private.h"
144 #endif
145
146 #if ENABLE(TIZEN_WEBKIT2_GET_TEXT_STYLE_FOR_SELECTION)
147 #include "ewk_text_style.h"
148 #endif
149
150 #if ENABLE(TIZEN_SCREEN_READER)
151 #include "ScreenReaderProxy.h"
152 #endif
153
154 #if ENABLE(TIZEN_CSP)
155 #include <WebCore/ContentSecurityPolicy.h>
156 #endif
157
158 #if ENABLE(TIZEN_SUPPORT_WEBAPP_META_TAG)
159 #include "WKDictionary.h"
160 #include "ewk_web_application_icon_data_private.h"
161 #endif
162 #endif // #if OS(TIZEN)
163
164 using namespace WebKit;
165 using namespace WebCore;
166
167 static const char EWK_VIEW_TYPE_STR[] = "EWK2_View";
168
169 #define EWK_VIEW_TYPE_CHECK(ewkView, result)                                   \
170     bool result = true;                                                        \
171     do {                                                                       \
172         if (!ewkView) {                                                        \
173             EINA_LOG_CRIT("null is not a ewk_view");                           \
174             result = false;                                                    \
175             break;                                                             \
176         }                                                                      \
177         const char* _tmp_otype = evas_object_type_get(ewkView);                \
178         const Evas_Smart* _tmp_s = evas_object_smart_smart_get(ewkView);       \
179         if (EINA_UNLIKELY(!_tmp_s)) {                                          \
180             EINA_LOG_CRIT                                                      \
181                 ("%p (%s) is not a smart object!",                             \
182                  ewkView, _tmp_otype ? _tmp_otype : "(null)");                 \
183             result = false;                                                    \
184             break;                                                             \
185         }                                                                      \
186         const Evas_Smart_Class* _tmp_sc = evas_smart_class_get(_tmp_s);        \
187         if (EINA_UNLIKELY(!_tmp_sc)) {                                         \
188             EINA_LOG_CRIT                                                      \
189                 ("%p (%s) is not a smart object!",                             \
190                  ewkView, _tmp_otype ? _tmp_otype : "(null)");                 \
191             result = false;                                                    \
192             break;                                                             \
193         }                                                                      \
194         else if (EINA_UNLIKELY(_tmp_sc->data != EWK_VIEW_TYPE_STR)) {               \
195             EINA_LOG_CRIT                                                      \
196                 ("%p (%s) is not of an ewk_view (need %p, got %p)!",           \
197                  ewkView, _tmp_otype ? _tmp_otype : "(null)",                  \
198                  EWK_VIEW_TYPE_STR, _tmp_sc->data);                            \
199             result = false;                                                    \
200         }                                                                      \
201     } while (0)
202
203 #define EWK_VIEW_SD_GET(ewkView, smartData)                                    \
204     EWK_VIEW_TYPE_CHECK(ewkView, _tmp_result);                                 \
205     Ewk_View_Smart_Data* smartData = 0;                                        \
206     if (_tmp_result)                                                           \
207         smartData = (Ewk_View_Smart_Data*)evas_object_smart_data_get(ewkView)
208
209 #define EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, ...)                     \
210     EWK_VIEW_SD_GET(ewkView, smartData);                                       \
211     do {                                                                       \
212         if (!smartData) {                                                      \
213             EINA_LOG_CRIT("no smart data for object %p (%s)",                  \
214                      ewkView, evas_object_type_get(ewkView));                  \
215             return __VA_ARGS__;                                                \
216         }                                                                      \
217     } while (0)
218
219 #if OS(TIZEN)
220 static Eina_Bool _ewk_view_default_javascript_alert(Evas_Object*, const char* alertText, void* userData);
221 static Eina_Bool _ewk_view_default_javascript_confirm(Evas_Object*, const char* message, void* userData);
222 static Eina_Bool _ewk_view_default_javascript_prompt(Evas_Object*, const char* message, const char* defaultValue, void* userData);
223 #if ENABLE(TIZEN_SUPPORT_BEFORE_UNLOAD_CONFIRM_PANEL)
224 static Eina_Bool _ewk_view_default_before_unload_confirm_panel(Evas_Object*, const char* message, void* userData);
225 #endif
226 static Eina_Bool _ewk_view_default_open_panel(Evas_Object*, Eina_Bool allow_multiple_files, Eina_List *accepted_mime_types, const char* capture, void* userData);
227
228 #if ENABLE(TIZEN_WEBKIT2_POPUP_INTERNAL)
229 Eina_Bool _ewk_view_popup_menu_show(Ewk_View_Smart_Data*, Eina_Rectangle, Ewk_Text_Direction, double page_scale_factor, Eina_List* items, int selectedIndex);
230 #if ENABLE(TIZEN_MULTIPLE_SELECT)
231 Eina_Bool _ewk_view_multiple_popup_menu_show(Ewk_View_Smart_Data*, Eina_Rectangle, Ewk_Text_Direction, double page_scale_factor, Eina_List* items);
232 #endif
233 Eina_Bool _ewk_view_popup_menu_hide(Ewk_View_Smart_Data*);
234 Eina_Bool _ewk_view_popup_menu_update(Ewk_View_Smart_Data*, Eina_Rectangle, Ewk_Text_Direction, Eina_List*, int);
235 #endif
236 #if ENABLE(TIZEN_SCREEN_ORIENTATION_SUPPORT_INTERNAL)
237 Eina_Bool _ewk_orientation_lock(Ewk_View_Smart_Data *sd, int orientations);
238 void _ewk_orientation_unlock(Ewk_View_Smart_Data *sd);
239 #endif
240
241 #if ENABLE(TIZEN_INPUT_TAG_EXTENSION)
242 static Eina_Bool _ewk_view_input_picker_show(Ewk_View_Smart_Data*, Ewk_Input_Type, const char* inputValue);
243 #endif
244
245 #if ENABLE(TIZEN_DATALIST_ELEMENT)
246 static Eina_Bool _ewk_view_data_list_show(Ewk_View_Smart_Data*, Ewk_Input_Type, Eina_List*);
247 static Eina_Bool _ewk_view_data_list_hide(Ewk_View_Smart_Data*, Ewk_Input_Type);
248 #endif
249
250 #if ENABLE(TIZEN_INPUT_COLOR_PICKER)
251 static Eina_Bool _ewk_input_picker_color_request(Ewk_View_Smart_Data*, int, int, int, int);
252 static Eina_Bool _ewk_input_picker_color_dismiss(Ewk_View_Smart_Data*);
253 #endif
254 #endif // #if OS(TIZEN)
255
256 static void _ewk_view_smart_changed(Ewk_View_Smart_Data* smartData)
257 {
258     if (smartData->changed.any)
259         return;
260     smartData->changed.any = true;
261     evas_object_smart_changed(smartData->self);
262 }
263
264 #if !ENABLE(TIZEN_ICON_DATABASE)
265 static void _ewk_view_on_favicon_changed(const char* pageURL, void* eventInfo)
266 {
267     Evas_Object* ewkView = static_cast<Evas_Object*>(eventInfo);
268     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
269     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
270
271     const char* viewURL = ewk_view_url_get(ewkView);
272     if (!viewURL || strcasecmp(viewURL, pageURL))
273         return;
274
275     impl->informIconChange();
276 }
277 #endif
278
279 // Default Event Handling.
280 static Eina_Bool _ewk_view_smart_focus_in(Ewk_View_Smart_Data* smartData)
281 {
282     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
283     TIZEN_LOGI("");
284
285 #if OS(TIZEN)
286     impl->pageClient->setViewFocused(true);
287 #endif // #if OS(TIZEN)
288     impl->pageProxy->viewStateDidChange(WebPageProxy::ViewIsFocused | WebPageProxy::ViewWindowIsActive);
289 #if ENABLE(TIZEN_ISF_PORT)
290     if (impl->inputMethodContext())
291         impl->inputMethodContext()->onFocusIn();
292 #endif
293     return true;
294 }
295
296 static Eina_Bool _ewk_view_smart_focus_out(Ewk_View_Smart_Data* smartData)
297 {
298     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
299     TIZEN_LOGI("");
300
301 #if OS(TIZEN)
302 #if ENABLE(TIZEN_ISF_PORT)
303     // Keypad should be hidden rapidly when moving focus on elementary
304     // because Ecore-ime doesn't support it.
305     if (impl->inputMethodContext())
306         impl->inputMethodContext()->onFocusOut();
307 #endif
308
309 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
310     if (impl->pageClient->isTextSelectionMode())
311         impl->pageClient->setIsTextSelectionMode(false);
312 #endif
313
314 #if ENABLE(TIZEN_CONTEXT_MENU_WEBKIT_2)
315     if (impl->pageClient->isContextMenuVisible())
316         impl->pageProxy->hideContextMenu();
317 #endif
318
319 #if ENABLE(TIZEN_WEBKIT2_CONTEXT_MENU_CLIPBOARD)
320     if (impl->pageClient->isClipboardWindowOpened())
321         impl->pageClient->closeClipboardWindow();
322 #endif
323
324 #if ENABLE(TIZEN_DRAG_SUPPORT)
325     if (impl->pageClient->isDragMode())
326         impl->pageClient->setDragMode(false);
327 #endif
328
329 #if ENABLE(TIZEN_WEBKIT2_FORM_DATABASE)
330     if (smartData->api->formdata_candidate_is_showing(smartData))
331         smartData->api->formdata_candidate_hide(smartData);
332 #endif
333
334     impl->pageClient->setViewFocused(false);
335 #endif // #if OS(TIZEN)
336     impl->pageProxy->viewStateDidChange(WebPageProxy::ViewIsFocused | WebPageProxy::ViewWindowIsActive);
337     return true;
338 }
339
340 static Eina_Bool _ewk_view_smart_mouse_wheel(Ewk_View_Smart_Data* smartData, const Evas_Event_Mouse_Wheel* wheelEvent)
341 {
342     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
343
344     impl->page()->handleWheelEvent(NativeWebWheelEvent(wheelEvent, impl->transformFromScene(), impl->transformToScreen()));
345     return true;
346 }
347
348 static Eina_Bool _ewk_view_smart_mouse_down(Ewk_View_Smart_Data* smartData, const Evas_Event_Mouse_Down* downEvent)
349 {
350     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
351
352     impl->page()->handleMouseEvent(NativeWebMouseEvent(downEvent, impl->transformFromScene(), impl->transformToScreen()));
353     return true;
354 }
355
356 static Eina_Bool _ewk_view_smart_mouse_up(Ewk_View_Smart_Data* smartData, const Evas_Event_Mouse_Up* upEvent)
357 {
358     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
359
360     impl->page()->handleMouseEvent(NativeWebMouseEvent(upEvent, impl->transformFromScene(), impl->transformToScreen()));
361
362     InputMethodContextEfl* inputMethodContext = impl->inputMethodContext();
363     if (inputMethodContext)
364         inputMethodContext->handleMouseUpEvent(upEvent);
365
366     return true;
367 }
368
369 static Eina_Bool _ewk_view_smart_mouse_move(Ewk_View_Smart_Data* smartData, const Evas_Event_Mouse_Move* moveEvent)
370 {
371     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
372
373     // FIXME: impl->page() is used in the webkit opensource, but tizen webkit does not use it yet.
374     impl->page()->handleMouseEvent(NativeWebMouseEvent(moveEvent, impl->transformFromScene(), impl->transformToScreen()));
375     return true;
376 }
377
378 static Eina_Bool _ewk_view_smart_key_down(Ewk_View_Smart_Data* smartData, const Evas_Event_Key_Down* downEvent)
379 {
380     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
381
382     bool isFiltered = false;
383     InputMethodContextEfl* inputMethodContext = impl->inputMethodContext();
384     if (inputMethodContext)
385         inputMethodContext->handleKeyDownEvent(downEvent, &isFiltered);
386
387     impl->pageProxy->handleKeyboardEvent(NativeWebKeyboardEvent(downEvent, isFiltered));
388     return true;
389 }
390
391 static Eina_Bool _ewk_view_smart_key_up(Ewk_View_Smart_Data* smartData, const Evas_Event_Key_Up* upEvent)
392 {
393     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
394
395     impl->pageProxy->handleKeyboardEvent(NativeWebKeyboardEvent(upEvent));
396     return true;
397 }
398
399 #if OS(TIZEN)
400 static Eina_Bool _ewk_view_smart_gesture_start(Ewk_View_Smart_Data* smartData, const Ewk_Event_Gesture* event)
401 {
402 #if ENABLE(TIZEN_GESTURE)
403     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
404
405 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION) && ENABLE(TIZEN_WEBKIT2_FOR_MOVING_TEXT_SELECTION_HANDLE_FROM_OSP)
406     if (impl->pageClient->isTextSelectionMode() && impl->pageClient->isTextSelectionHandleDowned())
407         return true;
408 #endif
409
410 #if ENABLE(TIZEN_WEBKIT2_FOCUS_RING)
411     if (impl->focusRing) {
412         if (event->type == EWK_GESTURE_TAP && event->count == 1) {
413             impl->focusRing->requestToShow(IntPoint(event->position.x, event->position.y));
414         } else if (event->type == EWK_GESTURE_PAN) {
415             if (impl->exceedTouchMoveThreshold)
416                 impl->focusRing->requestToHide();
417         } else {
418             if (event->type != EWK_GESTURE_LONG_PRESS) {
419 #if ENABLE(TIZEN_CONTEXT_MENU_WEBKIT_2)
420                 if (!impl->pageClient->isContextMenuVisible())
421 #endif
422                     impl->focusRing->requestToHide();
423             }
424         }
425     }
426 #endif
427
428 #if ENABLE(TIZEN_WEBKIT2_FORM_DATABASE)
429     if (smartData->api->formdata_candidate_is_showing(smartData))
430         smartData->api->formdata_candidate_hide(smartData);
431 #endif
432
433     switch (event->type) {
434     case EWK_GESTURE_TAP:
435         impl->gestureClient->startTap(IntPoint(event->position.x, event->position.y));
436         break;
437     case EWK_GESTURE_LONG_PRESS: {
438 #if ENABLE(TIZEN_WEBKIT2_HIT_TEST)
439 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
440         if (ewk_settings_text_selection_enabled_get(impl->settings()))
441             impl->pageClient->setIsTextSelectionMode(false);
442 #endif
443         IntPoint scenePoint(event->position.x, event->position.y);
444         IntPoint contentsPoint = impl->transformFromScene().mapPoint(scenePoint);
445         WebHitTestResult::Data hitTestResultData = impl->pageProxy->hitTestResultAtPoint(contentsPoint);
446         if (!hitTestResultData.absoluteMediaURL.isEmpty())
447             break;
448 #if ENABLE(TIZEN_DRAG_SUPPORT)
449         // 1. Check to start dragging.
450         if (hitTestResultData.isDragSupport && !hitTestResultData.isContentEditable) {
451             impl->pageClient->setDragPoint(scenePoint);
452             if (impl->pageClient->isDragMode()) {
453                 impl->pageClient->setDragMode(false);
454             }
455 #if ENABLE(TIZEN_WEBKIT2_FOCUS_RING)
456             if (impl->focusRing)
457                 impl->focusRing->show(IntRect(), true);
458 #endif
459             impl->gestureClient->showContextMenu(scenePoint);
460             break;
461         }
462 #endif
463         // 2. Check to show context menu.
464         if ((!hitTestResultData.absoluteImageURL.isEmpty() || !hitTestResultData.absoluteLinkURL.isEmpty())
465             && !hitTestResultData.isContentEditable) {
466 #if ENABLE(TIZEN_WEBKIT2_FOCUS_RING)
467             if (impl->focusRing)
468                 impl->focusRing->show(IntRect(), true);
469 #endif
470             impl->gestureClient->showContextMenu(scenePoint);
471             break;
472         }
473 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
474         // 3. Check for text selection.
475         if (ewk_settings_text_selection_enabled_get(impl->settings())) {
476             // Process gesture_end(EWK_GESTURE_TAP) to activate the editing if node under point is editable.
477             if (hitTestResultData.context & WebHitTestResult::HitTestResultContextEditable) {
478                 if (smartData->api && smartData->api->gesture_end) {
479                     Ewk_Event_Gesture tapEvent = {EWK_GESTURE_TAP, event->position, {0, 0}, 0, 1, ecore_time_get() * 1000};
480                     smartData->api->gesture_end(smartData, &tapEvent);
481                 }
482             }
483
484             if (impl->pageClient->textSelectionDown(scenePoint)) {
485                 impl->gestureClient->setGestureEnabled(false);
486                 impl->feedTouchEventsByType(EWK_TOUCH_CANCEL);
487             }
488         }
489 #endif
490         break;
491 #endif // #if ENABLE(TIZEN_WEBKIT2_HIT_TEST)
492     }
493     case EWK_GESTURE_PAN:
494         impl->gestureClient->startPan(IntPoint(event->position.x, event->position.y));
495         break;
496     case EWK_GESTURE_FLICK:
497         impl->gestureClient->startFlick(IntPoint(event->position.x, event->position.y), IntPoint(event->velocity.x, event->velocity.y));
498         break;
499     case EWK_GESTURE_PINCH:
500         if (impl->pageClient->viewportConstraints().userScalable)
501             impl->gestureClient->startPinch(IntPoint(event->position.x, event->position.y), event->scale);
502         break;
503     default:
504         ASSERT_NOT_REACHED();
505         break;
506     }
507
508     return true;
509 #else
510     return false;
511 #endif // #if ENABLE(TIZEN_GESTURE)
512 }
513
514 static Eina_Bool _ewk_view_smart_gesture_end(Ewk_View_Smart_Data* smartData, const Ewk_Event_Gesture* event)
515 {
516 #if ENABLE(TIZEN_GESTURE)
517     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
518
519 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION) && ENABLE(TIZEN_WEBKIT2_FOR_MOVING_TEXT_SELECTION_HANDLE_FROM_OSP)
520     if (impl->pageClient->isTextSelectionMode() && impl->pageClient->isTextSelectionHandleDowned())
521         return true;
522 #endif
523
524 #if ENABLE(TIZEN_WEBKIT2_FOCUS_RING)
525     if (impl->focusRing) {
526 #if ENABLE(TIZEN_CONTEXT_MENU_WEBKIT_2)
527         if (!impl->pageClient->isContextMenuVisible() || impl->pageClient->isTextSelectionMode())
528 #endif
529             impl->focusRing->requestToHide();
530     }
531 #endif
532
533     switch (event->type) {
534     case EWK_GESTURE_TAP:
535         if (event->count == 1) {
536 #if ENABLE(TIZEN_DRAG_SUPPORT)
537         if (impl->pageClient->isDragMode())
538             impl->pageClient->setDragMode(false);
539 #endif
540 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
541             if (impl->pageClient->isTextSelectionMode())
542                 impl->pageClient->setIsTextSelectionMode(false);
543 #endif
544
545 #if ENABLE(TIZEN_ISF_PORT)
546             if (impl->inputMethodContext()->isIMEPostion(event->position.x, event->position.y))
547                 return false;
548 #endif
549
550             impl->gestureClient->endTap(IntPoint(event->position.x, event->position.y));
551         } else if (event->count == 2) {
552 #if ENABLE(TIZEN_WEBKIT2_FOCUS_RING)
553             if (impl->focusRing)
554                 impl->focusRing->requestToHide(true);
555 #endif
556             impl->gestureClient->endDoubleTap(IntPoint(event->position.x, event->position.y));
557         }
558         break;
559     case EWK_GESTURE_LONG_PRESS:
560         // Prcess endTap for LONG_PRESS gesture if text-selection and context menu did not work
561         impl->gestureClient->endTap(IntPoint(event->position.x, event->position.y));
562         break;
563     case EWK_GESTURE_PAN:
564         impl->gestureClient->endPan(IntPoint(event->position.x, event->position.y));
565         break;
566     case EWK_GESTURE_FLICK:
567         impl->gestureClient->endFlick(IntPoint(event->position.x, event->position.y), IntPoint(event->velocity.x, event->velocity.y));
568         break;
569     case EWK_GESTURE_PINCH:
570         impl->gestureClient->endPinch(IntPoint(event->position.x, event->position.y), event->scale);
571         break;
572     default:
573         ASSERT_NOT_REACHED();
574         break;
575     }
576
577     return true;
578 #else
579     return false;
580 #endif // #if ENABLE(TIZEN_GESTURE)
581 }
582
583 static Eina_Bool _ewk_view_smart_gesture_move(Ewk_View_Smart_Data* smartData, const Ewk_Event_Gesture* event)
584 {
585 #if ENABLE(TIZEN_GESTURE)
586     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
587
588 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION) && ENABLE(TIZEN_WEBKIT2_FOR_MOVING_TEXT_SELECTION_HANDLE_FROM_OSP)
589     if (impl->pageClient->isTextSelectionMode() && impl->pageClient->isTextSelectionHandleDowned())
590         return true;
591 #endif
592
593 #if ENABLE(TIZEN_WEBKIT2_FOCUS_RING)
594     if (impl->focusRing && !(event->type == EWK_GESTURE_PAN && !impl->exceedTouchMoveThreshold)) {
595 #if ENABLE(TIZEN_CONTEXT_MENU_WEBKIT_2)
596         if (!impl->pageClient->isContextMenuVisible())
597 #endif
598             impl->focusRing->requestToHide(true);
599     }
600 #endif
601
602     switch (event->type) {
603     case EWK_GESTURE_PAN:
604         impl->gestureClient->movePan(IntPoint(event->position.x, event->position.y));
605         break;
606     case EWK_GESTURE_TAP:
607     case EWK_GESTURE_LONG_PRESS:
608     case EWK_GESTURE_FLICK:
609         break;
610     case EWK_GESTURE_PINCH:
611         if (impl->pageClient->viewportConstraints().userScalable)
612             impl->gestureClient->movePinch(IntPoint(event->position.x, event->position.y), event->scale);
613         break;
614     default:
615         ASSERT_NOT_REACHED();
616         break;
617     }
618
619     return true;
620 #else
621     return false;
622 #endif // #if ENABLE(TIZEN_GESTURE)
623 }
624 #endif //#if OS(TIZEN)
625
626 // Event Handling.
627 static void _ewk_view_on_focus_in(void* data, Evas* canvas, Evas_Object* ewkView, void* eventInfo)
628 {
629     Ewk_View_Smart_Data* smartData = static_cast<Ewk_View_Smart_Data*>(data);
630     EINA_SAFETY_ON_NULL_RETURN(smartData->api);
631     EINA_SAFETY_ON_NULL_RETURN(smartData->api->focus_in);
632     smartData->api->focus_in(smartData);
633 }
634
635 static void _ewk_view_on_focus_out(void* data, Evas* canvas, Evas_Object* ewkView, void* eventInfo)
636 {
637     Ewk_View_Smart_Data* smartData = static_cast<Ewk_View_Smart_Data*>(data);
638     EINA_SAFETY_ON_NULL_RETURN(smartData->api);
639     EINA_SAFETY_ON_NULL_RETURN(smartData->api->focus_out);
640     smartData->api->focus_out(smartData);
641 }
642
643 static void _ewk_view_on_mouse_wheel(void* data, Evas* canvas, Evas_Object* ewkView, void* eventInfo)
644 {
645     Evas_Event_Mouse_Wheel* wheelEvent = static_cast<Evas_Event_Mouse_Wheel*>(eventInfo);
646     Ewk_View_Smart_Data* smartData = static_cast<Ewk_View_Smart_Data*>(data);
647     EINA_SAFETY_ON_NULL_RETURN(smartData->api);
648     EINA_SAFETY_ON_NULL_RETURN(smartData->api->mouse_wheel);
649     smartData->api->mouse_wheel(smartData, wheelEvent);
650 }
651
652 static void _ewk_view_on_key_down(void* data, Evas*, Evas_Object*, void* eventInfo)
653 {
654     Evas_Event_Key_Down* downEvent = static_cast<Evas_Event_Key_Down*>(eventInfo);
655     Ewk_View_Smart_Data* smartData = static_cast<Ewk_View_Smart_Data*>(data);
656     EINA_SAFETY_ON_NULL_RETURN(smartData->api);
657     EINA_SAFETY_ON_NULL_RETURN(smartData->api->key_down);
658     smartData->api->key_down(smartData, downEvent);
659 }
660
661 static void _ewk_view_on_key_up(void* data, Evas* canvas, Evas_Object* ewkView, void* eventInfo)
662 {
663     Evas_Event_Key_Up* upEvent = static_cast<Evas_Event_Key_Up*>(eventInfo);
664     Ewk_View_Smart_Data* smartData = static_cast<Ewk_View_Smart_Data*>(data);
665     EINA_SAFETY_ON_NULL_RETURN(smartData->api);
666     EINA_SAFETY_ON_NULL_RETURN(smartData->api->key_up);
667     smartData->api->key_up(smartData, upEvent);
668 }
669
670 static void _ewk_view_on_show(void* data, Evas*, Evas_Object*, void* /*eventInfo*/)
671 {
672     Ewk_View_Smart_Data* smartData = static_cast<Ewk_View_Smart_Data*>(data);
673     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
674     impl->pageProxy->viewStateDidChange(WebPageProxy::ViewIsVisible);
675 }
676
677 static void _ewk_view_on_hide(void* data, Evas*, Evas_Object*, void* /*eventInfo*/)
678 {
679     Ewk_View_Smart_Data* smartData = static_cast<Ewk_View_Smart_Data*>(data);
680     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
681
682     // This call may look wrong, but we really need to pass ViewIsVisible here.
683     // viewStateDidChange() itself is responsible for actually setting the visibility to Visible or Hidden
684     // depending on what WebPageProxy::isViewVisible() returns, this simply triggers the process.
685     impl->pageProxy->viewStateDidChange(WebPageProxy::ViewIsVisible);
686 }
687
688 #if OS(TIZEN)
689
690 #if ENABLE(TIZEN_FULLSCREEN_API)
691 Eina_Bool _ewk_view_smart_fullscreen_enter(Ewk_View_Smart_Data* smartData)
692 {
693     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
694
695     ewk_view_main_frame_scrollbar_visible_set(impl->view(), false);
696     evas_object_smart_callback_call(impl->view(), "fullscreen,enterfullscreen", 0);
697     return true;
698 }
699
700 Eina_Bool _ewk_view_smart_fullscreen_exit(Ewk_View_Smart_Data* smartData)
701 {
702     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
703
704     ewk_view_main_frame_scrollbar_visible_set(impl->view(), true);
705     evas_object_smart_callback_call(impl->view(), "fullscreen,exitfullscreen", 0);
706     return true;
707 }
708 #endif
709
710 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
711 Eina_Bool _ewk_view_text_selection_down(Ewk_View_Smart_Data* smartData, int x, int y)
712 {
713     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
714
715     return impl->pageClient->textSelectionDown(IntPoint(x, y));
716 }
717
718 Eina_Bool _ewk_view_text_selection_move(Ewk_View_Smart_Data* smartData, int x, int y)
719 {
720     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
721
722     IntPoint point(x, y);
723     impl->pageClient->textSelectionMove(point);
724
725     return true;
726 }
727
728 Eina_Bool _ewk_view_text_selection_up(Ewk_View_Smart_Data* smartData, int x, int y)
729 {
730     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
731
732     IntPoint point(x, y);
733     impl->pageClient->textSelectionUp(point, true);
734
735     return true;
736 }
737 #endif
738
739 #if ENABLE(TIZEN_WEBKIT2_FORM_DATABASE)
740 Eina_Bool _ewk_view_smart_formdata_candidate_show(Ewk_View_Smart_Data* smartData, int x, int y, int w, int h)
741 {
742     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
743
744     impl->pageClient->showFormDataCandidate(IntRect(x, y, w, h));
745
746     return true;
747 }
748
749 Eina_Bool _ewk_view_smart_formdata_candidate_hide(Ewk_View_Smart_Data* smartData)
750 {
751     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
752
753     impl->pageClient->hideFormDataCandidate();
754
755     return true;
756 }
757
758 Eina_Bool _ewk_view_smart_formdata_candidate_update_data(Ewk_View_Smart_Data* smartData, Eina_List* dataList)
759 {
760     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
761
762     Vector<String> formData;
763     Eina_List* list;
764     void* data;
765     EINA_LIST_FOREACH(dataList, list, data)
766         formData.append(String::fromUTF8(static_cast<char*>(data)));
767
768     impl->pageClient->updateFormDataCandidate(formData);
769
770     return true;
771 }
772
773 Eina_Bool _ewk_view_smart_formdata_candidate_is_showing(Ewk_View_Smart_Data* smartData)
774 {
775     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
776
777     return impl->pageClient->isShowingFormDataCandidate();
778 }
779 #endif
780
781 #if ENABLE(TIZEN_SCREEN_READER)
782 Eina_Bool _ewk_view_screen_reader_action_execute(Ewk_View_Smart_Data* smartData, void* actionInfo)
783 {
784     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
785
786     return ScreenReaderProxy::executeAction(impl, 0, static_cast<Elm_Access_Action_Info*>(actionInfo));
787 }
788 #endif
789 #endif // #if OS(TIZEN)
790
791 static Evas_Smart_Class g_parentSmartClass = EVAS_SMART_CLASS_INIT_NULL;
792
793 static void _ewk_view_impl_del(EwkViewImpl* impl)
794 {
795 #if !ENABLE(TIZEN_ICON_DATABASE)
796     /* Unregister icon change callback */
797     Ewk_Favicon_Database* iconDatabase = impl->context->faviconDatabase();
798     iconDatabase->unwatchChanges(_ewk_view_on_favicon_changed);
799 #endif
800
801     delete impl;
802 }
803
804 static void _ewk_view_smart_add(Evas_Object* ewkView)
805 {
806     const Evas_Smart* smart = evas_object_smart_smart_get(ewkView);
807     const Evas_Smart_Class* smartClass = evas_smart_class_get(smart);
808     const Ewk_View_Smart_Class* api = reinterpret_cast<const Ewk_View_Smart_Class*>(smartClass);
809     EWK_VIEW_SD_GET(ewkView, smartData);
810
811     if (!smartData) {
812         smartData = static_cast<Ewk_View_Smart_Data*>(calloc(1, sizeof(Ewk_View_Smart_Data)));
813         if (!smartData) {
814             EINA_LOG_CRIT("could not allocate Ewk_View_Smart_Data");
815             return;
816         }
817         evas_object_smart_data_set(ewkView, smartData);
818     }
819
820     smartData->self = ewkView;
821     smartData->api = api;
822
823     g_parentSmartClass.add(ewkView);
824
825     smartData->priv = new EwkViewImpl(ewkView);
826     if (!smartData->priv) {
827         EINA_LOG_CRIT("could not allocate EwkViewImpl");
828         evas_object_smart_data_set(ewkView, 0);
829         free(smartData);
830         return;
831     }
832
833     // Create evas_object_image to draw web contents.
834     smartData->image = evas_object_image_add(smartData->base.evas);
835     evas_object_image_alpha_set(smartData->image, false);
836     evas_object_image_filled_set(smartData->image, true);
837     evas_object_smart_member_add(smartData->image, ewkView);
838
839 #if OS(TIZEN)
840 #if ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE)
841     Ecore_Evas* ee = ecore_evas_ecore_evas_get(smartData->base.evas);
842     const char *engine = ecore_evas_engine_name_get(ee);
843     if (engine && !strcmp(engine, "opengl_x11"))
844         evas_object_image_content_hint_set(smartData->image, EVAS_IMAGE_CONTENT_HINT_DYNAMIC);
845 #endif
846     ewk_view_mouse_events_enabled_set(ewkView, false);
847     ewk_view_touch_events_enabled_set(ewkView, true);
848
849     // FIXME: This code should be removed if side effect occur.
850     // WebView does not have focus after url loading.
851     // If focus is set as true to webview,
852     // elementary steal webview's focus during mouse up event
853     // So, added code that events are not propagated to smart parent according to guide from EFL
854     evas_object_propagate_events_set(ewkView, false);
855 #endif // #if OS(TIZEN)
856
857 #define CONNECT(s, c) evas_object_event_callback_add(ewkView, s, c, smartData)
858     CONNECT(EVAS_CALLBACK_FOCUS_IN, _ewk_view_on_focus_in);
859     CONNECT(EVAS_CALLBACK_FOCUS_OUT, _ewk_view_on_focus_out);
860     CONNECT(EVAS_CALLBACK_MOUSE_WHEEL, _ewk_view_on_mouse_wheel);
861     CONNECT(EVAS_CALLBACK_KEY_DOWN, _ewk_view_on_key_down);
862     CONNECT(EVAS_CALLBACK_KEY_UP, _ewk_view_on_key_up);
863     CONNECT(EVAS_CALLBACK_SHOW, _ewk_view_on_show);
864     CONNECT(EVAS_CALLBACK_HIDE, _ewk_view_on_hide);
865 #undef CONNECT
866 }
867
868 static void _ewk_view_smart_del(Evas_Object* ewkView)
869 {
870     EwkViewImpl::removeFromPageViewMap(ewkView);
871     EWK_VIEW_SD_GET(ewkView, smartData);
872 #if ENABLE(TIZEN_SCREEN_READER)
873     ScreenReaderProxy::screenReader().finalize(smartData->priv);
874 #endif
875 #if ENABLE(TIZEN_INPUT_COLOR_PICKER)
876     // Close color picker if it's opened.
877     if (smartData && smartData->priv && smartData->priv->inputPicker->isColorPickerShown())
878         ewk_view_color_picker_color_set(ewkView, 0, 0, 0, 0);
879 #endif
880     if (smartData && smartData->priv)
881         _ewk_view_impl_del(smartData->priv);
882
883     g_parentSmartClass.del(ewkView);
884 }
885
886 static Eina_Bool _ewk_view_composite(void* data);
887
888 static void _ewk_view_smart_resize(Evas_Object* ewkView, Evas_Coord width, Evas_Coord height)
889 {
890     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
891
892     evas_object_resize(smartData->image, width, height);
893     evas_object_image_size_set(smartData->image, width, height);
894     evas_object_image_fill_set(smartData->image, 0, 0, width, height);
895 #if OS(TIZEN)
896     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
897 #if ENABLE(TIZEN_WEBKIT2_TILED_AC)
898     evas_object_image_native_surface_set(smartData->image, 0);
899
900 #if ENABLE(TIZEN_WEBKIT2_VIEW_VISIBILITY)
901     if (impl->pageClient->isVisible()) {
902         Ecore_Evas* ee = ecore_evas_ecore_evas_get(smartData->base.evas);
903         impl->pageClient->updateViewportSize(IntSize(width, height), ecore_evas_rotation_get(ee));
904     } else
905         impl->pageClient->setDeferUpdateViewportSize(true);
906 #else
907     Ecore_Evas* ee = ecore_evas_ecore_evas_get(smartData->base.evas);
908     impl->pageClient->updateViewportSize(IntSize(width, height), ecore_evas_rotation_get(ee));
909 #endif
910
911 #if ENABLE(TIZEN_RUNTIME_BACKEND_SELECTION)
912     if (!ewk_view_is_opengl_backend(ewkView))
913         _ewk_view_composite(smartData);
914     else // OpenGL backend
915 #endif
916     impl->pageClient->displayViewport();
917 #endif
918 #endif // #if OS(TIZEN)
919
920     smartData->changed.size = true;
921     _ewk_view_smart_changed(smartData);
922 }
923
924 static void _ewk_view_smart_move(Evas_Object* ewkView, Evas_Coord x, Evas_Coord y)
925 {
926     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
927
928     smartData->changed.position = true;
929     _ewk_view_smart_changed(smartData);
930 }
931
932 static void _ewk_view_smart_calculate(Evas_Object* ewkView)
933 {
934     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
935     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
936
937     Evas_Coord x, y, width, height;
938
939     smartData->changed.any = false;
940
941     evas_object_geometry_get(ewkView, &x, &y, &width, &height);
942
943     if (smartData->changed.size) {
944 #if !OS(TIZEN)
945 #if USE(COORDINATED_GRAPHICS)
946         impl->pageViewportControllerClient->updateViewportSize(IntSize(width, height));
947 #endif
948 #if USE(ACCELERATED_COMPOSITING)
949         needsNewSurface = impl->evasGlSurface;
950 #endif
951
952         if (impl->pageProxy->drawingArea())
953             impl->pageProxy->drawingArea()->setSize(IntSize(width, height), IntSize());
954
955 #if USE(ACCELERATED_COMPOSITING)
956         if (!impl->evasGlSurface)
957             return;
958         evas_gl_surface_destroy(impl->evasGl, impl->evasGlSurface);
959         impl->evasGlSurface = 0;
960         ewk_view_create_gl_surface(ewkView, IntSize(width, height));
961         ewk_view_display(ewkView, IntRect(IntPoint(), IntSize(width, height)));
962 #endif
963 #endif // #if !OS(TIZEN)
964
965         smartData->view.w = width;
966         smartData->view.h = height;
967         smartData->changed.size = false;
968
969 #if OS(TIZEN)
970         if (impl->pageClient) {
971             if (DrawingAreaProxy* drawingArea = impl->pageProxy->drawingArea()) {
972 #if ENABLE(TIZEN_WEBKIT2_TILED_AC)
973                 if (impl->pageProxy->isViewVisible())
974                     drawingArea->setSize(IntSize(width, height), IntSize());
975 #else
976                 drawingArea->setSize(IntSize(width, height), IntSize());
977 #endif
978 #if ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE) && !ENABLE(TIZEN_WEBKIT2_EFL_WTR)
979                 Ecore_Evas* ee = ecore_evas_ecore_evas_get(smartData->base.evas);
980                 int newAngle = ecore_evas_rotation_get(ee);
981 #if ENABLE(TIZEN_WEBKIT2_VIEW_VISIBILITY)
982                 if (impl->pageClient->deferUpdateViewportSize()) {
983                     impl->pageClient->updateViewportSize(IntSize(width, height), newAngle);
984                 }
985 #endif
986                 impl->pageClient->updateVisibleContentRectSize(IntSize(width, height));
987                 if (ewk_view_is_opengl_backend(ewkView))
988                     impl->pageClient->displayViewport();
989 #endif
990             }
991 #if ENABLE(TIZEN_WEBKIT2_TILED_SCROLLBAR)
992             impl->pageClient->frameRectChanged();
993 #endif
994         }
995 #endif // #if OS(TIZEN)
996     }
997
998     if (smartData->changed.position) {
999         evas_object_move(smartData->image, x, y);
1000         smartData->view.x = x;
1001         smartData->view.y = y;
1002         smartData->changed.position = false;
1003 #if OS(TIZEN)
1004 #if ENABLE(TIZEN_WEBKIT2_TILED_SCROLLBAR)
1005         impl->pageClient->frameRectChanged();
1006 #endif
1007 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
1008         impl->pageClient->updateTextSelectionHandlesAndContextMenu(true);
1009 #endif
1010 #endif // #if OS(TIZEN)
1011     }
1012 #if OS(TIZEN)
1013     if (impl->popupPicker)
1014         ewk_popup_picker_resize(impl->popupPicker);
1015 #endif // #if OS(TIZEN)
1016 }
1017
1018 static void _ewk_view_smart_show(Evas_Object* ewkView)
1019 {
1020     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
1021     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
1022
1023     if (evas_object_clipees_get(smartData->base.clipper))
1024         evas_object_show(smartData->base.clipper);
1025     evas_object_show(smartData->image);
1026
1027 #if ENABLE(TIZEN_SCREEN_READER)
1028     ScreenReaderProxy::screenReader().initialize(impl);
1029 #endif
1030 }
1031
1032 static void _ewk_view_smart_hide(Evas_Object* ewkView)
1033 {
1034     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
1035
1036     evas_object_hide(smartData->base.clipper);
1037     evas_object_hide(smartData->image);
1038 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
1039     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
1040     if (impl->pageClient->isTextSelectionMode())
1041         impl->pageClient->setIsTextSelectionMode(false);
1042 #endif
1043 }
1044
1045 static void _ewk_view_smart_color_set(Evas_Object* ewkView, int red, int green, int blue, int alpha)
1046 {
1047     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
1048     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
1049
1050     if (alpha < 0)
1051         alpha = 0;
1052     else if (alpha > 255)
1053         alpha = 255;
1054
1055 #define CHECK_COLOR(color, alpha) \
1056     if (color < 0)                \
1057         color = 0;                \
1058     else if (color > alpha)       \
1059         color = alpha;
1060     CHECK_COLOR(red, alpha);
1061     CHECK_COLOR(green, alpha);
1062     CHECK_COLOR(blue, alpha);
1063 #undef CHECK_COLOR
1064
1065     evas_object_image_alpha_set(smartData->image, alpha < 255);
1066     impl->pageProxy->setDrawsBackground(red || green || blue);
1067     impl->pageProxy->setDrawsTransparentBackground(alpha < 255);
1068     impl->pageClient->setBackgroundColor(red/255.0, green/255.0, blue/255.0, alpha/255.0);
1069
1070 #if !OS(TIZEN)
1071     g_parentSmartClass.color_set(ewkView, red, green, blue, alpha);
1072 #endif
1073 }
1074
1075 Eina_Bool ewk_view_smart_class_set(Ewk_View_Smart_Class* api)
1076 {
1077     EINA_SAFETY_ON_NULL_RETURN_VAL(api, false);
1078
1079     if (api->version != EWK_VIEW_SMART_CLASS_VERSION) {
1080         EINA_LOG_CRIT("Ewk_View_Smart_Class %p is version %lu while %lu was expected.",
1081              api, api->version, EWK_VIEW_SMART_CLASS_VERSION);
1082         return false;
1083     }
1084
1085     if (EINA_UNLIKELY(!g_parentSmartClass.add))
1086         evas_object_smart_clipped_smart_set(&g_parentSmartClass);
1087
1088     evas_object_smart_clipped_smart_set(&api->sc);
1089
1090     // Set Evas_Smart_Class functions.
1091     api->sc.add = _ewk_view_smart_add;
1092     api->sc.del = _ewk_view_smart_del;
1093     api->sc.move = _ewk_view_smart_move;
1094     api->sc.resize = _ewk_view_smart_resize;
1095     api->sc.show = _ewk_view_smart_show;
1096     api->sc.hide = _ewk_view_smart_hide;
1097     api->sc.color_set = _ewk_view_smart_color_set;
1098     api->sc.calculate = _ewk_view_smart_calculate;
1099     api->sc.data = EWK_VIEW_TYPE_STR; // It is used by type checking.
1100
1101     // Set Ewk_View_Smart_Class functions.
1102     api->focus_in = _ewk_view_smart_focus_in;
1103     api->focus_out = _ewk_view_smart_focus_out;
1104     api->mouse_wheel = _ewk_view_smart_mouse_wheel;
1105     api->mouse_down = _ewk_view_smart_mouse_down;
1106     api->mouse_up = _ewk_view_smart_mouse_up;
1107     api->mouse_move = _ewk_view_smart_mouse_move;
1108     api->key_down = _ewk_view_smart_key_down;
1109     api->key_up = _ewk_view_smart_key_up;
1110 #if OS(TIZEN)
1111     api->gesture_start = _ewk_view_smart_gesture_start;
1112     api->gesture_end = _ewk_view_smart_gesture_end;
1113     api->gesture_move = _ewk_view_smart_gesture_move;
1114
1115 #if ENABLE(TIZEN_FULLSCREEN_API)
1116     api->fullscreen_enter = _ewk_view_smart_fullscreen_enter;
1117     api->fullscreen_exit = _ewk_view_smart_fullscreen_exit;
1118 #endif
1119
1120 #if ENABLE(TIZEN_WEBKIT2_POPUP_INTERNAL)
1121     api->popup_menu_show = _ewk_view_popup_menu_show;
1122 #if ENABLE(TIZEN_MULTIPLE_SELECT)
1123     api->multiple_popup_menu_show = _ewk_view_multiple_popup_menu_show;
1124 #endif
1125     api->popup_menu_hide = _ewk_view_popup_menu_hide;
1126     api->popup_menu_update = _ewk_view_popup_menu_update;
1127 #endif
1128 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
1129     api->text_selection_down = _ewk_view_text_selection_down;
1130     api->text_selection_move = _ewk_view_text_selection_move;
1131     api->text_selection_up = _ewk_view_text_selection_up;
1132 #endif
1133 #if ENABLE(TIZEN_INPUT_TAG_EXTENSION)
1134     api->input_picker_show = _ewk_view_input_picker_show;
1135 #endif
1136 #if ENABLE(TIZEN_DATALIST_ELEMENT)
1137     api->data_list_show = _ewk_view_data_list_show;
1138     api->data_list_hide = _ewk_view_data_list_hide;
1139 #endif
1140 #if ENABLE(TIZEN_SCREEN_ORIENTATION_SUPPORT_INTERNAL)
1141     api->orientation_lock = _ewk_orientation_lock;
1142     api->orientation_unlock = _ewk_orientation_unlock;
1143 #endif
1144 #if ENABLE(TIZEN_INPUT_COLOR_PICKER)
1145     api->input_picker_color_request = _ewk_input_picker_color_request;
1146     api->input_picker_color_dismiss = _ewk_input_picker_color_dismiss;
1147 #endif
1148 #if ENABLE(TIZEN_WEBKIT2_FORM_DATABASE)
1149     api->formdata_candidate_show = _ewk_view_smart_formdata_candidate_show;
1150     api->formdata_candidate_hide = _ewk_view_smart_formdata_candidate_hide;
1151     api->formdata_candidate_update_data = _ewk_view_smart_formdata_candidate_update_data;
1152     api->formdata_candidate_is_showing = _ewk_view_smart_formdata_candidate_is_showing;
1153 #endif
1154 #if ENABLE(TIZEN_SCREEN_READER)
1155     api->screen_reader_action_execute = _ewk_view_screen_reader_action_execute;
1156 #endif
1157 #endif //#if OS(TIZEN)
1158
1159     return true;
1160 }
1161
1162 static inline Evas_Smart* _ewk_view_smart_class_new(void)
1163 {
1164     static Ewk_View_Smart_Class api = EWK_VIEW_SMART_CLASS_INIT_NAME_VERSION("Ewk_View");
1165     static Evas_Smart* smart = 0;
1166
1167     if (EINA_UNLIKELY(!smart)) {
1168         ewk_view_smart_class_set(&api);
1169         smart = evas_smart_class_new(&api.sc);
1170     }
1171
1172     return smart;
1173 }
1174
1175 static void _ewk_view_initialize(Evas_Object* ewkView, PassRefPtr<Ewk_Context> context, WKPageGroupRef pageGroupRef)
1176 {
1177     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
1178     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
1179     EINA_SAFETY_ON_NULL_RETURN(context);
1180
1181     if (impl->pageClient)
1182         return;
1183
1184 #if ENABLE(TIZEN_RUNTIME_BACKEND_SELECTION)
1185     bool isOpenGL = ewk_view_is_opengl_backend(ewkView);
1186     if (isOpenGL)
1187         impl->pageClient = PageClientEvasGL::create(impl);
1188     else
1189         impl->pageClient = PageClientImpl::create(impl);
1190 #else
1191     impl->pageClient = PageClientImpl::create(impl);
1192 #endif
1193
1194     if (pageGroupRef)
1195         impl->pageProxy = toImpl(context->wkContext())->createWebPage(impl->pageClient.get(), toImpl(pageGroupRef));
1196     else
1197         impl->pageProxy = toImpl(context->wkContext())->createWebPage(impl->pageClient.get(), WebPageGroup::create().get());
1198
1199     EwkViewImpl::addToPageViewMap(ewkView);
1200
1201 #if OS(TIZEN)
1202     impl->pageProxy->pageGroup()->preferences()->setAcceleratedCompositingEnabled(true);
1203     impl->pageProxy->pageGroup()->preferences()->setForceCompositingMode(true);
1204     impl->pageProxy->pageGroup()->preferences()->setFrameFlatteningEnabled(true);
1205     impl->pageProxy->pageGroup()->preferences()->setAllowUniversalAccessFromFileURLs(true);
1206 #endif
1207
1208     impl->pageProxy->initializeWebPage();
1209
1210 #if ENABLE(TIZEN_VIEWPORT_META_TAG)
1211     impl->pageProxy->setCustomDeviceScaleFactor((float)getMobileDPI() / 160);
1212 #else
1213     impl->pageProxy->setCustomDeviceScaleFactor((float)getDPI() / 160);
1214 #endif
1215
1216 #if ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE) && !ENABLE(TIZEN_WEBKIT2_EFL_WTR)
1217     impl->pageProxy->setUseFixedLayout(true);
1218 #endif
1219 #if ENABLE(FULLSCREEN_API)
1220     impl->pageProxy->fullScreenManager()->setWebView(ewkView);
1221 #endif
1222
1223 #if ENABLE(TIZEN_RUNTIME_BACKEND_SELECTION)
1224     if (isOpenGL)
1225         impl->pageProxy->drawingArea()->layerTreeCoordinatorProxy()->initializeAcceleratedCompositingMode(true);
1226     else {
1227         impl->pageProxy->pageGroup()->preferences()->setAcceleratedCompositingEnabled(false);
1228         impl->pageProxy->pageGroup()->preferences()->setWebGLEnabled(false);
1229         impl->pageProxy->drawingArea()->layerTreeCoordinatorProxy()->initializeAcceleratedCompositingMode(false);
1230     }
1231 #endif
1232
1233     impl->backForwardList = Ewk_Back_Forward_List::create(toAPI(impl->pageProxy->backForwardList()));
1234
1235     impl->context = context;
1236
1237 #if OS(TIZEN)
1238     ewkViewContextMenuClientAttachClient(ewkView);
1239     ewkViewTizenClientAttachClient(ewkView);
1240
1241 #if ENABLE(TIZEN_GEOLOCATION)
1242     ewkViewGeolocationProviderAttachProvider(ewkView, impl->context->wkContext());
1243 #endif
1244
1245 #if ENABLE(TIZEN_NOTIFICATIONS)
1246     ewkViewNotificationProviderAttachProvider(ewkView, impl->context->wkContext());
1247 #endif
1248
1249 #if ENABLE(TIZEN_ICON_DATABASE)
1250     ewk_view_icondatabase_client_attach(ewkView, impl->context->wkContext());
1251 #endif
1252
1253     ewk_view_javascript_alert_callback_set(ewkView, _ewk_view_default_javascript_alert, 0);
1254     ewk_view_javascript_confirm_callback_set(ewkView, _ewk_view_default_javascript_confirm, 0);
1255     ewk_view_javascript_prompt_callback_set(ewkView, _ewk_view_default_javascript_prompt, 0);
1256 #if ENABLE(TIZEN_SUPPORT_BEFORE_UNLOAD_CONFIRM_PANEL)
1257     ewk_view_before_unload_confirm_panel_callback_set(ewkView, _ewk_view_default_before_unload_confirm_panel, 0);
1258 #endif
1259     ewk_view_open_panel_callback_set(ewkView, _ewk_view_default_open_panel, 0);
1260 #else // #if OS(TIZEN)
1261 #if USE(COORDINATED_GRAPHICS)
1262     impl->viewportHandler = EflViewportHandler::create(impl->pageClient.get());
1263 #endif
1264 #endif // #if OS(TIZEN)
1265
1266 #if ENABLE(FULLSCREEN_API)
1267     impl->pageProxy->fullScreenManager()->setWebView(ewkView);
1268     impl->pageProxy->pageGroup()->preferences()->setFullScreenEnabled(true);
1269 #endif
1270
1271     // Initialize page clients.
1272     impl->pageLoadClient = PageLoadClientEfl::create(impl);
1273     impl->pagePolicyClient = PagePolicyClientEfl::create(impl);
1274     impl->pageUIClient = PageUIClientEfl::create(impl);
1275     impl->resourceLoadClient = ResourceLoadClientEfl::create(impl);
1276     impl->findClient = FindClientEfl::create(impl);
1277     impl->formClient = FormClientEfl::create(impl);
1278 #if !ENABLE(TIZEN_ICON_DATABASE)
1279     /* Listen for favicon changes */
1280     Ewk_Favicon_Database* iconDatabase = impl->context->faviconDatabase();
1281     iconDatabase->watchChanges(IconChangeCallbackData(_ewk_view_on_favicon_changed, ewkView));
1282 #endif
1283 #if ENABLE(TIZEN_WEBKIT2_THEME_SET_INTERNAL)
1284     ewk_view_theme_set(ewkView, "/usr/share/edje/webkit.edj");
1285 #endif
1286
1287 #if ENABLE(TIZEN_WEBKIT2_CONTEXT_X_WINDOW)
1288     if (!impl->context->xWindow())
1289         impl->context->setXWindow(elm_win_xwindow_get(ewkView));
1290 #endif
1291
1292 #if ENABLE(TIZEN_WEBKIT2_FOCUS_RING)
1293     impl->focusRing = FocusRing::create(impl);
1294 #endif
1295 }
1296
1297 static Evas_Object* _ewk_view_add_with_smart(Evas* canvas, Evas_Smart* smart)
1298 {
1299     EINA_SAFETY_ON_NULL_RETURN_VAL(canvas, 0);
1300     EINA_SAFETY_ON_NULL_RETURN_VAL(smart, 0);
1301
1302 #if ENABLE(TIZEN_WEBKIT2_DDK_CHECK)
1303     {
1304         using namespace EGL;
1305         if(!eglGetDisplay(EGL_DEFAULT_DISPLAY)) {
1306             EINA_LOG_CRIT("Fail in initiziling view because No DDK is installed.");
1307             return 0;
1308         }
1309     }
1310 #endif
1311
1312     Evas_Object* ewkView = evas_object_smart_add(canvas, smart);
1313     if (!ewkView)
1314         return 0;
1315
1316     EWK_VIEW_SD_GET(ewkView, smartData);
1317     if (!smartData) {
1318         evas_object_del(ewkView);
1319         return 0;
1320     }
1321
1322     EWK_VIEW_IMPL_GET(smartData, impl);
1323     if (!impl) {
1324         evas_object_del(ewkView);
1325         return 0;
1326     }
1327
1328     return ewkView;
1329 }
1330
1331 /**
1332  * @internal
1333  * Constructs a ewk_view Evas_Object with WKType parameters.
1334  */
1335 Evas_Object* ewk_view_base_add(Evas* canvas, WKContextRef contextRef, WKPageGroupRef pageGroupRef)
1336 {
1337     EINA_SAFETY_ON_NULL_RETURN_VAL(canvas, 0);
1338     EINA_SAFETY_ON_NULL_RETURN_VAL(contextRef, 0);
1339
1340     Evas_Object* ewkView = _ewk_view_add_with_smart(canvas, _ewk_view_smart_class_new());
1341     if (!ewkView)
1342         return 0;
1343
1344     _ewk_view_initialize(ewkView, Ewk_Context::create(contextRef), pageGroupRef);
1345
1346     return ewkView;
1347 }
1348
1349 Evas_Object* ewk_view_smart_add(Evas* canvas, Evas_Smart* smart, Ewk_Context* context)
1350 {
1351     EINA_SAFETY_ON_NULL_RETURN_VAL(canvas, 0);
1352     EINA_SAFETY_ON_NULL_RETURN_VAL(smart, 0);
1353     EINA_SAFETY_ON_NULL_RETURN_VAL(context, 0);
1354
1355     Evas_Object* ewkView = _ewk_view_add_with_smart(canvas, smart);
1356     if (!ewkView)
1357         return 0;
1358
1359 #if ENABLE(TIZEN_ICON_DATABASE)
1360     //set default iconDatabasePath
1361     WKContextRef contextRef = context->wkContext();
1362     toImpl(contextRef)->setIconDatabasePath(toImpl(contextRef)->iconDatabasePath());
1363 #endif
1364
1365 #if ENABLE(TIZEN_WEBKIT2_CREATE_VIEW_WITH_CREATED_PAGE_GROUP_WITH_IDENTIFIER)
1366     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
1367     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
1368     _ewk_view_initialize(ewkView, context, toAPI(impl->pageGroup.get()));
1369 #else
1370     _ewk_view_initialize(ewkView, context, 0);
1371 #endif
1372
1373     return ewkView;
1374 }
1375
1376 Evas_Object* ewk_view_add_with_context(Evas* canvas, Ewk_Context* context)
1377 {
1378     EINA_SAFETY_ON_NULL_RETURN_VAL(context, 0);
1379     return ewk_view_smart_add(canvas, _ewk_view_smart_class_new(), context);
1380 }
1381
1382 Evas_Object* ewk_view_add(Evas* canvas)
1383 {
1384     return ewk_view_add_with_context(canvas, ewk_context_default_get());
1385 }
1386
1387 Ewk_Context* ewk_view_context_get(const Evas_Object* ewkView)
1388 {
1389     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
1390     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
1391
1392     return impl->ewkContext();
1393 }
1394
1395 Eina_Bool ewk_view_url_set(Evas_Object* ewkView, const char* url)
1396 {
1397     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1398     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1399     EINA_SAFETY_ON_NULL_RETURN_VAL(url, false);
1400
1401     impl->pageProxy->loadURL(String::fromUTF8(url));
1402     impl->informURLChange();
1403
1404     return true;
1405 }
1406
1407 const char* ewk_view_url_get(const Evas_Object* ewkView)
1408 {
1409     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
1410     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
1411
1412     return impl->url();
1413 }
1414
1415 const char *ewk_view_icon_url_get(const Evas_Object *ewkView)
1416 {
1417     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
1418     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
1419
1420     return impl->faviconURL();
1421 }
1422
1423 Eina_Bool ewk_view_reload(Evas_Object* ewkView)
1424 {
1425     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1426     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1427
1428     impl->pageClient->prepareRestoredVisibleContectRect();
1429     impl->pageProxy->reload(/*reloadFromOrigin*/ false);
1430     impl->informURLChange();
1431
1432     return true;
1433 }
1434
1435 Eina_Bool ewk_view_reload_bypass_cache(Evas_Object* ewkView)
1436 {
1437     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1438     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1439
1440     impl->pageProxy->reload(/*reloadFromOrigin*/ true);
1441     impl->informURLChange();
1442
1443     return true;
1444 }
1445
1446 Eina_Bool ewk_view_stop(Evas_Object* ewkView)
1447 {
1448     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1449     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1450
1451     impl->pageProxy->stopLoading();
1452
1453     return true;
1454 }
1455
1456 Ewk_Settings* ewk_view_settings_get(const Evas_Object* ewkView)
1457 {
1458     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
1459     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
1460
1461     return impl->settings();
1462 }
1463
1464 const char* ewk_view_title_get(const Evas_Object* ewkView)
1465 {
1466     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
1467     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
1468
1469     return impl->title();
1470 }
1471
1472 /**
1473  * @internal
1474  * Reports that the requested text was found.
1475  *
1476  * Emits signal: "text,found" with the number of matches.
1477  */
1478 void ewk_view_text_found(Evas_Object* ewkView, unsigned int matchCount)
1479 {
1480     evas_object_smart_callback_call(ewkView, "text,found", &matchCount);
1481 }
1482
1483 double ewk_view_load_progress_get(const Evas_Object* ewkView)
1484 {
1485     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, -1.0);
1486     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, -1.0);
1487
1488     return impl->pageProxy->estimatedProgress();
1489 }
1490
1491 Eina_Bool ewk_view_scale_set(Evas_Object* ewkView, double scaleFactor, int x, int y)
1492 {
1493     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1494     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1495
1496 #if OS(TIZEN)
1497     // FIXME
1498     int centerX = x;
1499     int centerY = y;
1500     scaleFactor = impl->pageClient->adjustScaleWithViewport(scaleFactor);
1501
1502     IntPoint scrollPosition = impl->pageClient->scrollPosition();
1503     double scaleDifference = scaleFactor / impl->pageClient->scaleFactor();
1504     int newScrollX = (scrollPosition.x() + centerX - smartData->view.x) * scaleDifference - (centerX - smartData->view.x);
1505     int newScrollY = (scrollPosition.y() + centerY - smartData->view.y) * scaleDifference - (centerY - smartData->view.y);
1506
1507     impl->pageProxy->scale(scaleFactor, IntPoint(newScrollX, newScrollY));
1508 #else
1509     impl->pageProxy->scalePage(scaleFactor, IntPoint(x, y));
1510 #endif
1511     return true;
1512 }
1513
1514 double ewk_view_scale_get(const Evas_Object* ewkView)
1515 {
1516     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, -1);
1517     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, -1);
1518
1519 #if OS(TIZEN)
1520     return impl->pageProxy->scaleFactor();
1521 #else
1522     return impl->pageProxy->pageScaleFactor();
1523 #endif
1524 }
1525
1526 Eina_Bool ewk_view_device_pixel_ratio_set(Evas_Object* ewkView, float ratio)
1527 {
1528     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1529     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1530
1531     impl->pageProxy->setCustomDeviceScaleFactor(ratio);
1532
1533     return true;
1534 }
1535
1536 float ewk_view_device_pixel_ratio_get(const Evas_Object* ewkView)
1537 {
1538     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, -1.0);
1539     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, -1.0);
1540
1541     return impl->pageProxy->deviceScaleFactor();
1542 }
1543
1544 void ewk_view_theme_set(Evas_Object* ewkView, const char* path)
1545 {
1546     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
1547     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
1548
1549     impl->setThemePath(path);
1550 }
1551
1552 const char* ewk_view_theme_get(const Evas_Object* ewkView)
1553 {
1554     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
1555     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
1556
1557     return impl->themePath();
1558 }
1559
1560 Eina_Bool ewk_view_back(Evas_Object* ewkView)
1561 {
1562     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1563     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1564
1565     WebPageProxy* page = impl->pageProxy.get();
1566     if (page->canGoBack()) {
1567         page->goBack();
1568         return true;
1569     }
1570
1571     return false;
1572 }
1573
1574 Eina_Bool ewk_view_forward(Evas_Object* ewkView)
1575 {
1576     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1577     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1578
1579     WebPageProxy* page = impl->pageProxy.get();
1580     if (page->canGoForward()) {
1581         page->goForward();
1582         return true;
1583     }
1584
1585     return false;
1586 }
1587
1588 Eina_Bool ewk_view_intent_deliver(Evas_Object* ewkView, Ewk_Intent* intent)
1589 {
1590 #if ENABLE(WEB_INTENTS)
1591     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1592     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1593     EINA_SAFETY_ON_NULL_RETURN_VAL(intent, false);
1594
1595     WebPageProxy* page = impl->pageProxy.get();
1596     page->deliverIntentToFrame(page->mainFrame(), intent->webIntentData());
1597
1598     return true;
1599 #else
1600     return false;
1601 #endif
1602 }
1603
1604 Eina_Bool ewk_view_back_possible(Evas_Object* ewkView)
1605 {
1606     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1607     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1608
1609     return impl->pageProxy->canGoBack();
1610 }
1611
1612 Eina_Bool ewk_view_forward_possible(Evas_Object* ewkView)
1613 {
1614     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1615     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1616
1617     return impl->pageProxy->canGoForward();
1618 }
1619
1620 Ewk_Back_Forward_List* ewk_view_back_forward_list_get(const Evas_Object* ewkView)
1621 {
1622     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
1623     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
1624
1625     return impl->backForwardList.get();
1626 }
1627
1628 #if ENABLE(TIZEN_WEBKIT2_FORM_DATABASE)
1629 void ewk_view_text_change_in_textfield(Evas_Object* ewkView, const String& name, const String& value)
1630 {
1631     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
1632     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
1633
1634     if (!ewk_settings_form_candidate_data_enabled_get(ewk_view_settings_get(ewkView)))
1635         return;
1636
1637     if (value.isEmpty()) {
1638         if(smartData->api->formdata_candidate_is_showing(smartData))
1639             smartData->api->formdata_candidate_hide(smartData);
1640         return;
1641     }
1642
1643     Vector<String> popupCandidates;
1644     ewk_view_form_candidate_data_get(ewkView, name, popupCandidates);
1645     std::sort(popupCandidates.begin(), popupCandidates.end(), WTF::codePointCompareLessThan);
1646
1647     Eina_List* candidateList = 0;
1648     for (size_t i = 0; i < popupCandidates.size(); ++i) {
1649         if (popupCandidates[i].startsWith(value, false))
1650             candidateList = eina_list_append(candidateList, eina_stringshare_add(popupCandidates[i].utf8().data()));
1651     }
1652
1653     if (!eina_list_count(candidateList)) {
1654         if(smartData->api->formdata_candidate_is_showing(smartData))
1655             smartData->api->formdata_candidate_hide(smartData);
1656         return;
1657     }
1658
1659     smartData->api->formdata_candidate_update_data(smartData, candidateList);
1660
1661     IntRect inputFieldRect = impl->transformToScene().mapRect(impl->pageClient->focusedNodeRect());
1662     smartData->api->formdata_candidate_show(smartData, inputFieldRect.x(), inputFieldRect.y(), inputFieldRect.width(), inputFieldRect.height());
1663 }
1664
1665 void ewk_view_form_data_add(Evas_Object* ewkView, WKDictionaryRef& formData, bool isPasswordForm)
1666 {
1667     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
1668     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
1669     if (!ewk_settings_autofill_password_form_enabled_get(ewk_view_settings_get(ewkView))
1670         && !ewk_settings_form_candidate_data_enabled_get(ewk_view_settings_get(ewkView)))
1671         return;
1672     ewk_view_context_get(ewkView)->addFormData(impl->url(), formData, isPasswordForm);
1673 }
1674
1675 void ewk_view_form_password_data_fill(Evas_Object* ewkView)
1676 {
1677     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
1678     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
1679
1680     if (!ewk_settings_autofill_password_form_enabled_get(ewk_view_settings_get(ewkView)))
1681         return;
1682
1683     Vector<std::pair<String, String> > passwordFormData;
1684     ewk_view_context_get(ewkView)->passwordFormData(impl->url(), passwordFormData);
1685
1686     if (!passwordFormData.size())
1687         return;
1688
1689     String passwordFormAutofill = String::fromUTF8("try { function passwordFormAutofill() { var inputFields;");
1690     for (size_t i = 0; i < passwordFormData.size(); i++) {
1691         passwordFormAutofill += String::fromUTF8(" inputFields = document.getElementsByName(\"");
1692         passwordFormAutofill += passwordFormData[i].first;
1693         passwordFormAutofill += String::fromUTF8("\");");
1694         passwordFormAutofill += String::fromUTF8(" for (var i = 0; i < inputFields.length; i++)");
1695         passwordFormAutofill += String::fromUTF8(" if (inputFields[i].tagName.toLowerCase() == \"input\" && (inputFields[i].type.toLowerCase() == \"text\" || inputFields[i].type.toLowerCase() == \"password\" || inputFields[i].type.toLowerCase() == \"email\"))");
1696         passwordFormAutofill += String::fromUTF8(" inputFields[i].value = \"");
1697         passwordFormAutofill += passwordFormData[i].second;
1698         passwordFormAutofill += String::fromUTF8("\";");
1699     }
1700     passwordFormAutofill += String::fromUTF8("} passwordFormAutofill(); } catch(e) { }");
1701     ewk_view_script_execute(ewkView, passwordFormAutofill.utf8().data(), 0, 0);
1702 }
1703
1704 void ewk_view_form_candidate_data_get(Evas_Object* ewkView, const String& name, Vector<String>& candidates)
1705 {
1706     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
1707     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
1708     ewk_view_context_get(ewkView)->candidateFormData(name, candidates);
1709 }
1710 #endif
1711
1712 Eina_Bool ewk_view_html_string_load(Evas_Object* ewkView, const char* html, const char* baseUrl, const char* unreachableUrl)
1713 {
1714     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1715     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1716     EINA_SAFETY_ON_NULL_RETURN_VAL(html, false);
1717
1718     if (unreachableUrl && *unreachableUrl)
1719         impl->pageProxy->loadAlternateHTMLString(String::fromUTF8(html), baseUrl ? String::fromUTF8(baseUrl) : "", String::fromUTF8(unreachableUrl));
1720     else
1721         impl->pageProxy->loadHTMLString(String::fromUTF8(html), baseUrl ? String::fromUTF8(baseUrl) : "");
1722
1723     impl->informURLChange();
1724
1725     return true;
1726 }
1727
1728 const char* ewk_view_custom_encoding_get(const Evas_Object* ewkView)
1729 {
1730     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
1731     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
1732
1733     return impl->customTextEncodingName();
1734 }
1735
1736 Eina_Bool ewk_view_custom_encoding_set(Evas_Object* ewkView, const char* encoding)
1737 {
1738     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1739     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1740
1741     impl->setCustomTextEncodingName(encoding);
1742
1743     return true;
1744 }
1745
1746 #if OS(TIZEN)
1747 // FIXME: It should be removed.
1748 WKPageRef ewk_view_WKPage_get(Evas_Object* ewkView)
1749 {
1750     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
1751     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
1752
1753     return toAPI(impl->pageProxy.get());
1754 }
1755
1756 Eina_Bool ewk_view_mouse_events_enabled_set(Evas_Object* ewkView, Eina_Bool enabled)
1757 {
1758     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1759     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1760
1761     impl->setMouseEventsEnabled(!!enabled);
1762
1763     return true;
1764 }
1765
1766 Eina_Bool ewk_view_mouse_events_enabled_get(const Evas_Object* ewkView)
1767 {
1768     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1769     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1770
1771     return impl->mouseEventsEnabled();
1772 }
1773
1774 Eina_Bool ewk_view_color_picker_color_set(Evas_Object* ewkView, int r, int g, int b, int a)
1775 {
1776 #if ENABLE(INPUT_TYPE_COLOR)
1777     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1778     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1779
1780     return impl->setColorPickerColor(WebCore::Color(r, g, b, a));
1781 #else
1782     return false;
1783 #endif
1784 }
1785
1786 static Eina_Bool _ewk_view_default_javascript_alert(Evas_Object* ewkView, const char* alertText, void* userData)
1787 {
1788     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1789     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1790
1791     return impl->javascriptPopup->alert(alertText);
1792 }
1793
1794 static Eina_Bool _ewk_view_default_javascript_confirm(Evas_Object* ewkView, const char* message, void* userData)
1795 {
1796     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1797     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1798
1799     return impl->javascriptPopup->confirm(message);
1800 }
1801
1802 static Eina_Bool _ewk_view_default_javascript_prompt(Evas_Object* ewkView, const char* message, const char* defaultValue, void* userData)
1803 {
1804     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1805     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1806
1807     return impl->javascriptPopup->prompt(message, defaultValue);
1808 }
1809
1810 #if ENABLE(TIZEN_SUPPORT_BEFORE_UNLOAD_CONFIRM_PANEL)
1811 static Eina_Bool _ewk_view_default_before_unload_confirm_panel(Evas_Object* ewkView, const char* message, void* userData)
1812 {
1813     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1814     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1815
1816     return impl->javascriptPopup->beforeUnloadConfirmPanel(message);
1817 }
1818 #endif
1819
1820 static Eina_Bool _ewk_view_default_open_panel(Evas_Object* ewkView, Eina_Bool allow_multiple_files, Eina_List *accepted_mime_types, const char* capture, void* userData)
1821 {
1822     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1823     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1824
1825     return impl->openPanel->openPanel(ewkView, allow_multiple_files, accepted_mime_types, capture, impl);
1826 }
1827
1828 #if ENABLE(TIZEN_WEBKIT2_POPUP_INTERNAL)
1829 Eina_Bool _ewk_view_popup_menu_show(Ewk_View_Smart_Data* smartData, Eina_Rectangle rect, Ewk_Text_Direction text_direction, double page_scale_factor, Eina_List* items, int selectedIndex)
1830 {
1831     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1832
1833     if (impl->popupPicker)
1834         ewk_popup_picker_del(impl->popupPicker);
1835
1836 #if ENABLE(TIZEN_MULTIPLE_SELECT)
1837     impl->popupPicker = ewk_popup_picker_new(smartData->self, items, selectedIndex, false);
1838 #else
1839     impl->popupPicker = ewk_popup_picker_new(smartData->self, items, selectedIndex);
1840 #endif
1841
1842     return true;
1843 }
1844
1845 #if ENABLE(TIZEN_MULTIPLE_SELECT)
1846 Eina_Bool _ewk_view_multiple_popup_menu_show(Ewk_View_Smart_Data* smartData, Eina_Rectangle rect, Ewk_Text_Direction text_direction, double page_scale_factor, Eina_List* items)
1847 {
1848     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1849
1850     if (impl->popupPicker)
1851         ewk_popup_picker_del(impl->popupPicker);
1852
1853     impl->popupPicker = ewk_popup_picker_new(smartData->self, items, 0, true);
1854
1855     return true;
1856 }
1857 #endif
1858
1859 Eina_Bool _ewk_view_popup_menu_hide(Ewk_View_Smart_Data* smartData)
1860 {
1861     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1862
1863     if (!impl->popupPicker)
1864         return false;
1865
1866     ewk_popup_picker_del(impl->popupPicker);
1867     impl->popupPicker = 0;
1868
1869     return true;
1870 }
1871
1872 Eina_Bool _ewk_view_popup_menu_update(Ewk_View_Smart_Data* smartData, Eina_Rectangle rect, Ewk_Text_Direction text_direction, Eina_List* items, int selectedIndex)
1873 {
1874     // FIXME: The rect should be updated if it was changed
1875
1876     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1877
1878     if (!impl->popupPicker)
1879         return false;
1880
1881     ewk_popup_picker_update(smartData->self, impl->popupPicker, items, selectedIndex);
1882
1883     return true;
1884 }
1885 #endif
1886
1887 #if ENABLE(TIZEN_INPUT_TAG_EXTENSION)
1888 static Eina_Bool _ewk_view_input_picker_show(Ewk_View_Smart_Data* smartData, Ewk_Input_Type inputType, const char* inputValue)
1889 {
1890     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1891
1892     impl->inputPicker->show(inputType, inputValue);
1893     return true;
1894 }
1895 #endif
1896
1897 #if ENABLE(TIZEN_DATALIST_ELEMENT)
1898 static Eina_Bool _ewk_view_data_list_show(Ewk_View_Smart_Data* smartData, Ewk_Input_Type inputType, Eina_List* optionList)
1899 {
1900     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1901
1902     impl->inputPicker->showDataList(inputType, optionList);
1903     return true;
1904 }
1905
1906 static Eina_Bool _ewk_view_data_list_hide(Ewk_View_Smart_Data* smartData, Ewk_Input_Type inputType)
1907 {
1908     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1909
1910     impl->inputPicker->hideDataList(inputType);
1911     return true;
1912 }
1913 #endif
1914
1915 #if ENABLE(TIZEN_INPUT_COLOR_PICKER)
1916 static Eina_Bool _ewk_input_picker_color_request(Ewk_View_Smart_Data* smartData, int r, int g, int b, int a)
1917 {
1918     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1919
1920     impl->inputPicker->showColorPicker(r, g, b, a);
1921     return true;
1922 }
1923
1924 static Eina_Bool _ewk_input_picker_color_dismiss(Ewk_View_Smart_Data* smartData)
1925 {
1926     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1927
1928     impl->inputPicker->hideColorPicker();
1929     return true;
1930 }
1931 #endif
1932
1933 PageClientImpl* ewkViewGetPageClient(const Evas_Object* ewkView)
1934 {
1935     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
1936     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
1937
1938     return impl->pageClient.get();
1939 }
1940
1941 double ewk_view_text_zoom_get(const Evas_Object* ewkView)
1942 {
1943     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 1);
1944     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 1);
1945
1946     return WKPageGetTextZoomFactor(toAPI(impl->pageProxy.get()));
1947 }
1948
1949 Eina_Bool ewk_view_text_zoom_set(Evas_Object* ewkView, double textZoomFactor)
1950 {
1951     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
1952     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
1953
1954     WKPageSetTextZoomFactor(toAPI(impl->pageProxy.get()), textZoomFactor);
1955     return true;
1956 }
1957
1958 #if ENABLE(TIZEN_WEBKIT2_FOCUS_RING)
1959 FocusRing* ewkViewGetFocusRing(Evas_Object* ewkView)
1960 {
1961     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
1962     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
1963
1964     return impl->focusRing.get();
1965 }
1966 #endif
1967
1968 Ewk_Frame_Ref ewk_view_main_frame_get(Evas_Object* ewkView)
1969 {
1970     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
1971     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
1972
1973     return static_cast<Ewk_Frame_Ref>(WKPageGetMainFrame(toAPI(impl->pageProxy.get())));
1974 }
1975
1976 Ewk_Frame_Ref ewk_view_focused_frame_get(Evas_Object* ewkView)
1977 {
1978     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
1979     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
1980
1981     return static_cast<Ewk_Frame_Ref>(WKPageGetFocusedFrame(toAPI(impl->pageProxy.get())));
1982 }
1983
1984 JSGlobalContextRef ewkViewGetJavascriptGlobalContext(Evas_Object* ewkView)
1985 {
1986     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
1987     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
1988
1989     if (!impl->javascriptGlobalContext)
1990         impl->javascriptGlobalContext = JSGlobalContextCreate(0);
1991     return impl->javascriptGlobalContext;
1992 }
1993
1994 void ewkViewLoadCommitted(Evas_Object* ewkView)
1995 {
1996 #if ENABLE(TIZEN_GESTURE)
1997     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
1998     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
1999     impl->gestureClient->reset();
2000 #endif
2001 #if ENABLE(TIZEN_WEBKIT2_FOCUS_RING)
2002     if (impl->focusRing)
2003         impl->focusRing->hide();
2004 #endif
2005 #if ENABLE(TIZEN_ISF_PORT)
2006     impl->inputMethodContext()->hideIMFContext();
2007 #endif
2008 #if ENABLE(TIZEN_WEBKIT2_FORM_DATABASE)
2009     if (smartData->api->formdata_candidate_is_showing(smartData))
2010         smartData->api->formdata_candidate_hide(smartData);
2011 #endif
2012     impl->informURLChange();
2013     evas_object_smart_callback_call(ewkView, "load,committed", 0);
2014 }
2015
2016 void ewkViewLoadError(Evas_Object* ewkView, WKErrorRef error)
2017 {
2018     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2019     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2020
2021     OwnPtr<Ewk_Error> ewkError = Ewk_Error::create(error);
2022     ewk_error_load_error_page(ewkError.get(), toAPI(impl->pageProxy.get()));
2023     evas_object_smart_callback_call(ewkView, "load,error", ewkError.get());
2024 }
2025
2026 void ewkViewDidFirstVisuallyNonEmptyLayout(Evas_Object* ewkView)
2027 {
2028 #if ENABLE(TIZEN_GESTURE)
2029     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2030     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2031     impl->gestureClient->reset();
2032 #endif
2033     evas_object_smart_callback_call(ewkView, "load,nonemptylayout,finished", 0);
2034 }
2035
2036 void ewkViewDidReceiveAuthenticationChallenge(Evas_Object* ewkView, Ewk_Auth_Challenge* authChallenge)
2037 {
2038     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2039     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2040
2041     if (impl->authChallenge)
2042         ewkAuthChallengeDelete(impl->authChallenge);
2043     impl->authChallenge = authChallenge;
2044
2045     evas_object_smart_callback_call(ewkView, "authentication,challenge", impl->authChallenge);
2046 }
2047
2048 void ewk_view_process_crashed(Evas_Object* ewkView)
2049 {
2050     bool handled = false;
2051     evas_object_smart_callback_call(ewkView, "process,crashed", &handled);
2052
2053     if (!handled)
2054         exit(0);
2055 }
2056
2057 #if ENABLE(TIZEN_SQL_DATABASE)
2058 bool ewkViewExceededDatabaseQuota(Evas_Object* ewkView, WKSecurityOriginRef origin, WKStringRef databaseName, unsigned long long expectedUsage)
2059 {
2060     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
2061     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
2062
2063     if (!impl->exceededDatabaseQuotaContext || !impl->exceededDatabaseQuotaContext->exceededDatabaseQuotaCallback)
2064         return false;
2065
2066     TIZEN_LOGI("No error in prameter. Request to display user confirm popup. expectedUsage(%llu)", expectedUsage);
2067     impl->isWaitingForExceededQuotaPopupReply = true;
2068     if (impl->exceededQuotaOrigin)
2069         deleteSecurityOrigin(impl->exceededQuotaOrigin);
2070     impl->exceededQuotaOrigin = createSecurityOrigin(origin);
2071
2072     int length = WKStringGetMaximumUTF8CStringSize(databaseName);
2073     OwnArrayPtr<char> databaseNameBuffer = adoptArrayPtr(new char[length]);
2074     WKStringGetUTF8CString(databaseName, databaseNameBuffer.get(), length);
2075
2076     return impl->exceededDatabaseQuotaContext->exceededDatabaseQuotaCallback(ewkView, impl->exceededQuotaOrigin, databaseNameBuffer.get(), expectedUsage, impl->exceededDatabaseQuotaContext->userData) == EINA_TRUE;
2077 }
2078 #endif
2079
2080 #if ENABLE(TIZEN_NOTIFICATIONS)
2081 void ewkViewCancelNotification(Evas_Object* ewkView, uint64_t notificationID)
2082 {
2083     TIZEN_LOGI("notification,cancel");
2084     evas_object_smart_callback_call(ewkView, "notification,cancel", &notificationID);
2085 }
2086
2087 void ewkViewRequestNotificationPermission(Evas_Object* ewkView, Ewk_Notification_Permission_Request* notificationPermissionRequest)
2088 {
2089     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2090     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2091
2092     TIZEN_LOGI("notification,permission,request");
2093     impl->notificationPermissionRequests = eina_list_append(impl->notificationPermissionRequests, notificationPermissionRequest);
2094     evas_object_smart_callback_call(ewkView, "notification,permission,request", notificationPermissionRequest);
2095 }
2096
2097 void ewkViewShowNotification(Evas_Object* ewkView, Ewk_Notification* notification)
2098 {
2099     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2100     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2101
2102     TIZEN_LOGI("notification,show");
2103     Eina_List* listIterator=0;
2104     void* data=0;
2105     const char* replaceID = ewkNotificationGetReplaceID(notification);
2106     if(strlen(replaceID)) {
2107         EINA_LIST_FOREACH(impl->notifications, listIterator, data) {
2108             Ewk_Notification* notificationForReplace = static_cast<Ewk_Notification*>(data);
2109             if(!strcmp(ewkNotificationGetReplaceID(notificationForReplace), replaceID))
2110                 ewkViewCancelNotification(ewkView, ewk_notification_id_get(notificationForReplace));
2111         }
2112     }
2113
2114     impl->notifications = eina_list_append(impl->notifications, notification);
2115     evas_object_smart_callback_call(ewkView, "notification,show", notification);
2116 }
2117
2118 void ewkViewDeleteNotificationPermissionRequest(Evas_Object* ewkView, Ewk_Notification_Permission_Request* ewkNotificationPermissionRequest)
2119 {
2120     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2121     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2122
2123     impl->notificationPermissionRequests = eina_list_remove(impl->notificationPermissionRequests, ewkNotificationPermissionRequest);
2124 }
2125 #endif
2126
2127 #if ENABLE(TIZEN_REGISTER_PROTOCOL_HANDLER)
2128 void ewkViewRegisterProtocolHandlers(Evas_Object* ewkView, const char* scheme, const char* baseUrl, const char* url, const char* title)
2129 {
2130     EINA_SAFETY_ON_NULL_RETURN(ewkView);
2131
2132     TIZEN_LOGI("protocolhandler,registration,requested");
2133     Ewk_Custom_Handlers_Data* customHandlersData = ewkCustomHandlersCreateData(scheme, baseUrl, url, title);
2134     evas_object_smart_callback_call(ewkView, "protocolhandler,registration,requested", static_cast<void*>(customHandlersData));
2135     ewkCustomHandlersDeleteData(customHandlersData);
2136 }
2137 #endif
2138
2139 #if ENABLE(TIZEN_CUSTOM_SCHEME_HANDLER)
2140 Ewk_Custom_Handlers_State ewkViewIsProtocolHandlerRegistered(Evas_Object* ewkView, const char* scheme, const char* baseURL, const char* url)
2141 {
2142     EINA_SAFETY_ON_NULL_RETURN_VAL(ewkView, EWK_CUSTOM_HANDLERS_DECLINED);
2143
2144     TIZEN_LOGI("protocolhandler,isregistered");
2145     Ewk_Custom_Handlers_Data* customHandlersData = ewkCustomHandlersCreateData(scheme, baseURL, url);
2146     evas_object_smart_callback_call(ewkView, "protocolhandler,isregistered", static_cast<void*>(customHandlersData));
2147
2148     Ewk_Custom_Handlers_State result;
2149     result = ewkGetCustomHandlersDataResult(customHandlersData);
2150     ewkCustomHandlersDeleteData(customHandlersData);
2151
2152     return result;
2153 }
2154
2155 void ewkViewUnregisterProtocolHandlers(Evas_Object* ewkView, const char* scheme, const char* baseURL, const char* url)
2156 {
2157     EINA_SAFETY_ON_NULL_RETURN(ewkView);
2158
2159     TIZEN_LOGI("protocolhandler,unregistration,requested");
2160     Ewk_Custom_Handlers_Data* customHandlersData = ewkCustomHandlersCreateData(scheme, baseURL, url);
2161     evas_object_smart_callback_call(ewkView, "protocolhandler,unregistration,requested", static_cast<void*>(customHandlersData));
2162     ewkCustomHandlersDeleteData(customHandlersData);
2163 }
2164 #endif
2165
2166 #if ENABLE(TIZEN_REGISTER_CONTENT_HANDLER)
2167 void ewkViewRegisterContentHandlers(Evas_Object* ewkView, const char* mimeType, const char* baseUrl, const char* url, const char* title)
2168 {
2169     EINA_SAFETY_ON_NULL_RETURN(ewkView);
2170
2171     TIZEN_LOGI("contenthandler,registration,requested");
2172     Ewk_Custom_Handlers_Data* customHandlersData = ewkCustomHandlersCreateData(mimeType, baseUrl, url, title);
2173     evas_object_smart_callback_call(ewkView, "contenthandler,registration,requested", static_cast<void*>(customHandlersData));
2174     ewkCustomHandlersDeleteData(customHandlersData);
2175 }
2176
2177 Ewk_Custom_Handlers_State ewkViewIsContentHandlerRegistered(Evas_Object* ewkView, const char* mimeType, const char* baseURL, const char* url)
2178 {
2179     EINA_SAFETY_ON_NULL_RETURN_VAL(ewkView, EWK_CUSTOM_HANDLERS_DECLINED);
2180
2181     TIZEN_LOGI("contenthandler,isregistered");
2182     Ewk_Custom_Handlers_Data* customHandlersData = ewkCustomHandlersCreateData(mimeType, baseURL, url);
2183     evas_object_smart_callback_call(ewkView, "contenthandler,isregistered", static_cast<void*>(customHandlersData));
2184
2185     Ewk_Custom_Handlers_State result;
2186     result = ewkGetCustomHandlersDataResult(customHandlersData);
2187     ewkCustomHandlersDeleteData(customHandlersData);
2188
2189     return result;
2190 }
2191
2192 void ewkViewUnregisterContentHandlers(Evas_Object* ewkView, const char* mimeType, const char* baseURL, const char* url)
2193 {
2194     EINA_SAFETY_ON_NULL_RETURN(ewkView);
2195
2196     TIZEN_LOGI("contenthandler,unregistration,requested");
2197     Ewk_Custom_Handlers_Data* customHandlersData = ewkCustomHandlersCreateData(mimeType, baseURL, url);
2198     evas_object_smart_callback_call(ewkView, "contenthandler,unregistration,requested", static_cast<void*>(customHandlersData));
2199     ewkCustomHandlersDeleteData(customHandlersData);
2200 }
2201 #endif
2202
2203 #if ENABLE(TIZEN_SEARCH_PROVIDER)
2204 void ewkViewAddSearchProvider(Evas_Object* ewkView, const char* baseURL, const char* engineURL)
2205 {
2206     EINA_SAFETY_ON_NULL_RETURN(ewkView);
2207
2208     TIZEN_LOGI("searchProvider,add");
2209     Ewk_Search_Provider_Data* searchProviderData = ewkSearchProviderCreateData(baseURL, engineURL);
2210     evas_object_smart_callback_call(ewkView, "searchProvider,add", static_cast<void*>(searchProviderData));
2211     ewkSearchProviderDeleteData(searchProviderData);
2212 }
2213
2214 unsigned long ewkViewIsSearchProviderInstalled(Evas_Object* ewkView, const char* baseURL, const char* engineURL)
2215 {
2216     EINA_SAFETY_ON_NULL_RETURN_VAL(ewkView, 0);
2217
2218     TIZEN_LOGI("searchProvider,installed");
2219     Ewk_Search_Provider_Data* searchProviderData = ewkSearchProviderCreateData(baseURL, engineURL);
2220     evas_object_smart_callback_call(ewkView, "searchProvider,installed", static_cast<void*>(searchProviderData));
2221     unsigned long result;
2222     result = ewkGetSearchProviderResult(searchProviderData);
2223     ewkSearchProviderDeleteData(searchProviderData);
2224     return result;
2225 }
2226 #endif
2227
2228 #if ENABLE(TIZEN_SUPPORT_WEBAPP_META_TAG)
2229 bool ewkViewGetStandaloneStatus(Evas_Object* ewkView)
2230 {
2231     TIZEN_LOGI("webapp,metatag,standalone");
2232     bool standalone = true;
2233     evas_object_smart_callback_call(ewkView, "webapp,metatag,standalone", (void*)&standalone);
2234     return standalone;
2235 }
2236 #endif
2237
2238 #if ENABLE(TIZEN_MEDIA_STREAM)
2239 void ewkViewRequestUserMediaPermission(Evas_Object* ewkView, Ewk_User_Media_Permission_Request* userMediaPermission)
2240 {
2241     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2242     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2243
2244     impl->userMediaPermissionRequests = eina_list_append(impl->userMediaPermissionRequests, userMediaPermission);
2245     evas_object_smart_callback_call(ewkView, "usermedia,permission,request", userMediaPermission);
2246 }
2247
2248 void ewkViewDeleteUserMediaPermissionRequest(Evas_Object* ewkView, Ewk_User_Media_Permission_Request* permission)
2249 {
2250     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2251     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2252
2253     impl->userMediaPermissionRequests = eina_list_remove(impl->userMediaPermissionRequests, permission);
2254 }
2255
2256 #endif
2257
2258 #if ENABLE(TIZEN_JSBRIDGE_PLUGIN)
2259 void ewkViewProcessJSBridgePlugin(Evas_Object* ewkView, WKStringRef request, WKStringRef message)
2260 {
2261     int requestLength = WKStringGetMaximumUTF8CStringSize(request);
2262     OwnArrayPtr<char> requestBuffer = adoptArrayPtr(new char[requestLength]);
2263     int messageLength = WKStringGetMaximumUTF8CStringSize(message);
2264     OwnArrayPtr<char> messageBuffer = adoptArrayPtr(new char[messageLength]);
2265     WKStringGetUTF8CString(request, requestBuffer.get(), requestLength);
2266     WKStringGetUTF8CString(message, messageBuffer.get(), messageLength);
2267
2268     evas_object_smart_callback_call(ewkView, requestBuffer.get(), static_cast<void*>(messageBuffer.get()));
2269 }
2270 #endif
2271
2272 #if ENABLE(TIZEN_CERTIFICATE_HANDLING)
2273 void ewkViewRequestCertificateConfirm(Evas_Object* ewkView, Ewk_Certificate_Policy_Decision* certificatePolicyDecision)
2274 {
2275     EWK_VIEW_SD_GET_OR_RETURN(ewkView, sd);
2276     EWK_VIEW_IMPL_GET_OR_RETURN(sd, impl);
2277     if (impl->certificatePolicyDecision)
2278         ewkCertificatePolicyDecisionDelete(impl->certificatePolicyDecision);
2279     impl->certificatePolicyDecision = certificatePolicyDecision;
2280
2281     evas_object_smart_callback_call(ewkView, "request,certificate,confirm", certificatePolicyDecision);
2282 }
2283 #endif
2284
2285 void ewkViewCustomizeContextMenu(Evas_Object* ewkView, Ewk_Context_Menu* menu)
2286 {
2287     evas_object_smart_callback_call(ewkView, "contextmenu,customize", static_cast<void*>(menu));
2288 }
2289
2290 void ewkViewCustomContextMenuItemSelected(Evas_Object* ewkView, Ewk_Context_Menu_Item* item)
2291 {
2292     evas_object_smart_callback_call(ewkView, "contextmenu,selected", static_cast<void*>(item));
2293 }
2294
2295 #if ENABLE(TIZEN_GEOLOCATION)
2296 void ewkViewRequestGeolocationPermission(Evas_Object* ewkView, Ewk_Geolocation_Permission_Request* geolocationPermissionRequest)
2297 {
2298     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2299     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2300
2301     TIZEN_LOGI("geolocation,permission,request");
2302     impl->geolocationPermissionRequests = eina_list_append(impl->geolocationPermissionRequests, geolocationPermissionRequest);
2303     evas_object_smart_callback_call(ewkView, "geolocation,permission,request", geolocationPermissionRequest);
2304 }
2305
2306 void ewkViewDeleteGeolocationPermission(Evas_Object* ewkView, Ewk_Geolocation_Permission_Request* geolocationPermissionRequest)
2307 {
2308     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2309     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2310
2311     impl->geolocationPermissionRequests = eina_list_remove(impl->geolocationPermissionRequests, geolocationPermissionRequest);
2312 }
2313
2314 void ewkViewSetGeolocation(Evas_Object* ewkView, Ewk_Geolocation* geolocation)
2315 {
2316     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2317     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2318
2319     impl->geolocation = geolocation;
2320 }
2321
2322 Ewk_Geolocation* ewkViewGetGeolocation(Evas_Object* ewkView)
2323 {
2324     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
2325     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
2326
2327     return impl->geolocation;
2328 }
2329
2330 bool ewkViewIsValidLocationService(Evas_Object* ewkView)
2331 {
2332     TIZEN_LOGI("geolocation,valid");
2333
2334     bool valid = true;
2335     evas_object_smart_callback_call(ewkView, "geolocation,valid", &valid);
2336     return valid;
2337 }
2338 #endif
2339
2340 void ewkViewFormSubmit(Evas_Object* ewkView, Ewk_Form_Data* formData)
2341 {
2342     evas_object_smart_callback_call(ewkView, "form,submit", formData);
2343 }
2344
2345 void ewkViewPolicyNavigationDecide(Evas_Object* ewkView, Ewk_Policy_Decision* policyDecision)
2346 {
2347     EWK_VIEW_SD_GET_OR_RETURN(ewkView, sd);
2348     EWK_VIEW_IMPL_GET_OR_RETURN(sd, impl);
2349     if (impl->policyDecision)
2350         ewkPolicyDecisionDelete(impl->policyDecision);
2351     impl->policyDecision = policyDecision;
2352
2353     evas_object_smart_callback_call(ewkView, "policy,navigation,decide", impl->policyDecision);
2354 }
2355
2356 void ewkViewPolicyNewWindowDecide(Evas_Object* ewkView, Ewk_Policy_Decision* policyDecision)
2357 {
2358     EWK_VIEW_SD_GET_OR_RETURN(ewkView, sd);
2359     EWK_VIEW_IMPL_GET_OR_RETURN(sd, impl);
2360     if (impl->policyDecision)
2361         ewkPolicyDecisionDelete(impl->policyDecision);
2362     impl->policyDecision = policyDecision;
2363
2364     evas_object_smart_callback_call(ewkView, "policy,newwindow,decide", impl->policyDecision);
2365 }
2366
2367 void ewkViewPolicyResponseDecide(Evas_Object* ewkView, Ewk_Policy_Decision* policyDecision)
2368 {
2369     EWK_VIEW_SD_GET_OR_RETURN(ewkView, sd);
2370     EWK_VIEW_IMPL_GET_OR_RETURN(sd, impl);
2371     if (impl->policyDecision)
2372         ewkPolicyDecisionDelete(impl->policyDecision);
2373     impl->policyDecision = policyDecision;
2374
2375     evas_object_smart_callback_call(ewkView, "policy,response,decide", impl->policyDecision);
2376 }
2377
2378 void ewkViewSendScrollEvent(Evas_Object* ewkView, int deltaX, int deltaY)
2379 {
2380     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2381     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2382
2383     IntPoint scrollPosition = impl->pageClient->scrollPosition();
2384     IntSize contentsSize = impl->pageProxy->contentsSize();
2385 #if ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE)
2386     contentsSize.scale(impl->pageClient->scaleFactor());
2387 #endif
2388
2389     // some website's contents size is smaller than view size,
2390     // so we have to adjust contents size to view size for that case.
2391     if (contentsSize.width() < smartData->view.w)
2392         contentsSize.setWidth(smartData->view.w);
2393     if (contentsSize.height() < smartData->view.h)
2394         contentsSize.setHeight(smartData->view.h);
2395
2396     // Call "scroll,down" if webview can be scrolled down.
2397     if (deltaY > 0 && (scrollPosition.y() + smartData->view.h) < contentsSize.height())
2398         evas_object_smart_callback_call(ewkView, "scroll,down", 0);
2399     // Call "scroll,up" if webview can be scrolled up.
2400     else if (deltaY < 0 && scrollPosition.y() > 0)
2401         evas_object_smart_callback_call(ewkView, "scroll,up", 0);
2402
2403     // Call "scroll,right" if webview can be scrolled down.
2404     if (deltaX > 0 && (scrollPosition.x() + smartData->view.w) < contentsSize.width())
2405         evas_object_smart_callback_call(ewkView, "scroll,right", 0);
2406     // Call "scroll,left" if webview can be scrolled up.
2407     else if (deltaX < 0 && scrollPosition.x() > 0)
2408         evas_object_smart_callback_call(ewkView, "scroll,left", 0);
2409 }
2410
2411 void ewkViewSendEdgeEvent(Evas_Object* ewkView, const IntPoint& scrollPosition, int deltaX, int deltaY)
2412 {
2413     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2414     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2415
2416     IntSize contentsSize = impl->pageProxy->contentsSize();
2417 #if ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE)
2418     contentsSize.scale(impl->pageClient->scaleFactor());
2419 #endif
2420
2421     int maxScrollY = contentsSize.height() - smartData->view.h;
2422     if (!impl->isVerticalEdge) {
2423         if (deltaY < 0 && (scrollPosition.y() + deltaY) <= 0) {
2424             evas_object_smart_callback_call(ewkView, "edge,top", NULL);
2425             impl->isVerticalEdge = true;
2426         } else if (deltaY > 0 && (scrollPosition.y() + deltaY) >= maxScrollY) {
2427             evas_object_smart_callback_call(ewkView, "edge,bottom", NULL);
2428             impl->isVerticalEdge = true;
2429         }
2430     } else {
2431         if (maxScrollY && ((scrollPosition.y() == 0 && deltaY > 0)
2432                            || (scrollPosition.y() == maxScrollY && deltaY < 0)))
2433             impl->isVerticalEdge = false;
2434     }
2435
2436     int maxScrollX = contentsSize.width() - smartData->view.w;
2437     if (!impl->isHorizontalEdge) {
2438         if (deltaX < 0 && (scrollPosition.x() + deltaX) <= 0) {
2439             evas_object_smart_callback_call(ewkView, "edge,left", NULL);
2440             impl->isHorizontalEdge = true;
2441         } else if (deltaX > 0 && (scrollPosition.x() + deltaX) >= maxScrollX) {
2442             evas_object_smart_callback_call(ewkView, "edge,right", NULL);
2443             impl->isHorizontalEdge = true;
2444         }
2445     } else {
2446         if (maxScrollX && ((scrollPosition.x() == 0 && deltaX > 0)
2447                            || (scrollPosition.x() == maxScrollX && deltaX < 0)))
2448             impl->isHorizontalEdge = false;
2449     }
2450 }
2451
2452 void ewkViewClearEdges(Evas_Object* ewkView)
2453 {
2454     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2455     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2456
2457     impl->isVerticalEdge = false;
2458     impl->isHorizontalEdge = false;
2459 }
2460
2461 void ewk_view_scale_range_get(Evas_Object* ewkView, double* minimumScale, double* maximumScale)
2462 {
2463     EWK_VIEW_SD_GET(ewkView, smartData);
2464     if (!smartData || !smartData->priv) {
2465         if (minimumScale)
2466             *minimumScale = -1;
2467         if (maximumScale)
2468             *maximumScale = -1;
2469         return;
2470     }
2471
2472     PageClientImpl::ViewportConstraints constraints = smartData->priv->pageClient->viewportConstraints();
2473     if (minimumScale)
2474         *minimumScale = constraints.minimumScale;
2475     if (maximumScale)
2476         *maximumScale = constraints.maximumScale;
2477 }
2478
2479 bool ewk_view_focused_node_adjust(Evas_Object* ewkView, Eina_Bool adjustForExternalKeyboard)
2480 {
2481     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
2482     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
2483
2484     double scaleFactor = impl->pageClient->scaleFactor();
2485     IntSize contentsSize = impl->pageProxy->contentsSize();
2486
2487     double newScaleFactor = scaleFactor;
2488     // Readable zoom value is dependent on device DPI
2489     if (scaleFactor < impl->pageProxy->deviceScaleFactor()
2490         && impl->pageClient->viewportConstraints().userScalable)
2491         newScaleFactor = impl->pageProxy->deviceScaleFactor();
2492
2493     // Readable zoom value should be inside of viewport scale range
2494     newScaleFactor = impl->pageClient->adjustScaleWithViewport(newScaleFactor);
2495
2496     // scale contents' size with new scale factor
2497 #if ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE)
2498     contentsSize.scale(newScaleFactor);
2499 #else
2500     contentsSize.scale(newScaleFactor / scaleFactor);
2501 #endif
2502
2503 #if ENABLE(TIZEN_ISF_PORT)
2504     // We should treat both of ECORE_IMF_INPUT_PANEL_STATE_SHOW and ECORE_IMF_INPUT_PANEL_STATE_WILL_SHOW
2505     // as IME is shown. ECORE_IMF_INPUT_PANEL_STATE_HIDE is ignored at here.
2506     // input field zoom should not work with below conditions
2507     // 1. view is not focused
2508     // 2. external keyboard is not connected(if adjustForExternalKeyboard is true)
2509     // 3. imfContext is null(if adjustForExternalKeyboard is false)
2510     // 4. input panel state is hidden(if adjustForExternalKeyboard is false)
2511     if ((!(static_cast<PageClient*>(impl->pageClient.get()))->isViewFocused()
2512         || (adjustForExternalKeyboard && !InputMethodContextEfl::shouldUseExternalKeyboard())
2513         || (!adjustForExternalKeyboard && !impl->inputMethodContext())
2514         || (!adjustForExternalKeyboard && !impl->inputMethodContext()->isShow()))
2515 #if ENABLE(TIZEN_WEBKIT2_CONTEXT_MENU_CLIPBOARD)
2516         && !(impl->pageClient->isClipboardWindowOpened())
2517 #endif
2518         )
2519         return false;
2520 #endif
2521
2522     // caret position can be outside of visible rect.
2523     // we need to consider it.
2524     IntRect selectionRect = impl->pageProxy->getSelectionRect(true);
2525     IntRect focusedNodeRect = impl->pageClient->focusedNodeRect();
2526 #if ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE)
2527     selectionRect.scale(newScaleFactor);
2528     focusedNodeRect.scale(newScaleFactor);
2529 #else
2530     selectionRect.scale(newScaleFactor / scaleFactor);
2531     focusedNodeRect.scale(newScaleFactor / scaleFactor);
2532 #endif
2533     if (selectionRect.isEmpty())
2534         return false;
2535
2536     IntRect visibleRect = impl->pageClient->visibleContentRect();
2537     IntPoint scrollPosition = visibleRect.location();
2538     // Do not adjust scroll position if content is userscalable or selection rect (caret) is visible after scaling
2539     if (impl->pageClient->userScalable() || !visibleRect.contains(selectionRect)) {
2540         // set paddings
2541         scrollPosition = IntPoint(selectionRect.x() - visibleRect.width() / 3, selectionRect.y() - visibleRect.height() / 3);
2542         // If both input field's position x and selection rect can be displayed together,
2543         // adjust scroll position to input field's position x.
2544         if (!focusedNodeRect.isEmpty() && selectionRect.x() - focusedNodeRect.x() < visibleRect.width() * 4 / 5)
2545             scrollPosition.setX(focusedNodeRect.x());
2546     }
2547
2548 #if ENABLE(TIZEN_DLOG_SUPPORT)
2549     TIZEN_LOGI("scroll position: [%d, %d], scale factor: [%.2f]", scrollPosition.x(), scrollPosition.y(), newScaleFactor);
2550 #endif
2551
2552 #if ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE)
2553     impl->pageClient->setVisibleContentRect(IntRect(scrollPosition, impl->size()), newScaleFactor);
2554 #else
2555     if (newScaleFactor != scaleFactor)
2556         impl->pageProxy->scalePage(newScaleFactor, scrollPosition);
2557     else
2558         impl->pageProxy->scrollMainFrameTo(scrollPosition);
2559 #endif
2560     evas_object_move(smartData->image, smartData->view.x, smartData->view.y);
2561     return true;
2562 }
2563
2564 #if ENABLE(TIZEN_WEBKIT2_TILED_AC)
2565 #if ENABLE(TIZEN_RUNTIME_BACKEND_SELECTION)
2566 static Eina_Bool _ewk_view_composite(void* data)
2567 {
2568     Ewk_View_Smart_Data* smartData = static_cast<Ewk_View_Smart_Data*>(data);
2569     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
2570
2571     if (!evas_object_visible_get(smartData->image))
2572         return ECORE_CALLBACK_CANCEL;
2573
2574     Evas_Coord ow, oh;
2575     evas_object_image_size_get(smartData->image, &ow, &oh);
2576     uint8_t* pixels = static_cast<uint8_t*>(evas_object_image_data_get(smartData->image, true));
2577
2578     RefPtr<cairo_surface_t> surface = adoptRef(cairo_image_surface_create_for_data(pixels, CAIRO_FORMAT_ARGB32, ow, oh, cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, ow)));
2579     RefPtr<cairo_t> context = adoptRef(cairo_create(surface.get()));
2580
2581     cairo_save(context.get());
2582     cairo_set_operator(context.get(), CAIRO_OPERATOR_CLEAR);
2583     cairo_rectangle(context.get(), 0, 0, ow, oh);
2584     cairo_fill(context.get());
2585     cairo_restore(context.get());
2586
2587     impl->pageClient->drawContents(context.get());
2588
2589     evas_object_image_data_set(smartData->image, pixels);
2590     evas_object_image_data_update_add(smartData->image, 0, 0, ow, oh);
2591
2592     if (impl->pageClient->notifiedNonemptyLayout())
2593         ewkViewFrameRendered(smartData->self);
2594
2595     impl->compositionAnimator = 0;
2596
2597     return ECORE_CALLBACK_CANCEL;
2598 }
2599 #endif
2600
2601 void ewk_view_mark_for_sync(Evas_Object* ewkView)
2602 {
2603     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2604     EINA_SAFETY_ON_NULL_RETURN(smartData->image);
2605
2606 #if ENABLE(TIZEN_RUNTIME_BACKEND_SELECTION)
2607     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2608
2609     if (!ewk_view_is_opengl_backend(ewkView)) {
2610         if (!impl->compositionAnimator)
2611             impl->compositionAnimator = ecore_animator_add(_ewk_view_composite, smartData);
2612         return;
2613     }
2614 #endif
2615
2616     evas_object_image_pixels_dirty_set(smartData->image, true);
2617 }
2618
2619 static void on_pixels_for_accelerated_compositing(void* data, Evas_Object* obj)
2620 {
2621     Evas_Object* ewkView = static_cast<Evas_Object*>(data);
2622     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2623     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2624     impl->pageClient->drawContents();
2625 }
2626
2627 bool ewk_view_image_native_surface_set(Evas_Object* ewkView, Evas_Native_Surface* nativeSurface)
2628 {
2629     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
2630     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
2631
2632     if (!smartData->image)
2633         return false;
2634
2635     evas_object_image_native_surface_set(smartData->image, nativeSurface);
2636     evas_object_image_pixels_get_callback_set(smartData->image, on_pixels_for_accelerated_compositing, ewkView);
2637
2638     return true;
2639 }
2640 #endif
2641
2642 void _ewk_view_suspend_painting(Evas_Object* ewkView)
2643 {
2644     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2645     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2646
2647     if (!impl->suspendedPainting) {
2648         impl->pageProxy->suspendPainting();
2649         impl->suspendedPainting = true;
2650     }
2651 }
2652
2653 void _ewk_view_resume_painting(Evas_Object* ewkView)
2654 {
2655     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2656     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2657
2658     if (impl->suspendedPainting) {
2659         impl->pageProxy->resumePainting();
2660         impl->suspendedPainting = false;
2661     }
2662 }
2663
2664 void ewk_view_suspend(Evas_Object* ewkView)
2665 {
2666     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2667     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2668
2669     if (impl->pageProxy->estimatedProgress() < 1.0) {
2670         impl->suspendRequested = true;
2671         return;
2672     }
2673     impl->suspendRequested = false;
2674
2675     _ewk_view_suspend_painting(ewkView);
2676
2677     // FIXME Workaround for suspend/resume while javascript popup is displayed.
2678     // condition ' && !private->isWaitingForJavaScriptPopupReply' is added to
2679     // skip suspendJavaScriptAndResource to prevent multiple ActiveDOMObject
2680     // suspend.
2681     // During the javascript popup is displayed, PageGroupLoadDeferrer is activated,
2682     // which suspends resource loading and scheduled tasks, including ActiveDOMObject.
2683     // When ewk_view_suspend() is called during the javascript popup, scheduled tasks
2684     // will be suspended again.
2685     // Multiple suspend of ActiveDOMObject makes unintended suspend/resume status of
2686     // the ActiveDOMObject.
2687     if (!impl->suspendedResources && (!impl->isWaitingForJavaScriptPopupReply || !impl->isWaitingForApplicationCachePermission || !impl->isWaitingForExceededQuotaPopupReply)) {
2688         impl->pageProxy->suspendAnimations();
2689         impl->pageProxy->suspendJavaScriptAndResource();
2690         impl->suspendedResources = true;
2691     }
2692
2693 #if ENABLE(TIZEN_PLUGIN_SUSPEND_RESUME)
2694     impl->pageProxy->suspendPlugin();
2695 #endif
2696 }
2697
2698 void ewk_view_resume(Evas_Object* ewkView)
2699 {
2700     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
2701     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
2702
2703     if (impl->suspendRequested) {
2704         impl->suspendRequested = false;
2705         return;
2706     }
2707
2708     _ewk_view_resume_painting(ewkView);
2709
2710     // FIXME Workaround for suspend/resume while javascript popup is displayed.
2711     // condition ' && !private->isWaitingForJavaScriptPopupReply' is added to
2712     // skip suspendJavaScriptAndResource to prevent multiple ActiveDOMObject
2713     // suspend.
2714     // During the javascript popup is displayed, PageGroupLoadDeferrer is activated,
2715     // which suspends resource loading and scheduled tasks, including ActiveDOMObject.
2716     // When ewk_view_suspend() is called during the javascript popup, scheduled tasks
2717     // will be suspended again.
2718     // Multiple suspend of ActiveDOMObject makes unintended suspend/resume status of
2719     // the ActiveDOMObject.
2720     if (impl->suspendedResources && (!impl->isWaitingForJavaScriptPopupReply || !impl->isWaitingForApplicationCachePermission || !impl->isWaitingForExceededQuotaPopupReply)) {
2721         impl->pageProxy->resumeAnimations();
2722         impl->pageProxy->resumeJavaScriptAndResource();
2723         impl->suspendedResources = false;
2724     }
2725
2726 #if ENABLE(TIZEN_PLUGIN_SUSPEND_RESUME)
2727     impl->pageProxy->resumePlugin();
2728 #endif
2729 }
2730
2731 Eina_Bool ewk_view_url_request_set(Evas_Object* ewkView, const char* url, Ewk_Http_Method method, Eina_Hash* headers, const char* body)
2732 {
2733     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
2734     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
2735     EINA_SAFETY_ON_NULL_RETURN_VAL(url, false);
2736
2737     ResourceRequest request(String::fromUTF8(url));
2738
2739     switch (method) {
2740     case EWK_HTTP_METHOD_GET:
2741         request.setHTTPMethod("GET");
2742         break;
2743     case EWK_HTTP_METHOD_HEAD:
2744         request.setHTTPMethod("HEAD");
2745         break;
2746     case EWK_HTTP_METHOD_POST:
2747         request.setHTTPMethod("POST");
2748         break;
2749     case EWK_HTTP_METHOD_PUT:
2750         request.setHTTPMethod("PUT");
2751         break;
2752     case EWK_HTTP_METHOD_DELETE:
2753         request.setHTTPMethod("DELETE");
2754         break;
2755     default:
2756         return false;
2757     }
2758
2759     if (headers) {
2760         Eina_Iterator* it = eina_hash_iterator_tuple_new(headers);
2761         void* data;
2762         while (eina_iterator_next(it, &data)) {
2763             Eina_Hash_Tuple* t = static_cast<Eina_Hash_Tuple*>(data);
2764             const char* name = static_cast<const char*>(t->key);
2765             const char* value = static_cast<const char*>(t->data);
2766             request.addHTTPHeaderField(name, value);
2767         }
2768         eina_iterator_free(it);
2769     }
2770
2771     if (body)
2772         request.setHTTPBody(FormData::create(body));
2773
2774     WKRetainPtr<WKURLRequestRef> urlRequest(AdoptWK,toAPI(WebURLRequest::create(request).leakRef()));
2775     WKPageLoadURLRequest(toAPI(impl->pageProxy.get()), urlRequest.get());
2776
2777     return true;
2778 }
2779
2780 Eina_Bool ewk_view_plain_text_set(Evas_Object* ewkView, const char* plainText)
2781 {
2782     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
2783     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
2784
2785     WKRetainPtr<WKStringRef> plainTextRef(AdoptWK, WKStringCreateWithUTF8CString(plainText));
2786     WKPageLoadPlainTextString(toAPI(impl->pageProxy.get()), plainTextRef.get());
2787
2788     return true;
2789 }
2790
2791 Eina_Bool ewk_view_contents_set(Evas_Object* ewkView, const char* contents, size_t contentsSize, char* mimeType, char* encoding, char* baseUri)
2792 {
2793     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
2794     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
2795     EINA_SAFETY_ON_NULL_RETURN_VAL(contents, false);
2796
2797     if (contentsSize == 0)
2798         return false;
2799
2800     String mimeTypeString;
2801     if (mimeType)
2802         mimeTypeString = String::fromUTF8(mimeType);
2803     else
2804         mimeTypeString = String::fromUTF8("text/html");
2805
2806     String encodingString;
2807     if (encoding)
2808         encodingString = String::fromUTF8(encoding);
2809     else
2810         encodingString = String::fromUTF8("UTF-8");
2811
2812     String baseUriString;
2813     if (baseUri)
2814         baseUriString = String::fromUTF8(baseUri);
2815     else
2816         baseUriString = String::fromUTF8("about:blank");
2817
2818     WKRetainPtr<WKDataRef> contentsRef(AdoptWK, WKDataCreate(reinterpret_cast<const unsigned char*>(contents), contentsSize));
2819     impl->pageProxy->loadContentsbyMimeType(toImpl(contentsRef.get()), mimeTypeString, encodingString, baseUriString);
2820
2821     return true;
2822 }
2823
2824 Eina_Bool ewk_view_html_contents_set(Evas_Object* ewkView, const char* html, const char* baseUri)
2825 {
2826     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
2827     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
2828
2829     WKRetainPtr<WKStringRef> htmlString(AdoptWK, WKStringCreateWithUTF8CString(html));
2830     WKRetainPtr<WKURLRef> baseURL(AdoptWK, WKURLCreateWithUTF8CString(baseUri));
2831
2832     WKPageLoadHTMLString(toAPI(impl->pageProxy.get()), htmlString.get(), baseURL.get());
2833
2834     return true;
2835 }
2836
2837 Eina_Bool ewk_view_page_visibility_state_set(Evas_Object* ewkView, Ewk_Page_Visibility_State pageVisibilityState, Eina_Bool initialState)
2838 {
2839     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
2840     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
2841
2842     TIZEN_LOGI("initialState (%d)", initialState);
2843 #if ENABLE(TIZEN_PAGE_VISIBILITY_API)
2844     WKPageSetPageVisibility(toAPI(impl->pageProxy.get()), static_cast<WKPageVisibilityState>(pageVisibilityState), initialState);
2845     return true;
2846 #else
2847     return false;
2848 #endif
2849 }
2850
2851 Eina_Bool ewk_view_user_agent_set(Evas_Object* ewkView, const char* userAgent)
2852 {
2853     EINA_SAFETY_ON_NULL_RETURN_VAL(userAgent, false);
2854
2855     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
2856     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
2857
2858     impl->userAgent = userAgent;
2859
2860     WKRetainPtr<WKStringRef> userAgentString(AdoptWK, WKStringCreateWithUTF8CString(userAgent));
2861     WKPageSetCustomUserAgent(toAPI(impl->pageProxy.get()), userAgentString.get());
2862
2863     return true;
2864 }
2865
2866 const char* ewk_view_user_agent_get(const Evas_Object* ewkView)
2867 {
2868     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
2869     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
2870
2871     if (!impl->userAgent) {
2872         WKRetainPtr<WKStringRef> userAgentString(AdoptWK, WKPageCopyUserAgent(toAPI(impl->pageProxy.get())));
2873
2874         int length = WKStringGetMaximumUTF8CStringSize(userAgentString.get());
2875         OwnArrayPtr<char> buffer = adoptArrayPtr(new char[length]);
2876         WKStringGetUTF8CString(userAgentString.get(), buffer.get(), length);
2877         impl->userAgent = buffer.get();
2878     }
2879
2880     return impl->userAgent;
2881 }
2882 Eina_Bool ewk_view_custom_header_add(const Evas_Object* ewkView, const char* name, const char* value)
2883 {
2884 #if ENABLE(TIZEN_CUSTOM_HEADERS)
2885     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
2886     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
2887
2888     WKRetainPtr<WKStringRef> customHeaderName(AdoptWK, WKStringCreateWithUTF8CString(name));
2889     WKRetainPtr<WKStringRef> customHeaderValue(AdoptWK, WKStringCreateWithUTF8CString(value));
2890
2891     WKPageAddCustomHeader(toAPI(impl->pageProxy.get()), customHeaderName.get(), customHeaderValue.get());
2892     return true;
2893 #else
2894     ERR("TIZEN_CUSTOM_HEADERS not enabled!");
2895     return false;
2896 #endif
2897 }
2898
2899 Eina_Bool ewk_view_custom_header_remove(const Evas_Object* ewkView, const char* name)
2900 {
2901 #if ENABLE(TIZEN_CUSTOM_HEADERS)
2902     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
2903     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
2904
2905     WKRetainPtr<WKStringRef> customHeaderName(AdoptWK, WKStringCreateWithUTF8CString(name));
2906
2907     WKPageRemoveCustomHeader(toAPI(impl->pageProxy.get()), customHeaderName.get());
2908     return true;
2909 #else
2910     ERR("TIZEN_CUSTOM_HEADERS not enabled!");
2911     return false;
2912 #endif
2913 }
2914
2915 Eina_Bool ewk_view_custom_header_clear(const Evas_Object* ewkView)
2916 {
2917 #if ENABLE(TIZEN_CUSTOM_HEADERS)
2918     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
2919     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
2920
2921     WKPageClearCustomHeaders(toAPI(impl->pageProxy.get()));
2922     return true;
2923 #else
2924     ERR("TIZEN_CUSTOM_HEADERS not enabled!");
2925     return false;
2926 #endif
2927 }
2928
2929 #if ENABLE(TIZEN_WEBKIT2_VIEW_VISIBILITY)
2930 Eina_Bool ewk_view_visibility_set(Evas_Object* ewkView, Eina_Bool enable)
2931 {
2932     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
2933     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
2934
2935 #if ENABLE(TIZEN_DRAG_SUPPORT)
2936     if (impl->pageClient->isDragMode())
2937         impl->pageClient->setDragMode(false);
2938 #endif
2939
2940     impl->pageClient->setIsVisible(enable);
2941     return true;
2942 }
2943 #endif
2944
2945 #if ENABLE(TIZEN_BACKGROUND_DISK_CACHE)
2946 Eina_Bool ewk_view_foreground_set(Evas_Object* ewkView, Eina_Bool enable)
2947 {
2948     return true;
2949 }
2950 #endif
2951
2952 Evas_Object* ewk_view_screenshot_contents_get(const Evas_Object* ewkView, Eina_Rectangle viewArea, float scaleFactor, Evas* canvas)
2953 {
2954     EINA_SAFETY_ON_NULL_RETURN_VAL(canvas, 0);
2955
2956     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
2957     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
2958
2959     WKRect rect;
2960     rect.origin.x = viewArea.x;
2961     rect.origin.y = viewArea.y;
2962     rect.size.width = viewArea.w;
2963     rect.size.height = viewArea.h;
2964
2965     WKRetainPtr<WKImageRef> snapshot(AdoptWK, WKPageCreateSnapshot(toAPI(impl->pageProxy.get()), rect, scaleFactor));
2966     if (!snapshot.get())
2967         return 0;
2968
2969     RefPtr<cairo_surface_t> screenshotSurface = adoptRef(WKImageCreateCairoSurface(snapshot.get()));
2970
2971     Evas_Object* screenshotImage = evas_object_image_add(canvas);
2972     int surfaceWidth = cairo_image_surface_get_width(screenshotSurface.get());
2973     int surfaceHeight = cairo_image_surface_get_height(screenshotSurface.get());
2974     evas_object_image_size_set(screenshotImage, surfaceWidth, surfaceHeight);
2975     evas_object_image_colorspace_set(screenshotImage, EVAS_COLORSPACE_ARGB8888);
2976
2977     uint8_t* pixels = static_cast<uint8_t*>(evas_object_image_data_get(screenshotImage, true));
2978
2979     RefPtr<cairo_surface_t> imageSurface = adoptRef(cairo_image_surface_create_for_data(pixels, CAIRO_FORMAT_RGB24, surfaceWidth, surfaceHeight, cairo_format_stride_for_width(CAIRO_FORMAT_RGB24, surfaceWidth)));
2980     RefPtr<cairo_t> cairo = adoptRef(cairo_create(imageSurface.get()));
2981
2982     cairo_set_source_surface(cairo.get(), screenshotSurface.get(), 0, 0);
2983     cairo_rectangle(cairo.get(), 0, 0, surfaceWidth, surfaceHeight);
2984     cairo_fill(cairo.get());
2985
2986     evas_object_image_smooth_scale_set(screenshotImage, true);
2987     evas_object_size_hint_min_set(screenshotImage, surfaceWidth, surfaceHeight);
2988     evas_object_resize(screenshotImage, surfaceWidth, surfaceHeight);
2989     evas_object_image_fill_set(screenshotImage, 0, 0, surfaceWidth, surfaceHeight);
2990     evas_object_image_data_set(screenshotImage, pixels);
2991
2992     return screenshotImage;
2993 }
2994
2995 unsigned int ewk_view_inspector_server_start(Evas_Object* ewkView, unsigned int port)
2996 {
2997 #if ENABLE(TIZEN_REMOTE_WEB_INSPECTOR)
2998     EWK_VIEW_SD_GET_OR_RETURN(ewkView, sd, 0);
2999     EWK_VIEW_IMPL_GET_OR_RETURN(sd, impl, 0);
3000
3001     return impl->pageProxy->startInspectorServer(port);
3002 #else
3003     LOG_ERROR("TIZEN_REMOTE_WEB_INSPECTOR is disabled.\n");
3004     return 0;
3005 #endif
3006 }
3007
3008 Eina_Bool ewk_view_inspector_server_stop(Evas_Object* ewkView)
3009 {
3010 #if ENABLE(TIZEN_REMOTE_WEB_INSPECTOR)
3011     EWK_VIEW_SD_GET_OR_RETURN(ewkView, sd, false);
3012     EWK_VIEW_IMPL_GET_OR_RETURN(sd, impl, false);
3013
3014     return impl->pageProxy->stopInspectorServer();
3015 #else
3016     LOG_ERROR("TIZEN_REMOTE_WEB_INSPECTOR is disabled.\n");
3017     return false;
3018 #endif
3019 }
3020
3021 void ewk_view_scroll_by(Evas_Object* ewkView, int deltaX, int deltaY)
3022 {
3023     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3024     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3025
3026     WKPageScrollBy(toAPI(impl->pageProxy.get()), toAPI(IntSize(deltaX, deltaY)));
3027 }
3028
3029 Eina_Bool ewk_view_scroll_pos_get(Evas_Object* ewkView, int* x, int* y)
3030 {
3031     if (x)
3032         *x = 0;
3033     if (y)
3034         *y = 0;
3035     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3036     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3037
3038     IntPoint scrollPosition = impl->pageClient->scrollPosition();
3039     if (x)
3040         *x = scrollPosition.x();
3041     if (y)
3042         *y = scrollPosition.y();
3043
3044     return true;
3045 }
3046
3047 Eina_Bool ewk_view_scroll_set(Evas_Object* ewkView, int x, int y)
3048 {
3049     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3050     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3051
3052     impl->pageProxy->scrollMainFrameTo(IntPoint(x, y));
3053     return true;
3054 }
3055
3056 Eina_Bool ewk_view_scroll_size_get(const Evas_Object* ewkView, int* width, int* height)
3057 {
3058     if (width)
3059         *width = 0;
3060     if (height)
3061         *height = 0;
3062     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3063     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3064
3065     IntSize contentsSize = impl->pageProxy->contentsSize();
3066 #if ENABLE(TIZEN_WEBKIT2_TILED_BACKING_STORE)
3067     contentsSize.scale(impl->pageClient->scaleFactor());
3068 #endif
3069
3070     if (width && contentsSize.width() > smartData->view.w)
3071         *width = contentsSize.width() - smartData->view.w;
3072     if (height && contentsSize.height() > smartData->view.h)
3073         *height = contentsSize.height() - smartData->view.h;
3074     return true;
3075 }
3076
3077 #if ENABLE(TIZEN_WEBKIT2_NOTIFY_POPUP_REPLY_STATUS)
3078 void ewkViewNotifyPopupReplyWaitingState(Evas_Object* ewkView, bool isWaiting)
3079 {
3080     if (isWaiting)
3081         evas_object_smart_callback_call(ewkView, "popup,reply,wait,start", 0);
3082     else
3083         evas_object_smart_callback_call(ewkView, "popup,reply,wait,finish", 0);
3084 }
3085 #endif
3086
3087 bool ewkViewRunJavaScriptAlert(Evas_Object* ewkView, WKStringRef alertText)
3088 {
3089     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3090     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3091     if (!impl->alertContext || !impl->alertContext->javascriptAlertCallback)
3092         return false;
3093     EINA_SAFETY_ON_FALSE_RETURN_VAL(impl->alertContext->ewkView == ewkView, false);
3094
3095     impl->isWaitingForJavaScriptPopupReply = true;
3096     int length = WKStringGetMaximumUTF8CStringSize(alertText);
3097     OwnArrayPtr<char> alertTextBuffer = adoptArrayPtr(new char[length]);
3098     WKStringGetUTF8CString(alertText, alertTextBuffer.get(), length);
3099     return impl->alertContext->javascriptAlertCallback(impl->alertContext->ewkView, alertTextBuffer.get(), impl->alertContext->userData) == EINA_TRUE;
3100 }
3101
3102 bool ewkViewRunJavaScriptConfirm(Evas_Object* ewkView, WKStringRef message)
3103 {
3104     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3105     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3106     if (!impl->confirmContext || !impl->confirmContext->javascriptConfirmCallback)
3107         return false;
3108     EINA_SAFETY_ON_FALSE_RETURN_VAL(impl->confirmContext->ewkView == ewkView, false);
3109
3110     impl->isWaitingForJavaScriptPopupReply = true;
3111     int length = WKStringGetMaximumUTF8CStringSize(message);
3112     OwnArrayPtr<char> messageBuffer = adoptArrayPtr(new char[length]);
3113     WKStringGetUTF8CString(message, messageBuffer.get(), length);
3114     return impl->confirmContext->javascriptConfirmCallback(impl->confirmContext->ewkView, messageBuffer.get(), impl->confirmContext->userData) == EINA_TRUE;
3115 }
3116
3117 bool ewkViewRunJavaScriptPrompt(Evas_Object* ewkView, WKStringRef message, WKStringRef defaultValue)
3118 {
3119     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3120     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3121     if (!impl->promptContext || !impl->promptContext->javascriptPromptCallback)
3122         return false;
3123     EINA_SAFETY_ON_FALSE_RETURN_VAL(impl->promptContext->ewkView == ewkView, false);
3124
3125     impl->isWaitingForJavaScriptPopupReply = true;
3126     int length = WKStringGetMaximumUTF8CStringSize(message);
3127     OwnArrayPtr<char> messageBuffer = adoptArrayPtr(new char[length]);
3128     WKStringGetUTF8CString(message, messageBuffer.get(), length);
3129     length = WKStringGetMaximumUTF8CStringSize(defaultValue);
3130     OwnArrayPtr<char> defaultValueBuffer = adoptArrayPtr(new char[length]);
3131     WKStringGetUTF8CString(defaultValue, defaultValueBuffer.get(), length);
3132     return impl->promptContext->javascriptPromptCallback(impl->promptContext->ewkView, messageBuffer.get(), defaultValueBuffer.get(), impl->promptContext->userData) == EINA_TRUE;
3133 }
3134
3135 #if ENABLE(TIZEN_SUPPORT_BEFORE_UNLOAD_CONFIRM_PANEL)
3136 bool ewk_view_run_before_unload_confirm_panel(Evas_Object* ewkView, WKStringRef message)
3137 {
3138     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3139     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3140     if (!impl->beforeUnloadConfirmPanelContext || !impl->beforeUnloadConfirmPanelContext->beforeUnloadConfirmPanelCallback)
3141         return false;
3142     EINA_SAFETY_ON_FALSE_RETURN_VAL(impl->beforeUnloadConfirmPanelContext->ewkView == ewkView, false);
3143
3144     impl->isWaitingForJavaScriptPopupReply = true;
3145     int length = WKStringGetMaximumUTF8CStringSize(message);
3146     OwnArrayPtr<char> messageBuffer = adoptArrayPtr(new char[length]);
3147     WKStringGetUTF8CString(message, messageBuffer.get(), length);
3148     bool result = impl->beforeUnloadConfirmPanelContext->beforeUnloadConfirmPanelCallback(impl->beforeUnloadConfirmPanelContext->ewkView, messageBuffer.get(), impl->beforeUnloadConfirmPanelContext->userData) == EINA_TRUE;
3149     return result;
3150 }
3151 #endif
3152
3153 bool ewkViewRunOpenPanel(Evas_Object* ewkView, WKOpenPanelParametersRef parameters, WKOpenPanelResultListenerRef listener)
3154 {
3155     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3156     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3157     if (!impl->openpanelContext || !impl->openpanelContext->openPanelCallback)
3158         return false;
3159
3160     EINA_SAFETY_ON_FALSE_RETURN_VAL(impl->openpanelContext->ewkView == ewkView, false);
3161
3162     impl->openPanelListener = listener;
3163
3164     Eina_Bool allowMultipleFiles = WKOpenPanelParametersGetAllowsMultipleFiles(parameters) ? EINA_TRUE : EINA_FALSE;
3165     Eina_List* acceptedMimeTypes = 0;
3166     WKRetainPtr<WKArrayRef> array(AdoptWK, WKOpenPanelParametersCopyAcceptedMIMETypes(parameters));
3167     size_t len = WKArrayGetSize(array.get());
3168     for (size_t i = 0; i < len; i++) {
3169         WKTypeRef item = WKArrayGetItemAtIndex(array.get(), i);
3170         if (WKGetTypeID(item) != WKStringGetTypeID())
3171             continue;
3172         WKStringRef mime = static_cast<WKStringRef>(item);
3173         int length = WKStringGetMaximumUTF8CStringSize(mime);
3174         char* buffer = new char[length];
3175         WKStringGetUTF8CString(mime, buffer, length);
3176         acceptedMimeTypes = eina_list_append(acceptedMimeTypes, static_cast<const void*>(const_cast<const char*>(buffer)));
3177     }
3178     const char* capture = 0;
3179 #if ENABLE(MEDIA_CAPTURE)
3180     WKRetainPtr<WKStringRef> captureRef(AdoptWK, WKOpenPanelParametersCopyCapture(parameters));
3181     capture = eina_stringshare_add(toImpl(captureRef.get())->string().utf8().data());
3182 #endif
3183     bool result = impl->openpanelContext->openPanelCallback(impl->openpanelContext->ewkView, allowMultipleFiles, acceptedMimeTypes, capture, 0);
3184     if (!acceptedMimeTypes)
3185         return result;
3186
3187     Eina_List* list;
3188     void* data = 0;
3189     EINA_LIST_FOREACH(acceptedMimeTypes, list, data)
3190         delete[] (char*)data;
3191     eina_list_free(acceptedMimeTypes);
3192     return result;
3193 }
3194
3195 void ewk_view_javascript_alert_callback_set(Evas_Object* ewkView, Ewk_View_JavaScript_Alert_Callback callback, void* userData)
3196 {
3197     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3198     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3199
3200     if (!impl->alertContext)
3201         impl->alertContext = adoptPtr<Ewk_View_Callback_Context>(new Ewk_View_Callback_Context);
3202     impl->alertContext->javascriptAlertCallback = callback;
3203     impl->alertContext->ewkView = ewkView;
3204     impl->alertContext->userData = userData;
3205 }
3206
3207 void ewk_view_javascript_alert_reply(Evas_Object* ewkView)
3208 {
3209     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3210     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3211
3212     WKPageReplyJavaScriptAlert(toAPI(impl->page()));
3213     impl->isWaitingForJavaScriptPopupReply = false;
3214 }
3215
3216 void ewk_view_javascript_confirm_callback_set(Evas_Object* ewkView, Ewk_View_JavaScript_Confirm_Callback callback, void* userData)
3217 {
3218     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3219     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3220
3221     if (!impl->confirmContext)
3222         impl->confirmContext = adoptPtr<Ewk_View_Callback_Context>(new Ewk_View_Callback_Context);
3223     impl->confirmContext->javascriptConfirmCallback = callback;
3224     impl->confirmContext->ewkView = ewkView;
3225     impl->confirmContext->userData = userData;
3226 }
3227
3228 void ewk_view_javascript_confirm_reply(Evas_Object* ewkView, Eina_Bool result)
3229 {
3230     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3231     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3232
3233     WKPageReplyJavaScriptConfirm(toAPI(impl->page()), result == EINA_TRUE);
3234     impl->isWaitingForJavaScriptPopupReply = false;
3235 }
3236
3237 void ewk_view_javascript_prompt_callback_set(Evas_Object* ewkView, Ewk_View_JavaScript_Prompt_Callback callback, void* userData)
3238 {
3239     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3240     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3241
3242     if (!impl->promptContext)
3243         impl->promptContext = adoptPtr<Ewk_View_Callback_Context>(new Ewk_View_Callback_Context);
3244     impl->promptContext->javascriptPromptCallback = callback;
3245     impl->promptContext->ewkView = ewkView;
3246     impl->promptContext->userData = userData;
3247 }
3248
3249 void ewk_view_javascript_prompt_reply(Evas_Object* ewkView, const char* result)
3250 {
3251     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3252     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3253
3254     WKRetainPtr<WKStringRef> resultString(AdoptWK, WKStringCreateWithUTF8CString(result));
3255     WKPageReplyJavaScriptPrompt(toAPI(impl->page()), result ? resultString.get() : 0);
3256     impl->isWaitingForJavaScriptPopupReply = false;
3257 }
3258
3259 #if ENABLE(TIZEN_SUPPORT_BEFORE_UNLOAD_CONFIRM_PANEL)
3260 void ewk_view_before_unload_confirm_panel_callback_set(Evas_Object* ewkView, Ewk_View_Before_Unload_Confirm_Panel_Callback callback, void* userData)
3261 {
3262     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3263     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3264
3265     if (!impl->beforeUnloadConfirmPanelContext)
3266         impl->beforeUnloadConfirmPanelContext = adoptPtr<Ewk_View_Callback_Context>(new Ewk_View_Callback_Context);
3267     impl->beforeUnloadConfirmPanelContext->beforeUnloadConfirmPanelCallback = callback;
3268     impl->beforeUnloadConfirmPanelContext->ewkView = ewkView;
3269     impl->beforeUnloadConfirmPanelContext->userData = userData;
3270 }
3271
3272 void ewk_view_before_unload_confirm_panel_reply(Evas_Object* ewkView, Eina_Bool result)
3273 {
3274     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3275     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3276
3277     WKPageReplyBeforeUnloadConfirmPanel(toAPI(impl->page()), result == EINA_TRUE);
3278     impl->isWaitingForJavaScriptPopupReply = false;
3279 }
3280 #endif
3281
3282 void ewk_view_open_panel_callback_set(Evas_Object* ewkView, Ewk_View_Open_Panel_Callback callback, void* userData)
3283 {
3284     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3285     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3286
3287     if (!impl->openpanelContext)
3288         impl->openpanelContext = adoptPtr<Ewk_View_Callback_Context>(new Ewk_View_Callback_Context);
3289
3290     impl->openpanelContext->openPanelCallback = callback;
3291     impl->openpanelContext->ewkView = ewkView;
3292     impl->openpanelContext->userData = userData;
3293 }
3294
3295 void ewk_view_open_panel_reply(Evas_Object* ewkView, Eina_List* fileUrls, Eina_Bool result)
3296 {
3297     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3298     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3299
3300     if (!impl->openPanelListener)
3301         return;
3302
3303     unsigned int size = eina_list_count(fileUrls);
3304     if ((result == EINA_FALSE) || (size == 0)) {
3305         WKOpenPanelResultListenerCancel(impl->openPanelListener);
3306         impl->openPanelListener = 0;
3307         return;
3308     }
3309
3310     WKTypeRef* items = new WKTypeRef[size];
3311     Eina_List* list;
3312     void* data;
3313     unsigned int i = 0;
3314     KURL base(KURL(), "file://");
3315     EINA_LIST_FOREACH(fileUrls, list, data) {
3316         KURL url(base, String::fromUTF8(static_cast<char*>(data)));
3317         items[i++] = WKURLCreateWithUTF8CString(url.string().utf8().data());
3318     }
3319     WKRetainPtr<WKArrayRef> filesArray(AdoptWK, WKArrayCreate(items, size));
3320     WKOpenPanelResultListenerChooseFiles(impl->openPanelListener, filesArray.get());
3321     impl->openPanelListener = 0;
3322     delete [] items;
3323     eina_list_free(fileUrls);
3324 }
3325
3326 #if ENABLE(TIZEN_SUPPORT_WEBAPP_META_TAG)
3327 static void didGetWebAppCapable(WKBooleanRef capable, WKErrorRef, void* context)
3328 {
3329     EINA_SAFETY_ON_NULL_RETURN(capable);
3330     EINA_SAFETY_ON_NULL_RETURN(context);
3331
3332     Ewk_View_Callback_Context* webAppContext = static_cast<Ewk_View_Callback_Context*>(context);
3333
3334     ASSERT(webAppContext->webAppCapableCallback);
3335
3336     TIZEN_LOGI("webAppCapableCallback exist. capable(%b)", capable);
3337     if (capable)
3338         webAppContext->webAppCapableCallback(toImpl(capable)->value(), webAppContext->userData);
3339     else
3340         webAppContext->webAppCapableCallback(0, webAppContext->userData);
3341
3342     delete webAppContext;
3343 }
3344
3345 static void didGetWebAppIconURL(WKStringRef iconURL, WKErrorRef, void* context)
3346 {
3347     EINA_SAFETY_ON_NULL_RETURN(iconURL);
3348     EINA_SAFETY_ON_NULL_RETURN(context);
3349
3350     Ewk_View_Callback_Context* webAppContext = static_cast<Ewk_View_Callback_Context*>(context);
3351
3352     EWK_VIEW_SD_GET_OR_RETURN(webAppContext->ewkView, smartData);
3353     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3354
3355     ASSERT(webAppContext->webAppIconURLCallback);
3356
3357     if (iconURL) {
3358         impl->webAppIconURL = toImpl(iconURL)->string().utf8().data();
3359         webAppContext->webAppIconURLCallback(impl->webAppIconURL, webAppContext->userData);
3360     } else
3361         webAppContext->webAppIconURLCallback(0, webAppContext->userData);
3362
3363     delete webAppContext;
3364 }
3365
3366 static void didGetWebAppIconURLs(WKDictionaryRef iconURLs, WKErrorRef, void* context)
3367 {
3368     EINA_SAFETY_ON_NULL_RETURN(iconURLs);
3369     EINA_SAFETY_ON_NULL_RETURN(context);
3370
3371     Ewk_View_Callback_Context* webAppContext = static_cast<Ewk_View_Callback_Context*>(context);
3372
3373     EWK_VIEW_SD_GET_OR_RETURN(webAppContext->ewkView, smartData);
3374     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3375
3376     ASSERT(webAppContext->webAppIconURLsCallback);
3377
3378     if (impl->webAppIconURLs) {
3379         void* data = 0;
3380         EINA_LIST_FREE(impl->webAppIconURLs, data)
3381             ewkWebAppIconDataDelete(static_cast<Ewk_Web_App_Icon_Data*>(data));
3382     }
3383
3384     WKRetainPtr<WKArrayRef> wkKeys(AdoptWK, WKDictionaryCopyKeys(iconURLs));
3385     size_t iconURLCount = WKArrayGetSize(wkKeys.get());
3386     for (size_t i = 0; i < iconURLCount; i++) {
3387         WKStringRef urlRef = static_cast<WKStringRef>(WKArrayGetItemAtIndex(wkKeys.get(), i));
3388         WKStringRef sizeRef = static_cast<WKStringRef>(WKDictionaryGetItemForKey(iconURLs, urlRef));
3389         impl->webAppIconURLs = eina_list_append(impl->webAppIconURLs, ewkWebAppIconDataCreate(sizeRef, urlRef));
3390     }
3391     TIZEN_LOGI("webAppIconURLsCallback exist. found %d icon urls", iconURLCount);
3392
3393     webAppContext->webAppIconURLsCallback(impl->webAppIconURLs, webAppContext->userData);
3394     delete webAppContext;
3395 }
3396 #endif
3397
3398 Eina_Bool ewk_view_web_application_capable_get(Evas_Object* ewkView, Ewk_Web_App_Capable_Get_Callback callback, void* userData)
3399 {
3400 #if ENABLE(TIZEN_SUPPORT_WEBAPP_META_TAG)
3401     EINA_SAFETY_ON_NULL_RETURN_VAL(callback, false);
3402     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
3403     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
3404
3405     TIZEN_LOGI("callback(%d), userData(%d)", callback, userData);
3406     Ewk_View_Callback_Context* context = new Ewk_View_Callback_Context;
3407     context->webAppCapableCallback = callback;
3408     context->ewkView = ewkView;
3409     context->userData = userData;
3410
3411     WKPageGetWebAppCapable(toAPI(impl->pageProxy.get()), context, didGetWebAppCapable);
3412
3413     return true;
3414 #else
3415     return false;
3416 #endif
3417 }
3418
3419 Eina_Bool ewk_view_web_application_icon_url_get(Evas_Object* ewkView, Ewk_Web_App_Icon_URL_Get_Callback callback, void* userData)
3420 {
3421 #if ENABLE(TIZEN_SUPPORT_WEBAPP_META_TAG)
3422     EINA_SAFETY_ON_NULL_RETURN_VAL(callback, false);
3423     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
3424     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
3425
3426     Ewk_View_Callback_Context* context = new Ewk_View_Callback_Context;
3427     context->webAppIconURLCallback = callback;
3428     context->ewkView = ewkView;
3429     context->userData = userData;
3430
3431     WKPageGetWebAppIconURL(toAPI(impl->page()), context, didGetWebAppIconURL);
3432
3433     return true;
3434 #else
3435     return 0;
3436 #endif
3437 }
3438
3439 Eina_Bool ewk_view_web_application_icon_urls_get(Evas_Object* ewkView, Ewk_Web_App_Icon_URLs_Get_Callback callback, void* userData)
3440 {
3441 #if ENABLE(TIZEN_SUPPORT_WEBAPP_META_TAG)
3442     EINA_SAFETY_ON_NULL_RETURN_VAL(callback, false);
3443     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
3444     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
3445
3446     TIZEN_LOGI("callback(%d), userData(%d)", callback, userData);
3447     Ewk_View_Callback_Context* context = new Ewk_View_Callback_Context;
3448     context->webAppIconURLsCallback = callback;
3449     context->ewkView = ewkView;
3450     context->userData = userData;
3451
3452     WKPageGetWebAppIconURLs(toAPI(impl->page()), context, didGetWebAppIconURLs);
3453
3454     return true;
3455 #else
3456     UNUSED_PARAM(ewkView);
3457     UNUSED_PARAM(callback);
3458     UNUSED_PARAM(userData);
3459     return 0;
3460 #endif
3461 }
3462
3463 Eina_Bool ewk_view_command_execute(Evas_Object* ewkView, const char* command, const char* value)
3464 {
3465     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3466     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3467     EINA_SAFETY_ON_NULL_RETURN_VAL(command, false);
3468
3469     WKRetainPtr<WKStringRef> commandString(AdoptWK, WKStringCreateWithUTF8CString(command));
3470     WKRetainPtr<WKStringRef> valueString(AdoptWK, WKStringCreateWithUTF8CString(value));
3471     WKPageExecuteCommandWithArgument(toAPI(impl->pageProxy.get()), commandString.get(), valueString.get());
3472
3473     return true;
3474 }
3475
3476 Eina_Bool ewk_view_contents_size_get(Evas_Object* ewkView, Evas_Coord* width, Evas_Coord* height)
3477 {
3478     if (width)
3479         *width = 0;
3480     if (height)
3481         *height = 0;
3482
3483     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3484     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3485
3486     IntSize contentsSize = impl->pageProxy->contentsSize();
3487
3488     if (width)
3489         *width = contentsSize.width();
3490     if (height)
3491         *height = contentsSize.height();
3492
3493     return true;
3494 }
3495
3496 Eina_Bool ewk_view_contents_pdf_get_temp(Evas_Object* ewkView, int width, int height, const char* fileName)
3497 {
3498 #if ENABLE(TIZEN_MOBILE_WEB_PRINT)
3499     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3500     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3501     EINA_SAFETY_ON_NULL_RETURN_VAL(fileName, false);
3502
3503     IntSize contentsSize = impl->pageProxy->contentsSize();
3504     WKPageGetSnapshotPdfFile(toAPI(impl->pageProxy.get()), toAPI(IntSize(width, height)), toAPI(IntSize(contentsSize.width(), contentsSize.height())), WKStringCreateWithUTF8CString(fileName));
3505
3506     return true;
3507 #else
3508     return false;
3509 #endif
3510 }
3511
3512 Eina_Bool ewk_view_contents_pdf_get(Evas_Object* ewkView, int width, int height, const char* fileName)
3513 {
3514 #if ENABLE(TIZEN_MOBILE_WEB_PRINT)
3515     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3516     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3517     EINA_SAFETY_ON_NULL_RETURN_VAL(fileName, false);
3518
3519     IntSize contentsSize = impl->pageProxy->contentsSize();
3520     WKPageGetSnapshotPdfFile(toAPI(impl->pageProxy.get()), toAPI(IntSize(width, height)), toAPI(IntSize(contentsSize.width(), contentsSize.height())), WKStringCreateWithUTF8CString(fileName));
3521
3522     return true;
3523 #else
3524     return false;
3525 #endif
3526 }
3527
3528 static void runJavaScriptCallback(WKSerializedScriptValueRef scriptValue, WKErrorRef error, void* context)
3529 {
3530     EINA_SAFETY_ON_NULL_RETURN(context);
3531     Ewk_View_Callback_Context* callbackContext = static_cast<Ewk_View_Callback_Context*>(context);
3532
3533     if (!callbackContext->scriptExecuteCallback) {
3534         delete callbackContext;
3535         return;
3536     }
3537
3538     JSGlobalContextRef jsGlobalContext = ewkViewGetJavascriptGlobalContext(callbackContext->ewkView);
3539
3540     if (scriptValue) {
3541         JSValueRef value = WKSerializedScriptValueDeserialize(scriptValue, jsGlobalContext, 0);
3542         JSRetainPtr<JSStringRef> jsStringValue(JSValueToStringCopy(jsGlobalContext, value, 0));
3543         size_t length = JSStringGetMaximumUTF8CStringSize(jsStringValue.get());
3544         OwnArrayPtr<char> buffer = adoptArrayPtr(new char[length]);
3545         JSStringGetUTF8CString(jsStringValue.get(), buffer.get(), length);
3546         callbackContext->scriptExecuteCallback(callbackContext->ewkView, buffer.get(), callbackContext->userData);
3547     } else
3548         callbackContext->scriptExecuteCallback(callbackContext->ewkView, 0, callbackContext->userData);
3549
3550     delete callbackContext;
3551 }
3552
3553 Eina_Bool ewk_view_script_execute(Evas_Object* ewkView, const char* script, Ewk_View_Script_Execute_Callback callback, void* user_data)
3554 {
3555     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3556     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3557     EINA_SAFETY_ON_NULL_RETURN_VAL(script, false);
3558     EINA_SAFETY_ON_NULL_RETURN_VAL(impl->pageClient, false);
3559
3560     Ewk_View_Callback_Context* context = new Ewk_View_Callback_Context;
3561     context->scriptExecuteCallback = callback;
3562     context->ewkView = ewkView;
3563     context->userData = user_data;
3564     WKRetainPtr<WKStringRef> scriptString(AdoptWK, WKStringCreateWithUTF8CString(script));
3565     WKPageRunJavaScriptInMainFrame(toAPI(impl->pageProxy.get()), scriptString.get(), context, runJavaScriptCallback);
3566
3567     return true;
3568 }
3569
3570 #if ENABLE(TIZEN_WEB_STORAGE) && ENABLE(TIZEN_WEBKIT2_NUMBER_TYPE_SUPPORT)
3571 static void didGetWebStorageQuota(WKUInt32Ref quota, WKErrorRef error, void* context)
3572 {
3573     Ewk_View_Callback_Context* storageContext = static_cast<Ewk_View_Callback_Context*>(context);
3574
3575     if (quota)
3576         storageContext->webStorageQuotaCallback(toImpl(quota)->value(), storageContext->userData);
3577     else
3578         storageContext->webStorageQuotaCallback(0, storageContext->userData);
3579
3580     delete storageContext;
3581 }
3582 #endif
3583
3584 Eina_Bool ewk_view_web_storage_quota_get(const Evas_Object* ewkView, Ewk_Web_Storage_Quota_Get_Callback resultCallback, void* userData)
3585 {
3586 #if ENABLE(TIZEN_WEB_STORAGE) && ENABLE(TIZEN_WEBKIT2_NUMBER_TYPE_SUPPORT)
3587     EINA_SAFETY_ON_NULL_RETURN_VAL(ewkView, false);
3588     EINA_SAFETY_ON_NULL_RETURN_VAL(resultCallback, false);
3589     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3590     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3591     TIZEN_LOGI("resultCallback (%p)", resultCallback);
3592
3593     Ewk_View_Callback_Context* context = new Ewk_View_Callback_Context;
3594     context->webStorageQuotaCallback = resultCallback;
3595     context->userData = userData;
3596
3597     WKPageRef pageRef = toAPI(impl->page());
3598     WKPageGetWebStorageQuota(pageRef, context, didGetWebStorageQuota);
3599
3600     return true;
3601 #else
3602     return false;
3603 #endif
3604 }
3605
3606 Eina_Bool ewk_view_web_storage_quota_set(Evas_Object* ewkView, uint32_t quota)
3607 {
3608 #if ENABLE(TIZEN_WEB_STORAGE)
3609     EINA_SAFETY_ON_NULL_RETURN_VAL(ewkView, false);
3610     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3611     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3612
3613     TIZEN_LOGI("quota (%d)", quota);
3614     WKPageRef pageRef = toAPI(impl->page());
3615     WKPageSetWebStorageQuota(pageRef, quota);
3616
3617     return true;
3618 #else
3619     return false;
3620 #endif
3621 }
3622
3623 static void getContentsAsStringCallback(WKStringRef plain_text, WKErrorRef error, void* context)
3624 {
3625     EINA_SAFETY_ON_NULL_RETURN(context);
3626     Ewk_View_Callback_Context* callbackContext = static_cast<Ewk_View_Callback_Context*>(context);
3627
3628     ASSERT(callbackContext->plainTextGetCallback);
3629
3630     if (plain_text) {
3631         size_t length = WKStringGetMaximumUTF8CStringSize(plain_text);
3632         OwnArrayPtr<char> buffer = adoptArrayPtr(new char[length]);
3633         WKStringGetUTF8CString(plain_text, buffer.get(), length);
3634
3635         callbackContext->plainTextGetCallback(callbackContext->ewkView, buffer.get(), callbackContext->userData);
3636     } else
3637         callbackContext->plainTextGetCallback(callbackContext->ewkView, 0, callbackContext->userData);
3638
3639     delete callbackContext;
3640 }
3641
3642 Eina_Bool ewk_view_plain_text_get(Evas_Object* ewkView, Ewk_View_Plain_Text_Get_Callback callback, void* user_data)
3643 {
3644     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3645     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3646     EINA_SAFETY_ON_NULL_RETURN_VAL(callback, false);
3647     EINA_SAFETY_ON_NULL_RETURN_VAL(impl->pageClient, false);
3648
3649     Ewk_View_Callback_Context* context = new Ewk_View_Callback_Context;
3650     context->plainTextGetCallback = callback;
3651     context->ewkView = ewkView;
3652     context->userData = user_data;
3653     WKPageGetContentsAsString(toAPI(impl->pageProxy.get()), context, getContentsAsStringCallback);
3654
3655     return true;
3656 }
3657
3658 #if ENABLE(TIZEN_SUPPORT_MHTML)
3659 /**
3660  * @internal
3661  * Callback function used for ewk_view_mhtml_data_get().
3662  */
3663 static void getContentsAsMHTMLCallback(WKDataRef wkData, WKErrorRef, void* context)
3664 {
3665     EINA_SAFETY_ON_NULL_RETURN(context);
3666     Ewk_View_Callback_Context* callbackContext = static_cast<Ewk_View_Callback_Context*>(context);
3667
3668     ASSERT(callbackContext->mhtmlDataGetCallback);
3669
3670     callbackContext->mhtmlDataGetCallback(callbackContext->ewkView, reinterpret_cast<const char*>(WKDataGetBytes(wkData)), callbackContext->userData);
3671
3672     delete callbackContext;
3673 }
3674
3675 Eina_Bool ewk_view_mhtml_data_get(Evas_Object* ewkView, Ewk_View_MHTML_Data_Get_Callback callback, void* user_data)
3676 {
3677     EINA_SAFETY_ON_NULL_RETURN_VAL(callback, false);
3678     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3679     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
3680
3681     Ewk_View_Callback_Context* context = new Ewk_View_Callback_Context;
3682     context->mhtmlDataGetCallback = callback;
3683     context->ewkView = ewkView;
3684     context->userData = user_data;
3685
3686     WKPageGetContentsAsMHTMLData(toAPI(impl->page()), false, context, getContentsAsMHTMLCallback);
3687
3688     return true;
3689 }
3690 #endif // ENABLE(TIZEN_SUPPORT_MHTML)
3691
3692 Ewk_Hit_Test* ewk_view_hit_test_new(Evas_Object* ewkView, int x, int y, int hitTestMode)
3693 {
3694 #if ENABLE(TIZEN_WEBKIT2_HIT_TEST)
3695     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
3696     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
3697
3698     IntPoint pointForHitTest = impl->transformFromScene().mapPoint(IntPoint(x, y));
3699     WebHitTestResult::Data hitTestResultData = impl->pageProxy->hitTestResultAtPoint(pointForHitTest, hitTestMode);
3700     Ewk_Hit_Test* hitTest = ewkHitTestCreate(hitTestResultData);
3701
3702     return hitTest;
3703 #else
3704     return 0;
3705 #endif
3706 }
3707
3708 Ewk_History* ewk_view_history_get(Evas_Object* ewkView)
3709 {
3710     EINA_SAFETY_ON_NULL_RETURN_VAL(ewkView, 0);
3711     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3712     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3713     WebPageProxy* page = impl->page();
3714     EINA_SAFETY_ON_NULL_RETURN_VAL(page, 0);
3715
3716     return ewkHistoryCreate(WKPageGetBackForwardList(toAPI(page)));
3717 }
3718
3719 Eina_Bool ewk_view_recording_surface_enable_set(Evas_Object* ewkView, Eina_Bool enable)
3720 {
3721     return false;
3722 }
3723
3724 Eina_Bool ewk_view_notification_closed(Evas_Object* ewkView, Eina_List* ewkNotifications)
3725 {
3726 #if ENABLE(TIZEN_NOTIFICATIONS)
3727     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3728     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3729     EINA_SAFETY_ON_NULL_RETURN_VAL(impl->context, false);
3730
3731     TIZEN_LOGI("ewkNotifications (%p)", ewkNotifications);
3732     if (!eina_list_count(ewkNotifications))
3733         return false;
3734
3735     Eina_List* listIterator = 0;
3736     void* data = 0;
3737     Vector<WKTypeRef> ids;
3738     EINA_LIST_FOREACH(ewkNotifications, listIterator, data) {
3739         Ewk_Notification* notification = static_cast<Ewk_Notification*>(data);
3740         WKUInt64Ref idRef = WKUInt64Create(ewk_notification_id_get(notification));
3741         ids.append(idRef);
3742         impl->notifications = eina_list_remove(impl->notifications, notification);
3743     }
3744
3745     WKRetainPtr<WKArrayRef> notificationIDsArray(AdoptWK, WKArrayCreate(ids.data(), ids.size()));
3746     WKNotificationManagerRef notificationManager = WKContextGetNotificationManager(impl->context->wkContext());
3747     WKNotificationManagerProviderDidCloseNotifications(notificationManager, notificationIDsArray.get());
3748     ewkNotificationDeleteNotificationList(ewkNotifications);
3749
3750     return true;
3751 #else
3752     return false;
3753 #endif
3754 }
3755
3756 #if ENABLE(TIZEN_WEBKIT2_POPUP_INTERNAL)
3757 static Eina_List* createPopupMenuList(const Vector<WebPopupItem>& items)
3758 {
3759     Eina_List* popupItems = 0;
3760     size_t size = items.size();
3761     for (size_t i = 0; i < size; ++i)
3762         popupItems = eina_list_append(popupItems, Ewk_Popup_Menu_Item::create(items[i]).leakPtr());
3763     TIZEN_LOGI("size : %d", size);
3764     return popupItems;
3765 }
3766
3767 static void releasePopupMenuList(Eina_List* popupMenuItems)
3768 {
3769     if (!popupMenuItems)
3770         return;
3771
3772     void* item;
3773     EINA_LIST_FREE(popupMenuItems, item)
3774         delete static_cast<Ewk_Popup_Menu_Item*>(item);
3775 }
3776 #endif
3777
3778 Eina_Bool ewk_view_popup_menu_close(Evas_Object* ewkView)
3779 {
3780     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3781     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3782     EINA_SAFETY_ON_NULL_RETURN_VAL(smartData->api, false);
3783 #if OS(TIZEN)
3784     TIZEN_LOGI("proxy : %p", impl->popupMenuProxy);
3785 #endif
3786
3787     if (!impl->popupMenuProxy)
3788         return false;
3789
3790     impl->popupMenuProxy = 0;
3791
3792     if (smartData->api->popup_menu_hide)
3793         smartData->api->popup_menu_hide(smartData);
3794 #if ENABLE(TIZEN_WEBKIT2_POPUP_INTERNAL)
3795     ewk_view_touch_events_enabled_set(ewkView, true);
3796
3797     releasePopupMenuList(impl->popupMenuItems);
3798     impl->popupMenuItems = 0;
3799 #else
3800     void* item;
3801     EINA_LIST_FREE(impl->popupMenuItems, item)
3802         delete static_cast<Ewk_Popup_Menu_Item*>(item);
3803 #endif
3804
3805     return true;
3806 }
3807
3808 Eina_Bool ewk_view_popup_menu_select(Evas_Object* ewkView, unsigned int selectedIndex)
3809 {
3810     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3811     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3812     EINA_SAFETY_ON_NULL_RETURN_VAL(impl->popupMenuProxy, false);
3813 #if OS(TIZEN)
3814     TIZEN_LOGI("proxy : %p / index : %d", impl->popupMenuProxy, selectedIndex);
3815
3816     if (!impl->popupMenuItems)
3817         return false;
3818 #endif
3819
3820     if (selectedIndex >= eina_list_count(impl->popupMenuItems))
3821         return false;
3822
3823     impl->popupMenuProxy->valueChanged(selectedIndex);
3824
3825     return true;
3826 }
3827
3828 #if ENABLE(TIZEN_WEBKIT2_POPUP_INTERNAL)
3829 void ewk_view_popup_menu_update(Evas_Object* ewkView, TextDirection textDirection, const Vector<WebPopupItem>& items, int32_t selectedIndex)
3830 {
3831     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3832     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3833     EINA_SAFETY_ON_NULL_RETURN(smartData->api);
3834     TIZEN_LOGI("proxy : %p", impl->popupMenuProxy);
3835
3836     if (!impl->popupMenuProxy)
3837         return;
3838
3839     if (!smartData->api->popup_menu_update)
3840         return;
3841
3842     releasePopupMenuList(impl->popupMenuItems);
3843     impl->popupMenuItems = createPopupMenuList(items);
3844
3845     // TODO: Instead of passing a dummy rect, updated rect should be coming from WebProcess
3846     smartData->api->popup_menu_update(smartData, IntRect(), static_cast<Ewk_Text_Direction>(textDirection), impl->popupMenuItems, selectedIndex);
3847 }
3848 #endif
3849
3850 #if ENABLE(TIZEN_MULTIPLE_SELECT)
3851 Eina_Bool ewk_view_popup_menu_multiple_select(Evas_Object* ewkView, Eina_Inarray* changeList)
3852 {
3853     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3854     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3855     EINA_SAFETY_ON_NULL_RETURN_VAL(impl->popupMenuProxy, false);
3856
3857     Vector<int> selectedIndex;
3858
3859     if (!impl->popupMenuItems)
3860         return false;
3861
3862     Eina_Iterator* itr;
3863     void* data;
3864     itr = eina_inarray_iterator_new(changeList);
3865     EINA_ITERATOR_FOREACH(itr, data)
3866     {
3867         int* pData = static_cast<int*>(data);
3868         selectedIndex.append(*pData);
3869     }
3870     eina_iterator_free(itr);
3871
3872     impl->popupMenuProxy->multipleValueChanged(selectedIndex);
3873     return true;
3874 }
3875 #endif
3876
3877 void ewk_view_orientation_send(Evas_Object* ewkView, int orientation)
3878 {
3879 #if ENABLE(TIZEN_ORIENTATION_EVENTS)
3880     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3881     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3882     TIZEN_LOGI("orientation : %d", orientation);
3883
3884     if (orientation != 0 && orientation != 90 && orientation != -90 && orientation != 180)
3885         return;
3886
3887     if (impl->orientation == orientation)
3888         return;
3889
3890     impl->orientation = orientation;
3891
3892     impl->pageProxy->sendOrientationChangeEvent(orientation);
3893 #endif
3894 }
3895
3896 void ewkViewFrameRendered(Evas_Object* ewkView)
3897 {
3898     evas_object_smart_callback_call(ewkView, "frame,rendered", 0);
3899 }
3900
3901 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
3902 Eina_Bool ewk_view_text_selection_enable_set(Evas_Object* ewkView, Eina_Bool enable)
3903 {
3904     return ewk_settings_text_selection_enabled_set(ewk_view_settings_get(ewkView), enable);
3905 }
3906
3907 Eina_Bool ewk_view_text_selection_range_get(Evas_Object* ewkView, Eina_Rectangle* leftRect, Eina_Rectangle* rightRect)
3908 {
3909     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
3910     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
3911
3912     IntRect leftSelectionRect;
3913     IntRect rightSelectionRect;
3914     if (!impl->pageProxy->getSelectionHandlers(leftSelectionRect, rightSelectionRect)) {
3915         leftRect->x = 0;
3916         leftRect->y = 0;
3917         leftRect->w = 0;
3918         leftRect->h = 0;
3919
3920         rightRect->x = 0;
3921         rightRect->y = 0;
3922         rightRect->w = 0;
3923         rightRect->h = 0;
3924         return false;
3925     }
3926
3927     AffineTransform contentToScreen = impl->transformToScene();
3928     leftSelectionRect = contentToScreen.mapRect(leftSelectionRect);
3929     rightSelectionRect = contentToScreen.mapRect(rightSelectionRect);
3930
3931     leftRect->x = leftSelectionRect.x();
3932     leftRect->y = leftSelectionRect.y();
3933     leftRect->w = leftSelectionRect.width();
3934     leftRect->h = leftSelectionRect.height();
3935
3936     rightRect->x = rightSelectionRect.x();
3937     rightRect->y = rightSelectionRect.y();
3938     rightRect->w = rightSelectionRect.width();
3939     rightRect->h = rightSelectionRect.height();
3940
3941     return true;;
3942 }
3943
3944 const char* ewk_view_text_selection_text_get(Evas_Object* ewkView)
3945 {
3946     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
3947     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
3948
3949     const CString selectedString = impl->pageProxy->getSelectionText().utf8();
3950     impl->selectedText = selectedString.data();
3951
3952     return impl->selectedText;
3953 }
3954
3955 Eina_Bool ewk_view_auto_clear_text_selection_mode_set(Evas_Object* ewkView, Eina_Bool enable)
3956 {
3957     return ewk_settings_clear_text_selection_automatically_set(ewk_view_settings_get(ewkView), enable);
3958 }
3959
3960 Eina_Bool ewk_view_auto_clear_text_selection_mode_get(Evas_Object* ewkView)
3961 {
3962     return ewk_settings_clear_text_selection_automatically_get(ewk_view_settings_get(ewkView));
3963 }
3964
3965 void ewk_view_text_selection_range_clear(Evas_Object* ewkView)
3966 {
3967     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3968     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3969
3970     impl->pageProxy->selectionRangeClear();
3971 }
3972 #endif // #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
3973
3974 #if ENABLE(TIZEN_INPUT_TAG_EXTENSION)
3975 void ewkViewInputPickerRequest(Evas_Object* ewkView, Ewk_Input_Type inputType, const String& inputValue)
3976 {
3977     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3978     EINA_SAFETY_ON_NULL_RETURN(smartData->api);
3979     EINA_SAFETY_ON_NULL_RETURN(smartData->api->input_picker_show);
3980
3981     smartData->api->input_picker_show(smartData, inputType, inputValue.utf8().data());
3982 }
3983 #endif
3984
3985 #if ENABLE(TIZEN_VIEWPORT_META_TAG)
3986 void ewkViewGetWindowFrame(Evas_Object* ewkView, int *x, int *y, int *w, int *h)
3987 {
3988     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
3989     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
3990     IntPoint drawingPosition = (IntPoint)(impl->pageClient->visibleContentRect().location() - impl->pageClient->scrollPosition());
3991     if (x)
3992         *x = drawingPosition.x();
3993     if (y)
3994         *y = drawingPosition.y();
3995     if (w)
3996         *w = impl->pageClient->visibleContentRect().width();
3997     if (h)
3998         *h = impl->pageClient->visibleContentRect().height();
3999 }
4000 #endif
4001
4002 void ewk_view_focused_input_element_value_set(Evas_Object* ewkView, const char* value)
4003 {
4004 #if ENABLE(TIZEN_INPUT_TAG_EXTENSION)
4005     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4006     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4007
4008     impl->pageProxy->setFocusedInputElementValue(String::fromUTF8(value));
4009 #endif // ENABLE(TIZEN_INPUT_TAG_EXTENSION)
4010 }
4011
4012 const char* ewk_view_focused_input_element_value_get(Evas_Object* ewkView)
4013 {
4014 #if ENABLE(TIZEN_INPUT_TAG_EXTENSION)
4015     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, 0);
4016     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, 0);
4017
4018     impl->inputValue = impl->pageProxy->getFocusedInputElementValue().utf8().data();
4019     return impl->inputValue;
4020 #else
4021     return 0;
4022 #endif // ENABLE(TIZEN_INPUT_TAG_EXTENSION)
4023 }
4024
4025 #if ENABLE(TIZEN_DATALIST_ELEMENT)
4026 void ewkViewDataListShowRequest(Evas_Object* ewkView, Ewk_Input_Type inputType, Vector<String> optionList)
4027 {
4028     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4029     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4030     EINA_SAFETY_ON_NULL_RETURN(smartData->api);
4031     EINA_SAFETY_ON_NULL_RETURN(smartData->api->data_list_show);
4032
4033     if (impl->dataList)
4034         ewkViewDataListHideRequest(ewkView, inputType);
4035
4036     for (Vector<String>::const_iterator it = optionList.begin(); it != optionList.end(); ++it) {
4037         String value = *it;
4038         impl->dataList = eina_list_append(impl->dataList, eina_stringshare_add(value.utf8().data()));
4039     }
4040
4041     smartData->api->data_list_show(smartData, inputType, impl->dataList);
4042 }
4043
4044 void ewkViewDataListHideRequest(Evas_Object* ewkView, Ewk_Input_Type inputType)
4045 {
4046     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4047     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4048     EINA_SAFETY_ON_NULL_RETURN(impl->dataList);
4049     EINA_SAFETY_ON_NULL_RETURN(smartData->api);
4050     EINA_SAFETY_ON_NULL_RETURN(smartData->api->data_list_hide);
4051
4052     impl->deleteDataList();
4053
4054     smartData->api->data_list_hide(smartData, inputType);
4055 }
4056 #endif
4057
4058 void ewk_view_data_list_close(Evas_Object* ewkView, const char* value)
4059 {
4060 #if ENABLE(TIZEN_DATALIST_ELEMENT)
4061     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4062     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4063
4064     impl->deleteDataList();
4065
4066     ewk_view_focused_input_element_value_set(ewkView, value);
4067 #endif
4068 }
4069
4070 Eina_Bool ewk_view_horizontal_panning_hold_get(Evas_Object* ewkView)
4071 {
4072 #if ENABLE(TIZEN_GESTURE)
4073     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4074     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4075     return impl->holdHorizontalPanning;
4076 #else
4077     return false;
4078 #endif
4079 }
4080
4081 void ewk_view_horizontal_panning_hold_set(Evas_Object* ewkView, Eina_Bool hold)
4082 {
4083 #if ENABLE(TIZEN_GESTURE)
4084     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4085     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4086     impl->holdHorizontalPanning = hold;
4087 #endif
4088 }
4089
4090 Eina_Bool ewk_view_vertical_panning_hold_get(Evas_Object* ewkView)
4091 {
4092 #if ENABLE(TIZEN_GESTURE)
4093     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4094     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4095     return impl->holdVerticalPanning;
4096 #else
4097     return false;
4098 #endif
4099 }
4100
4101 void ewk_view_vertical_panning_hold_set(Evas_Object* ewkView, Eina_Bool hold)
4102 {
4103 #if ENABLE(TIZEN_GESTURE)
4104     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4105     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4106     impl->holdVerticalPanning = hold;
4107 #endif
4108 }
4109
4110 void ewk_view_touch_event_handler_result_set(Evas_Object* ewkView, WebKit::WebEvent::Type type, bool wasHandled)
4111 {
4112 #if ENABLE(TIZEN_GESTURE)
4113     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4114     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4115
4116 #if ENABLE(TIZEN_WEBKIT2_FOCUS_RING)
4117     if (impl->focusRing && wasHandled)
4118         impl->focusRing->hide();
4119 #endif // #if ENABLE(TIZEN_WEBKIT2_FOCUS_RING)
4120
4121     if (impl->mouseEventsEnabled())
4122         return;
4123
4124 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
4125     if (wasHandled && impl->pageClient->isTextSelectionMode()) {
4126         if (type == WebEvent::TouchStart)
4127             impl->pageClient->updateTextSelectionHandlesAndContextMenu(false);
4128         else if (type == WebEvent::TouchMove)
4129             impl->pageClient->updateTextSelectionHandlesAndContextMenu(false);
4130         else if (type == WebEvent::TouchEnd)
4131             impl->pageClient->requestToShowTextSelectionHandlesAndContextMenu();
4132     }
4133 #endif
4134
4135     // We have to check TouchStart, TouchMove and TouchEnd with handled.
4136     // The Pan and Flick will be enabled if Touch Start was not handled,
4137     // and Touch Move was not handled or did not occur.
4138     // Tap will be enabled if Touch Start and End was not handled
4139     // and Touch Move did not occur.
4140     // The gestures are disabled as a default.
4141     // o: handled, x: not handled
4142     // ------------------------------------------------------------
4143     // Touch Start | Touch Move | Touch End ||   Tap   | Pan, Flick
4144     // ------------------------------------------------------------
4145     //      o      |   o or x   |   o or x  || disable |  disable
4146     //      x      |      o     |   o or x  || disable |  disable
4147     //      x      |      x     |   o or x  || disable |  enable
4148     //      x      |not occured |     x     || enable  |  enable
4149     // ------------------------------------------------------------
4150     if (type == WebEvent::TouchStart) {
4151         impl->gestureClient->setGestureEnabled(!wasHandled);
4152         impl->wasHandledTouchStart = wasHandled;
4153
4154         // Initialize wasHandledTouchMove to true and notify that to the application
4155         // to prevent applications scrolling at the beginning of touch.
4156         impl->wasHandledTouchMove = true;
4157         evas_object_smart_callback_call(ewkView, "touchmove,handled", static_cast<void*>(&impl->wasHandledTouchMove));
4158     } else if (type == WebEvent::TouchMove) {
4159         impl->gestureClient->setMovingEnabled(!wasHandled);
4160
4161         // We have to set wasHandled to true if touchstart was handled even though current touchmove was not handled.
4162         if (impl->wasHandledTouchStart)
4163             wasHandled = true;
4164
4165         // Notify the result of touchmove to applications when handled value is changed
4166         // in order to make applications to choose whether scrolling its scrollable objects or not.
4167         if (impl->wasHandledTouchMove != wasHandled)
4168             evas_object_smart_callback_call(ewkView, "touchmove,handled", static_cast<void*>(&wasHandled));
4169         impl->wasHandledTouchMove = wasHandled;
4170     } else if (type == WebEvent::TouchEnd && !impl->exceedTouchMoveThreshold) {
4171         if (!wasHandled) {
4172             impl->gestureClient->setMovingEnabled(!wasHandled);
4173             impl->gestureClient->setTapEnabled(!wasHandled);
4174         }
4175 #if ENABLE(TIZEN_ISF_PORT)
4176         else if (impl->pageProxy->isViewVisible()) {
4177             IntPoint pointForHitTest = impl->transformFromScene().mapPoint(IntPoint(impl->touchDownPoint.x, impl->touchDownPoint.y));
4178             WebHitTestResult::Data hitTestResultData = impl->pageProxy->hitTestResultAtPoint(pointForHitTest);
4179             if (hitTestResultData.isContentEditable && impl->inputMethodContext()) {
4180                 evas_object_focus_set(ewkView, true);
4181                 impl->inputMethodContext()->updateTextInputState();
4182             }
4183         }
4184 #endif
4185     }
4186 #endif
4187 }
4188
4189 #if ENABLE(TIZEN_WEBKIT2_GET_TEXT_STYLE_FOR_SELECTION)
4190 void  ewkViewTextStyleState(Evas_Object* ewkView, const IntPoint& startPoint, const IntPoint& endPoint)
4191 {
4192     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4193     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4194
4195     EditorState editorState = impl->page()->editorState();
4196     Ewk_Text_Style* textStyle = ewkTextStyleCreate(editorState, startPoint, endPoint);
4197     evas_object_smart_callback_call(ewkView, "text,style,state", static_cast<void*>(textStyle));
4198     ewkTextStyleDelete(textStyle);
4199 }
4200 #endif
4201
4202 #if ENABLE(SCREEN_ORIENTATION_SUPPORT) && ENABLE(TIZEN_SCREEN_ORIENTATION_SUPPORT)
4203 bool ewk_view_orientation_lock(Evas_Object* ewkView, int willLockOrientation)
4204 {
4205     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4206     EINA_SAFETY_ON_NULL_RETURN_VAL(smartData->api, false);
4207
4208     TIZEN_LOGI("willLockOrientation (%d)", willLockOrientation);
4209     if (!smartData->api->orientation_lock) {
4210         TIZEN_LOGE("fail");
4211         return false;
4212     }
4213
4214     return smartData->api->orientation_lock(smartData, willLockOrientation);
4215 }
4216
4217 void ewk_view_orientation_unlock(Evas_Object* ewkView)
4218 {
4219     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4220     EINA_SAFETY_ON_NULL_RETURN(smartData->api);
4221
4222     TIZEN_LOGI("ewkView (%p)", ewkView);
4223     if (!smartData->api->orientation_unlock) {
4224         TIZEN_LOGE("fail");
4225         return;
4226     }
4227
4228     smartData->api->orientation_unlock(smartData);
4229 }
4230 #endif
4231
4232 void ewk_view_orientation_lock_callback_set(Evas_Object* ewkView, Ewk_Orientation_Lock_Cb func, void* data)
4233 {
4234 #if ENABLE(TIZEN_SCREEN_ORIENTATION_SUPPORT_INTERNAL)
4235     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4236     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4237     TIZEN_LOGI("callbacks: %p / data: %p", func, data);
4238
4239     impl->orientationLock.callback = func;
4240     impl->orientationLock.data = data;
4241 #endif
4242 }
4243
4244 #if ENABLE(TIZEN_SCREEN_ORIENTATION_SUPPORT_INTERNAL)
4245 Eina_Bool _ewk_orientation_lock(Ewk_View_Smart_Data *sd, int orientations)
4246 {
4247     EWK_VIEW_IMPL_GET_OR_RETURN(sd, impl, false);
4248     TIZEN_LOGI("locked orientations : %d", orientations);
4249
4250     if (impl->orientationLock.callback)
4251         return impl->orientationLock.callback(sd->self, true, orientations, impl->orientationLock.data);
4252
4253     return false;
4254 }
4255
4256 void _ewk_orientation_unlock(Ewk_View_Smart_Data *sd)
4257 {
4258     EWK_VIEW_IMPL_GET_OR_RETURN(sd, impl);
4259     TIZEN_LOGI("unlock is requested");
4260
4261     if (impl->orientationLock.callback)
4262         impl->orientationLock.callback(sd->self, false, 0, impl->orientationLock.data);
4263 }
4264 #endif
4265
4266 #if ENABLE(TIZEN_RUNTIME_BACKEND_SELECTION)
4267 bool ewk_view_is_opengl_backend(Evas_Object* ewkView)
4268 {
4269     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4270
4271     Ecore_Evas* ee = ecore_evas_ecore_evas_get(smartData->base.evas);
4272     const char *engine = ecore_evas_engine_name_get(ee);
4273     if (engine && !strcmp(engine, "opengl_x11"))
4274         return true;
4275     return false;
4276 }
4277 #endif
4278
4279 void ewk_view_zoomable_area_set(Evas_Object* ewkView, const IntPoint& target, const IntRect& area)
4280 {
4281 #if ENABLE(TIZEN_GESTURE)
4282     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4283     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4284
4285     impl->gestureClient->setZoomableArea(target, area);
4286 #endif
4287 }
4288
4289 #if ENABLE(TIZEN_BACKFORWARD_LIST_CLEAR)
4290 void ewk_view_back_forward_list_clear(const Evas_Object* ewkView)
4291 {
4292     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4293     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4294
4295     WKBackForwardListClearBackForwardList(WKPageGetBackForwardList(toAPI(impl->pageProxy.get())));
4296 }
4297 #endif
4298
4299 #if ENABLE(TIZEN_SIGNAL_APP_BACK_FORWARD_LIST_CHANGED)
4300 void ewkViewBackForwardListChanged(Evas_Object* ewkView)
4301 {
4302     evas_object_smart_callback_call(ewkView, "back,forward,list,changed", 0);
4303 }
4304 #endif
4305
4306 #if ENABLE(TIZEN_ICON_DATABASE)
4307 void ewkViewIconReceived(Evas_Object* ewkView)
4308 {
4309     if (!ewkView)
4310         return;
4311     evas_object_smart_callback_call(ewkView, "icon,received", 0);
4312 }
4313 #endif
4314
4315 #endif // #if OS(TIZEN)
4316
4317 Eina_Bool ewk_view_feed_touch_event(Evas_Object* ewkView, Ewk_Touch_Event_Type type, const Eina_List* points, const Evas_Modifier* modifiers)
4318 {
4319 #if ENABLE(TOUCH_EVENTS)
4320     EINA_SAFETY_ON_NULL_RETURN_VAL(points, false);
4321     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4322     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4323
4324 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION) && ENABLE(TIZEN_WEBKIT2_FOR_MOVING_TEXT_SELECTION_HANDLE_FROM_OSP)
4325     if (impl->pageClient->isTextSelectionMode() && eina_list_count(points) == 1) {
4326         Ewk_Touch_Point* point = static_cast<Ewk_Touch_Point*>(eina_list_data_get(points));
4327         IntPoint handlePoint(point->x, point->y);
4328
4329         if (type == EWK_TOUCH_START)
4330             impl->pageClient->textSelectonHandleDown(handlePoint);
4331         else if (type == EWK_TOUCH_MOVE)
4332             impl->pageClient->textSelectonHandleMove(handlePoint);
4333         else
4334             impl->pageClient->textSelectonHandleUp();
4335
4336         if (impl->pageClient->isTextSelectionHandleDowned())
4337             return true;
4338     }
4339 #endif
4340
4341 #if ENABLE(TIZEN_GESTURE)
4342 #if ENABLE(TIZEN_CONTEXT_MENU_WEBKIT_2)
4343     // We don't want to process touch event when context menu is shown.
4344     if ((impl->pageClient->isContextMenuVisible() && type != EWK_TOUCH_CANCEL)
4345 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
4346         && !impl->pageClient->isTextSelectionMode()
4347 #endif
4348         )
4349         return true;
4350 #endif
4351 #if ENABLE(TIZEN_WEBKIT2_TEXT_SELECTION)
4352     if (impl->pageClient->isTextSelectionDowned() && type != EWK_TOUCH_CANCEL)
4353         return true;
4354 #endif
4355
4356     if (type == EWK_TOUCH_START) {
4357         if (eina_list_count(points) == 1) {
4358             impl->gestureClient->reset();
4359             Ewk_Touch_Point* point = static_cast<Ewk_Touch_Point*>(eina_list_data_get(points));
4360             impl->touchDownPoint.x = point->x;
4361             impl->touchDownPoint.y = point->y;
4362             impl->exceedTouchMoveThreshold = false;
4363         }
4364     } else if (type == EWK_TOUCH_MOVE && !impl->exceedTouchMoveThreshold) {
4365         if (eina_list_count(points) == 1) {
4366             unsigned int threshold = elm_config_scroll_thumbscroll_threshold_get();
4367             Ewk_Touch_Point* point = static_cast<Ewk_Touch_Point*>(eina_list_data_get(points));
4368             int diffX = impl->touchDownPoint.x - point->x;
4369             int diffY = impl->touchDownPoint.y - point->y;
4370             if (static_cast<unsigned int>(diffX * diffX + diffY * diffY) > threshold * threshold)
4371                 impl->exceedTouchMoveThreshold = true;
4372             else
4373                 return true;
4374         } else {
4375             impl->exceedTouchMoveThreshold = true;
4376         }
4377     }
4378 #endif // #if ENABLE(TIZEN_GESTURE)
4379
4380     // FIXME: impl is used in the webkit opensource, but tizen webkit does not use it yet.
4381     //impl->page()->handleTouchEvent(NativeWebTouchEvent(type, points, modifiers, impl->transformFromScene(), impl->transformToScreen(), ecore_time_get()));
4382     impl->pageProxy->handleTouchEvent(NativeWebTouchEvent(type, points, modifiers, impl->transformFromScene(), impl->transformToScreen(), ecore_time_get()));
4383
4384     return true;
4385 #else
4386     return false;
4387 #endif
4388 }
4389
4390 Eina_Bool ewk_view_touch_events_enabled_set(Evas_Object* ewkView, Eina_Bool enabled)
4391 {
4392 #if ENABLE(TOUCH_EVENTS)
4393     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4394     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4395
4396     impl->setTouchEventsEnabled(!!enabled);
4397
4398     return true;
4399 #else
4400     return false;
4401 #endif
4402 }
4403
4404 Eina_Bool ewk_view_touch_events_enabled_get(const Evas_Object* ewkView)
4405 {
4406 #if ENABLE(TOUCH_EVENTS)
4407     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4408     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4409
4410     return impl->touchEventsEnabled();
4411 #else
4412     return false;
4413 #endif
4414 }
4415
4416 Eina_Bool ewk_view_main_frame_scrollbar_visible_set(Evas_Object* ewkView, Eina_Bool visible)
4417 {
4418 #if ENABLE(TIZEN_WEBKIT2_TILED_SCROLLBAR)
4419     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4420     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4421
4422     impl->mainFrameScrollbarVisibility = visible;
4423     impl->pageClient->updateVisibility();
4424
4425     return true;
4426 #else
4427     return false;
4428 #endif
4429 }
4430
4431 Eina_Bool ewk_view_main_frame_scrollbar_visible_get(const Evas_Object* ewkView)
4432 {
4433 #if ENABLE(TIZEN_WEBKIT2_TILED_SCROLLBAR)
4434     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4435     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4436
4437     return impl->mainFrameScrollbarVisibility;
4438 #else
4439     return false;
4440 #endif
4441 }
4442
4443 Eina_Bool ewk_view_page_save(Evas_Object* ewkView, const char* path)
4444 {
4445 #if ENABLE(TIZEN_OFFLINE_PAGE_SAVE)
4446     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4447     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4448     EINA_SAFETY_ON_NULL_RETURN_VAL(path, false);
4449
4450     String title = ewk_view_title_get(ewkView);
4451     String url = ewk_view_url_get(ewkView);
4452     String directoryPath(path);
4453     impl->pageClient->startOfflinePageSave(directoryPath, url, title);
4454
4455     return true;
4456 #else
4457     UNUSED_PARAM(ewkView);
4458     UNUSED_PARAM(path);
4459     return false;
4460 #endif
4461 }
4462
4463 /**
4464  * @internal
4465  * Callback function used for ewk_view_page_contents_get().
4466  */
4467 static void ewkViewPageContentsAsMHTMLCallback(WKDataRef wkData, WKErrorRef, void* context)
4468 {
4469     EINA_SAFETY_ON_NULL_RETURN(context);
4470
4471     RefPtr<WebData> webData = toImpl(wkData);
4472     Ewk_Page_Contents_Context* contentsContext= static_cast<Ewk_Page_Contents_Context*>(context);
4473     contentsContext->callback(contentsContext->type, reinterpret_cast<const char*>(webData->bytes()));
4474 }
4475
4476 /**
4477  * @internal
4478  * Callback function used for ewk_view_page_contents_get().
4479  */
4480 static void ewkViewPageContentsAsStringCallback(WKStringRef wkString, WKErrorRef, void* context)
4481 {
4482     EINA_SAFETY_ON_NULL_RETURN(context);
4483
4484     RefPtr<WebString> webString = toImpl(wkString);
4485     Ewk_Page_Contents_Context* contentsContext= static_cast<Ewk_Page_Contents_Context*>(context);
4486     contentsContext->callback(contentsContext->type, webString->string().utf8().data());
4487 }
4488
4489 Eina_Bool ewk_view_page_contents_get(const Evas_Object* ewkView, Ewk_Page_Contents_Context* context)
4490 {
4491     EINA_SAFETY_ON_NULL_RETURN_VAL(context, false);
4492     EINA_SAFETY_ON_NULL_RETURN_VAL(context->callback, false);
4493     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4494     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4495
4496     switch (context->type) {
4497     case EWK_PAGE_CONTENTS_TYPE_MHTML:
4498         impl->pageProxy->getContentsAsMHTMLData(DataCallback::create(context, ewkViewPageContentsAsMHTMLCallback), false);
4499         break;
4500
4501     case EWK_PAGE_CONTENTS_TYPE_STRING:
4502         impl->pageProxy->getContentsAsString(StringCallback::create(context, ewkViewPageContentsAsStringCallback));
4503         break;
4504
4505     default:
4506         ASSERT_NOT_REACHED();
4507         return false;
4508     }
4509
4510     return true;
4511 }
4512
4513 Eina_Bool ewk_view_animated_scroll_set(Evas_Object* ewkView, int x, int y)
4514 {
4515 #if ENABLE(TIZEN_GESTURE)
4516     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4517     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4518
4519     return impl->gestureClient->scrollToWithAnimation(x, y);
4520 #else
4521     UNUSED_PARAM(ewkView);
4522     UNUSED_PARAM(x);
4523     UNUSED_PARAM(y);
4524     return false;
4525 #endif
4526 }
4527
4528 #if ENABLE(TIZEN_WEBKIT2_FOCUS_RING)
4529 void ewkViewFocusRingHide(Evas_Object* ewkView)
4530 {
4531     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4532     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4533
4534     if (impl->focusRing)
4535         impl->focusRing->hide();
4536 }
4537 #endif
4538
4539 void ewk_view_content_security_policy_set(Evas_Object* ewkView, const char* policy, Ewk_CSP_Header_Type type)
4540 {
4541 #if ENABLE(TIZEN_CSP)
4542     EWK_VIEW_SD_GET_OR_RETURN(ewkView, sd);
4543     EWK_VIEW_IMPL_GET_OR_RETURN(sd, impl);
4544
4545     TIZEN_LOGI("policy(%s), type(%d)\n", policy, type);
4546     impl->pageProxy->setContentSecurityPolicy(String::fromUTF8(policy), static_cast<WebCore::ContentSecurityPolicy::HeaderType>(type));
4547 #endif
4548 }
4549
4550 #if ENABLE(TIZEN_APPLICATION_CACHE)
4551 Eina_Bool ewkViewRequestApplicationCachePermission(Evas_Object* ewkView, WKSecurityOriginRef origin)
4552 {
4553     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4554     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4555
4556     if (!impl->applicationCachePermissionContext || !impl->applicationCachePermissionContext->applicationCachePermissionCallback)
4557         return false;
4558
4559     impl->isWaitingForApplicationCachePermission = true;
4560     if (impl->applicationCachePermissionOrigin)
4561         deleteSecurityOrigin(impl->applicationCachePermissionOrigin);
4562     impl->applicationCachePermissionOrigin = createSecurityOrigin(origin);
4563
4564     return impl->applicationCachePermissionContext->applicationCachePermissionCallback(ewkView, impl->applicationCachePermissionOrigin, impl->applicationCachePermissionContext->userData) == EINA_TRUE;
4565 }
4566 #endif
4567
4568 void ewk_view_application_cache_permission_callback_set(Evas_Object* ewkView, Ewk_View_Applicacion_Cache_Permission_Callback callback, void* userData)
4569 {
4570 #if ENABLE(TIZEN_APPLICATION_CACHE)
4571     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4572     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4573
4574     if (!impl->applicationCachePermissionContext)
4575         impl->applicationCachePermissionContext = adoptPtr<Ewk_View_Callback_Context>(new Ewk_View_Callback_Context);
4576     impl->applicationCachePermissionContext->applicationCachePermissionCallback = callback;
4577     impl->applicationCachePermissionContext->userData = userData;
4578 #else
4579     UNUSED_PARAM(ewkView);
4580     UNUSED_PARAM(callback);
4581     UNUSED_PARAM(userData);
4582 #endif
4583 }
4584
4585 void ewk_view_application_cache_permission_reply(Evas_Object* ewkView, Eina_Bool allow)
4586 {
4587 #if ENABLE(TIZEN_APPLICATION_CACHE)
4588     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4589     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4590
4591     TIZEN_LOGI("allow %d", allow);
4592     WKPageReplyApplicationCachePermission(toAPI(impl->page()), allow);
4593     if (impl->applicationCachePermissionOrigin)
4594         deleteSecurityOrigin(impl->applicationCachePermissionOrigin);
4595     impl->applicationCachePermissionOrigin = 0;
4596     impl->isWaitingForApplicationCachePermission = false;
4597 #else
4598     UNUSED_PARAM(ewkView);
4599     UNUSED_PARAM(allow);
4600 #endif
4601 }
4602
4603 #if ENABLE(TIZEN_INDEXED_DATABASE)
4604 bool ewkViewExceededIndexedDatabaseQuota(Evas_Object* ewkView, WKSecurityOriginRef origin, long long currentUsage)
4605 {
4606     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4607     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4608
4609     if (!impl->exceededIndexedDatabaseQuotaContext || !impl->exceededIndexedDatabaseQuotaContext->exceededIndexedDatabaseQuotaCallback)
4610         return false;
4611
4612     impl->isWaitingForExceededQuotaPopupReply = true;
4613     if (impl->exceededQuotaOrigin)
4614         deleteSecurityOrigin(impl->exceededQuotaOrigin);
4615     impl->exceededQuotaOrigin = createSecurityOrigin(origin);
4616
4617     TIZEN_LOGI("currentUsage(%lld)", currentUsage);
4618
4619     return impl->exceededIndexedDatabaseQuotaContext->exceededIndexedDatabaseQuotaCallback(ewkView, impl->exceededQuotaOrigin, currentUsage, impl->exceededIndexedDatabaseQuotaContext->userData) == EINA_TRUE;
4620 }
4621 #endif
4622
4623 void ewk_view_exceeded_indexed_database_quota_callback_set(Evas_Object* ewkView, Ewk_View_Exceeded_Indexed_Database_Quota_Callback callback, void* userData)
4624 {
4625 #if ENABLE(TIZEN_INDEXED_DATABASE)
4626     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4627     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4628
4629     if (!impl->exceededIndexedDatabaseQuotaContext)
4630         impl->exceededIndexedDatabaseQuotaContext = adoptPtr<Ewk_View_Callback_Context>(new Ewk_View_Callback_Context);
4631     impl->exceededIndexedDatabaseQuotaContext->exceededIndexedDatabaseQuotaCallback = callback;
4632     impl->exceededIndexedDatabaseQuotaContext->userData = userData;
4633 #else
4634     UNUSED_PARAM(ewkView);
4635     UNUSED_PARAM(callback);
4636     UNUSED_PARAM(userData);
4637 #endif
4638 }
4639
4640 void ewk_view_exceeded_indexed_database_quota_reply(Evas_Object* ewkView, Eina_Bool allow)
4641 {
4642 #if ENABLE(TIZEN_INDEXED_DATABASE)
4643     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4644     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4645
4646     TIZEN_LOGI("allow %d", allow);
4647     WKPageReplyExceededIndexedDatabaseQuota(toAPI(impl->page()), allow == EINA_TRUE);
4648     if (impl->exceededQuotaOrigin)
4649         deleteSecurityOrigin(impl->exceededQuotaOrigin);
4650     impl->exceededQuotaOrigin = 0;
4651     impl->isWaitingForExceededQuotaPopupReply = false;
4652 #else
4653     UNUSED_PARAM(ewkView);
4654     UNUSED_PARAM(allow);
4655 #endif
4656 }
4657
4658 // EwkFindOptions should be matched up orders with WkFindOptions.
4659 COMPILE_ASSERT_MATCHING_ENUM(EWK_FIND_OPTIONS_CASE_INSENSITIVE, kWKFindOptionsCaseInsensitive);
4660 COMPILE_ASSERT_MATCHING_ENUM(EWK_FIND_OPTIONS_AT_WORD_STARTS, kWKFindOptionsAtWordStarts);
4661 COMPILE_ASSERT_MATCHING_ENUM(EWK_FIND_OPTIONS_TREAT_MEDIAL_CAPITAL_AS_WORD_START, kWKFindOptionsTreatMedialCapitalAsWordStart);
4662 COMPILE_ASSERT_MATCHING_ENUM(EWK_FIND_OPTIONS_BACKWARDS, kWKFindOptionsBackwards);
4663 COMPILE_ASSERT_MATCHING_ENUM(EWK_FIND_OPTIONS_WRAP_AROUND, kWKFindOptionsWrapAround);
4664 COMPILE_ASSERT_MATCHING_ENUM(EWK_FIND_OPTIONS_SHOW_OVERLAY, kWKFindOptionsShowOverlay);
4665 COMPILE_ASSERT_MATCHING_ENUM(EWK_FIND_OPTIONS_SHOW_FIND_INDICATOR, kWKFindOptionsShowFindIndicator);
4666 COMPILE_ASSERT_MATCHING_ENUM(EWK_FIND_OPTIONS_SHOW_HIGHLIGHT, kWKFindOptionsShowHighlight);
4667
4668 Eina_Bool ewk_view_text_find(Evas_Object* ewkView, const char* text, Ewk_Find_Options options, unsigned maxMatchCount)
4669 {
4670     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4671     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4672     EINA_SAFETY_ON_NULL_RETURN_VAL(text, false);
4673
4674     impl->pageProxy->findString(String::fromUTF8(text), static_cast<WebKit::FindOptions>(options), maxMatchCount);
4675
4676     return true;
4677 }
4678
4679 Eina_Bool ewk_view_text_find_highlight_clear(Evas_Object* ewkView)
4680 {
4681     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4682     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4683
4684     impl->pageProxy->hideFindUI();
4685
4686     return true;
4687 }
4688
4689 Eina_Bool ewk_view_text_matches_count(Evas_Object* ewkView, const char* text, Ewk_Find_Options options, unsigned maxMatchCount)
4690 {
4691     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4692     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4693     EINA_SAFETY_ON_NULL_RETURN_VAL(text, false);
4694
4695     impl->pageProxy->countStringMatches(String::fromUTF8(text), static_cast<WebKit::FindOptions>(options), maxMatchCount);
4696
4697     return true;
4698 }
4699
4700 void ewk_view_exceeded_database_quota_callback_set(Evas_Object* ewkView, Ewk_View_Exceeded_Database_Quota_Callback callback, void* userData)
4701 {
4702 #if ENABLE(TIZEN_SQL_DATABASE)
4703     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4704     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4705
4706     if (!impl->exceededDatabaseQuotaContext)
4707         impl->exceededDatabaseQuotaContext = adoptPtr<Ewk_View_Callback_Context>(new Ewk_View_Callback_Context);
4708     impl->exceededDatabaseQuotaContext->exceededDatabaseQuotaCallback = callback;
4709     impl->exceededDatabaseQuotaContext->userData = userData;
4710 #else
4711     UNUSED_PARAM(ewkView);
4712     UNUSED_PARAM(callback);
4713     UNUSED_PARAM(userData);
4714 #endif
4715 }
4716
4717 void ewk_view_exceeded_database_quota_reply(Evas_Object* ewkView, Eina_Bool allow)
4718 {
4719 #if ENABLE(TIZEN_SQL_DATABASE)
4720     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4721     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4722
4723     TIZEN_LOGI("allow %d", allow);
4724     WKPageReplyExceededDatabaseQuota(toAPI(impl->page()), allow == EINA_TRUE);
4725     if (impl->exceededQuotaOrigin)
4726         deleteSecurityOrigin(impl->exceededQuotaOrigin);
4727     impl->exceededQuotaOrigin = 0;
4728     impl->isWaitingForExceededQuotaPopupReply = false;
4729 #else
4730     UNUSED_PARAM(ewkView);
4731     UNUSED_PARAM(allow);
4732 #endif
4733 }
4734
4735 #if ENABLE(TIZEN_FILE_SYSTEM)
4736 bool ewkViewExceededLocalFileSystemQuota(Evas_Object* ewkView, WKSecurityOriginRef origin, long long currentUsage)
4737 {
4738     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false);
4739     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl, false);
4740
4741     if (!impl->exceededLocalFileSystemQuotaContext || !impl->exceededLocalFileSystemQuotaContext->exceededLocalFileSystemQuotaCallback)
4742         return false;
4743
4744     impl->isWaitingForExceededQuotaPopupReply = true;
4745     if (impl->exceededQuotaOrigin)
4746         deleteSecurityOrigin(impl->exceededQuotaOrigin);
4747     impl->exceededQuotaOrigin = createSecurityOrigin(origin);
4748
4749     TIZEN_LOGI("currentUsage(%lld)", currentUsage);
4750
4751     return impl->exceededLocalFileSystemQuotaContext->exceededLocalFileSystemQuotaCallback(ewkView, impl->exceededQuotaOrigin , currentUsage, impl->exceededLocalFileSystemQuotaContext->userData) == EINA_TRUE;
4752 }
4753 #endif
4754
4755 void ewk_view_exceeded_local_file_system_quota_callback_set(Evas_Object* ewkView, Ewk_View_Exceeded_Indexed_Database_Quota_Callback callback, void* userData)
4756 {
4757 #if ENABLE(TIZEN_FILE_SYSTEM)
4758     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4759     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4760
4761     if (!impl->exceededLocalFileSystemQuotaContext)
4762         impl->exceededLocalFileSystemQuotaContext = adoptPtr<Ewk_View_Callback_Context>(new Ewk_View_Callback_Context);
4763     impl->exceededLocalFileSystemQuotaContext->exceededLocalFileSystemQuotaCallback = callback;
4764     impl->exceededLocalFileSystemQuotaContext->userData = userData;
4765 #else
4766     UNUSED_PARAM(ewkView);
4767     UNUSED_PARAM(callback);
4768     UNUSED_PARAM(userData);
4769 #endif
4770 }
4771
4772 void ewk_view_exceeded_local_file_system_quota_reply(Evas_Object* ewkView, Eina_Bool allow)
4773 {
4774 #if ENABLE(TIZEN_FILE_SYSTEM)
4775     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4776     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4777
4778     TIZEN_LOGI("allow %d", allow);
4779     WKPageReplyExceededLocalFileSystemQuota(toAPI(impl->page()), allow == EINA_TRUE);
4780     if (impl->exceededQuotaOrigin)
4781         deleteSecurityOrigin(impl->exceededQuotaOrigin);
4782     impl->exceededQuotaOrigin = 0;
4783     impl->isWaitingForExceededQuotaPopupReply = false;
4784 #else
4785     UNUSED_PARAM(ewkView);
4786     UNUSED_PARAM(result);
4787 #endif
4788 }
4789
4790 void ewk_view_rotation_prepare(Evas_Object* ewkView, int angle)
4791 {
4792 #if ENABLE(TIZEN_PRERENDERING_FOR_ROTATION)
4793     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4794     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4795
4796     int width, height;
4797     if (angle == 0 || angle == 180) {
4798         width = WebCore::getDefaultScreenResolution().width();
4799         height = WebCore::getDefaultScreenResolution().height() + 100;
4800     }
4801     if (angle == 90 || angle == 270) {
4802         width = WebCore::getDefaultScreenResolution().height();
4803         height = WebCore::getDefaultScreenResolution().width() + 100;
4804     }
4805
4806     impl->pageProxy->drawingArea()->setSize(IntSize(width, height), IntSize());
4807     impl->pageClient->setWaitFrameOfNewViewortSize(true);
4808     ewk_view_suspend(ewkView);
4809     impl->pageClient->updateViewportSize(IntSize(width, height), angle);
4810 #endif
4811 }
4812
4813 #if ENABLE(TIZEN_PRERENDERING_FOR_ROTATION)
4814 void ewkViewRotatePrepared(Evas_Object* ewkView)
4815 {
4816     evas_object_smart_callback_call(ewkView, "rotate,prepared", 0);
4817 }
4818 #endif
4819
4820 void ewk_view_use_settings_font(Evas_Object* ewkView)
4821 {
4822 #if ENABLE(TIZEN_USE_SETTINGS_FONT)
4823     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4824     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4825
4826     impl->pageProxy->useSettingsFont();
4827 #endif
4828 }
4829
4830 void ewk_view_fullscreen_exit(Evas_Object* ewkView)
4831 {
4832 #if ENABLE(TIZEN_FULLSCREEN_API)
4833     TIZEN_LOGI("");
4834
4835     EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData);
4836     EWK_VIEW_IMPL_GET_OR_RETURN(smartData, impl);
4837
4838     if (!impl->pageProxy->fullScreenManager()->isFullScreen())
4839         return;
4840
4841     impl->pageProxy->fullScreenManager()->requestExitFullScreen();
4842 #else
4843     UNUSED_PARAM(ewkView);
4844 #endif
4845 }