ewk_context_cache_model_set(pContext, EWK_CACHE_MODEL_PRIMARY_WEBBROWSER);
ewk_settings_text_selection_enabled_set(pSettings, EINA_FALSE);
+ ewk_settings_uses_keypad_without_user_action_set(pSettings, EINA_FALSE);
ewk_context_additional_plugin_path_set(pContext, PLUGIN_DIRECTORY_PATH);
void
-OnLoadingCommitted(void* pUserData, Evas_Object* pView, void* pEventInfo)
-{
- evas_object_focus_set(pView, EINA_FALSE);
-}
-
-
-void
OnFaviconReceived(void* pUserData, Evas_Object* pView, void* pEventInfo)
{
_WebImpl* pImpl = reinterpret_cast< _WebImpl* >(pUserData);
evas_object_smart_callback_add(pWebNativeNode, "load,stop", OnLoadingCanceled, this);
evas_object_smart_callback_add(pWebNativeNode, "load,error", OnLoadingErrorOccurred, this);
evas_object_smart_callback_add(pWebNativeNode, "title,changed", OnPageTitleReceived, this);
- evas_object_smart_callback_add(pWebNativeNode, "load,committed", OnLoadingCommitted, this);
evas_object_smart_callback_add(pWebNativeNode, "requestToNative,json", OnHandleJavaScriptRequest, this);