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