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