Implement WebEngine::GetPlainTextAsynchronously
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / web-engine.cpp
index 69c2b79..86f67f1 100755 (executable)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2020 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2021 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  *
  */
 
-// CLASS HEADER
+// CLASSHEADER
 #include <dali/devel-api/adaptor-framework/web-engine.h>
 
 // INTERNAL INCLUDES
+#include <dali/devel-api/adaptor-framework/web-engine-back-forward-list.h>
+#include <dali/devel-api/adaptor-framework/web-engine-certificate.h>
+#include <dali/devel-api/adaptor-framework/web-engine-console-message.h>
+#include <dali/devel-api/adaptor-framework/web-engine-context-menu-item.h>
+#include <dali/devel-api/adaptor-framework/web-engine-context-menu.h>
+#include <dali/devel-api/adaptor-framework/web-engine-context.h>
+#include <dali/devel-api/adaptor-framework/web-engine-cookie-manager.h>
+#include <dali/devel-api/adaptor-framework/web-engine-http-auth-handler.h>
+#include <dali/devel-api/adaptor-framework/web-engine-load-error.h>
+#include <dali/devel-api/adaptor-framework/web-engine-policy-decision.h>
+#include <dali/devel-api/adaptor-framework/web-engine-request-interceptor.h>
+#include <dali/devel-api/adaptor-framework/web-engine-settings.h>
 #include <dali/internal/web-engine/common/web-engine-impl.h>
 
+// EXTERNAL INCLUDES
+#include <dali/public-api/images/pixel-data.h>
+
 namespace Dali
 {
 WebEngine::WebEngine()
@@ -62,11 +77,16 @@ WebEngine WebEngine::DownCast(BaseHandle handle)
   return WebEngine(dynamic_cast<Internal::Adaptor::WebEngine*>(handle.GetObjectPtr()));
 }
 
-void WebEngine::Create(int width, int height, const std::string& locale, const std::string& timezoneId)
+void WebEngine::Create(uint32_t width, uint32_t height, const std::string& locale, const std::string& timezoneId)
 {
   GetImplementation(*this).Create(width, height, locale, timezoneId);
 }
 
+void WebEngine::Create(uint32_t width, uint32_t height, uint32_t argc, char** argv)
+{
+  GetImplementation(*this).Create(width, height, argc, argv);
+}
+
 void WebEngine::Destroy()
 {
   GetImplementation(*this).Destroy();
@@ -77,19 +97,59 @@ NativeImageInterfacePtr WebEngine::GetNativeImageSource()
   return GetImplementation(*this).GetNativeImageSource();
 }
 
+Dali::WebEngineSettings& WebEngine::GetSettings() const
+{
+  return GetImplementation(*this).GetSettings();
+}
+
+Dali::WebEngineContext& WebEngine::GetContext() const
+{
+  return GetImplementation(*this).GetContext();
+}
+
+Dali::WebEngineCookieManager& WebEngine::GetCookieManager() const
+{
+  return GetImplementation(*this).GetCookieManager();
+}
+
+Dali::WebEngineBackForwardList& WebEngine::GetBackForwardList() const
+{
+  return GetImplementation(*this).GetBackForwardList();
+}
+
 void WebEngine::LoadUrl(const std::string& url)
 {
   return GetImplementation(*this).LoadUrl(url);
 }
 
-const std::string& WebEngine::GetUrl()
+std::string WebEngine::GetTitle() const
+{
+  return GetImplementation(*this).GetTitle();
+}
+
+Dali::PixelData WebEngine::GetFavicon() const
+{
+  return GetImplementation(*this).GetFavicon();
+}
+
+std::string WebEngine::GetUrl() const
 {
   return GetImplementation(*this).GetUrl();
 }
 
-void WebEngine::LoadHTMLString(const std::string& htmlString)
+void WebEngine::LoadHtmlString(const std::string& htmlString)
 {
-  GetImplementation(*this).LoadHTMLString(htmlString);
+  GetImplementation(*this).LoadHtmlString(htmlString);
+}
+
+bool WebEngine::LoadHtmlStringOverrideCurrentEntry(const std::string& html, const std::string& basicUri, const std::string& unreachableUrl)
+{
+  return GetImplementation(*this).LoadHtmlStringOverrideCurrentEntry(html, basicUri, unreachableUrl);
+}
+
+bool WebEngine::LoadContents(const std::string& contents, uint32_t contentSize, const std::string& mimeType, const std::string& encoding, const std::string& baseUri)
+{
+  return GetImplementation(*this).LoadContents(contents, contentSize, mimeType, encoding, baseUri);
 }
 
 void WebEngine::Reload()
@@ -97,6 +157,11 @@ void WebEngine::Reload()
   GetImplementation(*this).Reload();
 }
 
+bool WebEngine::ReloadWithoutCache()
+{
+  return GetImplementation(*this).ReloadWithoutCache();
+}
+
 void WebEngine::StopLoading()
 {
   GetImplementation(*this).StopLoading();
@@ -112,6 +177,66 @@ void WebEngine::Resume()
   GetImplementation(*this).Resume();
 }
 
+void WebEngine::SuspendNetworkLoading()
+{
+  GetImplementation(*this).SuspendNetworkLoading();
+}
+
+void WebEngine::ResumeNetworkLoading()
+{
+  GetImplementation(*this).ResumeNetworkLoading();
+}
+
+bool WebEngine::AddCustomHeader(const std::string& name, const std::string& value)
+{
+  return GetImplementation(*this).AddCustomHeader(name, value);
+}
+
+bool WebEngine::RemoveCustomHeader(const std::string& name)
+{
+  return GetImplementation(*this).RemoveCustomHeader(name);
+}
+
+uint32_t WebEngine::StartInspectorServer(uint32_t port)
+{
+  return GetImplementation(*this).StartInspectorServer(port);
+}
+
+bool WebEngine::StopInspectorServer()
+{
+  return GetImplementation(*this).StopInspectorServer();
+}
+
+void WebEngine::ScrollBy(int32_t deltaX, int32_t deltaY)
+{
+  GetImplementation(*this).ScrollBy(deltaX, deltaY);
+}
+
+bool WebEngine::ScrollEdgeBy(int32_t deltaX, int32_t deltaY)
+{
+  return GetImplementation(*this).ScrollEdgeBy(deltaX, deltaY);
+}
+
+void WebEngine::SetScrollPosition(int32_t x, int32_t y)
+{
+  GetImplementation(*this).SetScrollPosition(x, y);
+}
+
+Dali::Vector2 WebEngine::GetScrollPosition() const
+{
+  return GetImplementation(*this).GetScrollPosition();
+}
+
+Dali::Vector2 WebEngine::GetScrollSize() const
+{
+  return GetImplementation(*this).GetScrollSize();
+}
+
+Dali::Vector2 WebEngine::GetContentSize() const
+{
+  return GetImplementation(*this).GetContentSize();
+}
+
 bool WebEngine::CanGoForward()
 {
   return GetImplementation(*this).CanGoForward();
@@ -132,104 +257,104 @@ void WebEngine::GoBack()
   GetImplementation(*this).GoBack();
 }
 
-void WebEngine::EvaluateJavaScript(const std::string& script, std::function<void(const std::string&)> resultHandler)
+void WebEngine::EvaluateJavaScript(const std::string& script, Dali::WebEnginePlugin::JavaScriptMessageHandlerCallback resultHandler)
 {
   GetImplementation(*this).EvaluateJavaScript(script, resultHandler);
 }
 
-void WebEngine::AddJavaScriptMessageHandler(const std::string& exposedObjectName, std::function<void(const std::string&)> handler)
+void WebEngine::AddJavaScriptMessageHandler(const std::string& exposedObjectName, Dali::WebEnginePlugin::JavaScriptMessageHandlerCallback handler)
 {
   GetImplementation(*this).AddJavaScriptMessageHandler(exposedObjectName, handler);
 }
 
-void WebEngine::ClearHistory()
+void WebEngine::RegisterJavaScriptAlertCallback(Dali::WebEnginePlugin::JavaScriptAlertCallback callback)
 {
-  return GetImplementation(*this).ClearHistory();
+  GetImplementation(*this).RegisterJavaScriptAlertCallback(callback);
 }
 
-void WebEngine::ClearCache()
+void WebEngine::JavaScriptAlertReply()
 {
-  return GetImplementation(*this).ClearCache();
+  GetImplementation(*this).JavaScriptAlertReply();
 }
 
-void WebEngine::ClearCookies()
+void WebEngine::RegisterJavaScriptConfirmCallback(Dali::WebEnginePlugin::JavaScriptConfirmCallback callback)
 {
-  return GetImplementation(*this).ClearCookies();
+  GetImplementation(*this).RegisterJavaScriptConfirmCallback(callback);
 }
 
-Dali::WebEnginePlugin::CacheModel WebEngine::GetCacheModel() const
+void WebEngine::JavaScriptConfirmReply(bool confirmed)
 {
-  return GetImplementation(*this).GetCacheModel();
+  GetImplementation(*this).JavaScriptConfirmReply(confirmed);
 }
 
-void WebEngine::SetCacheModel(Dali::WebEnginePlugin::CacheModel cacheModel)
+void WebEngine::RegisterJavaScriptPromptCallback(Dali::WebEnginePlugin::JavaScriptPromptCallback callback)
 {
-  GetImplementation(*this).SetCacheModel(cacheModel);
+  GetImplementation(*this).RegisterJavaScriptPromptCallback(callback);
 }
 
-Dali::WebEnginePlugin::CookieAcceptPolicy WebEngine::GetCookieAcceptPolicy() const
+void WebEngine::JavaScriptPromptReply(const std::string& result)
 {
-  return GetImplementation(*this).GetCookieAcceptPolicy();
+  GetImplementation(*this).JavaScriptPromptReply(result);
 }
 
-void WebEngine::SetCookieAcceptPolicy(Dali::WebEnginePlugin::CookieAcceptPolicy policy)
+std::unique_ptr<Dali::WebEngineHitTest> WebEngine::CreateHitTest(int32_t x, int32_t y, Dali::WebEngineHitTest::HitTestMode mode)
 {
-  GetImplementation(*this).SetCookieAcceptPolicy(policy);
+  return GetImplementation(*this).CreateHitTest(x, y, mode);
 }
 
-const std::string& WebEngine::GetUserAgent() const
+bool WebEngine::CreateHitTestAsynchronously(int32_t x, int32_t y, Dali::WebEngineHitTest::HitTestMode mode, Dali::WebEnginePlugin::WebEngineHitTestCreatedCallback callback)
 {
-  return GetImplementation(*this).GetUserAgent();
+  return GetImplementation(*this).CreateHitTestAsynchronously(x, y, mode, callback);
 }
 
-void WebEngine::SetUserAgent(const std::string& userAgent)
+void WebEngine::ClearHistory()
 {
-  GetImplementation(*this).SetUserAgent(userAgent);
+  GetImplementation(*this).ClearHistory();
 }
 
-bool WebEngine::IsJavaScriptEnabled() const
+void WebEngine::ClearAllTilesResources()
 {
-  return GetImplementation(*this).IsJavaScriptEnabled();
+  GetImplementation(*this).ClearAllTilesResources();
 }
 
-void WebEngine::EnableJavaScript(bool enabled)
+std::string WebEngine::GetUserAgent() const
 {
-  GetImplementation(*this).EnableJavaScript(enabled);
+  return GetImplementation(*this).GetUserAgent();
 }
 
-bool WebEngine::AreImagesAutomaticallyLoaded() const
+void WebEngine::SetUserAgent(const std::string& userAgent)
 {
-  return GetImplementation(*this).AreImagesAutomaticallyLoaded();
+  GetImplementation(*this).SetUserAgent(userAgent);
 }
 
-void WebEngine::LoadImagesAutomatically(bool automatic)
+void WebEngine::SetSize(uint32_t width, uint32_t height)
 {
-  GetImplementation(*this).LoadImagesAutomatically(automatic);
+  GetImplementation(*this).SetSize(width, height);
 }
 
-const std::string& WebEngine::GetDefaultTextEncodingName() const
+void WebEngine::SetDocumentBackgroundColor(Dali::Vector4 color)
 {
-  return GetImplementation(*this).GetDefaultTextEncodingName();
+  GetImplementation(*this).SetDocumentBackgroundColor(color);
 }
 
-void WebEngine::SetDefaultTextEncodingName(const std::string& defaultTextEncodingName)
+void WebEngine::ClearTilesWhenHidden(bool cleared)
 {
-  GetImplementation(*this).SetDefaultTextEncodingName(defaultTextEncodingName);
+  GetImplementation(*this).ClearTilesWhenHidden(cleared);
 }
 
-int WebEngine::GetDefaultFontSize() const
+void WebEngine::SetTileCoverAreaMultiplier(float multiplier)
 {
-  return GetImplementation(*this).GetDefaultFontSize();
+  GetImplementation(*this).SetTileCoverAreaMultiplier(multiplier);
 }
 
-void WebEngine::SetDefaultFontSize(int defaultFontSize)
+void WebEngine::EnableCursorByClient(bool enabled)
 {
-  GetImplementation(*this).SetDefaultFontSize(defaultFontSize);
+  GetImplementation(*this).EnableCursorByClient(enabled);
 }
 
-void WebEngine::SetSize(int width, int height)
+std::string WebEngine::GetSelectedText() const
 {
-  return GetImplementation(*this).SetSize(width, height);
+  return GetImplementation(*this).GetSelectedText();
 }
 
 bool WebEngine::SendTouchEvent(const TouchEvent& touch)
@@ -242,24 +367,199 @@ bool WebEngine::SendKeyEvent(const KeyEvent& event)
   return GetImplementation(*this).SendKeyEvent(event);
 }
 
-void WebEngine::SetFocus( bool focused )
+bool WebEngine::SendHoverEvent(const HoverEvent& event)
+{
+  return GetImplementation(*this).SendHoverEvent(event);
+}
+
+bool WebEngine::SendWheelEvent(const WheelEvent& event)
+{
+  return GetImplementation(*this).SendWheelEvent(event);
+}
+
+void WebEngine::SetFocus(bool focused)
+{
+  GetImplementation(*this).SetFocus(focused);
+}
+
+void WebEngine::SetPageZoomFactor(float zoomFactor)
+{
+  GetImplementation(*this).SetPageZoomFactor(zoomFactor);
+}
+
+float WebEngine::GetPageZoomFactor() const
+{
+  return GetImplementation(*this).GetPageZoomFactor();
+}
+
+void WebEngine::SetTextZoomFactor(float zoomFactor)
+{
+  GetImplementation(*this).SetTextZoomFactor(zoomFactor);
+}
+
+float WebEngine::GetTextZoomFactor() const
+{
+  return GetImplementation(*this).GetTextZoomFactor();
+}
+
+float WebEngine::GetLoadProgressPercentage() const
+{
+  return GetImplementation(*this).GetLoadProgressPercentage();
+}
+
+void WebEngine::SetScaleFactor(float scaleFactor, Dali::Vector2 point)
+{
+  GetImplementation(*this).SetScaleFactor(scaleFactor, point);
+}
+
+float WebEngine::GetScaleFactor() const
+{
+  return GetImplementation(*this).GetScaleFactor();
+}
+
+void WebEngine::ActivateAccessibility(bool activated)
+{
+  GetImplementation(*this).ActivateAccessibility(activated);
+}
+
+bool WebEngine::SetVisibility(bool visible)
+{
+  return GetImplementation(*this).SetVisibility(visible);
+}
+
+bool WebEngine::HighlightText(const std::string& text, Dali::WebEnginePlugin::FindOption options, uint32_t maxMatchCount)
+{
+  return GetImplementation(*this).HighlightText(text, options, maxMatchCount);
+}
+
+void WebEngine::AddDynamicCertificatePath(const std::string& host, const std::string& certPath)
+{
+  GetImplementation(*this).AddDynamicCertificatePath(host, certPath);
+}
+
+Dali::PixelData WebEngine::GetScreenshot(Dali::Rect<int32_t> viewArea, float scaleFactor)
+{
+  return GetImplementation(*this).GetScreenshot(viewArea, scaleFactor);
+}
+
+bool WebEngine::GetScreenshotAsynchronously(Dali::Rect<int32_t> viewArea, float scaleFactor, Dali::WebEnginePlugin::ScreenshotCapturedCallback callback)
+{
+  return GetImplementation(*this).GetScreenshotAsynchronously(viewArea, scaleFactor, callback);
+}
+
+bool WebEngine::CheckVideoPlayingAsynchronously(Dali::WebEnginePlugin::VideoPlayingCallback callback)
+{
+  return GetImplementation(*this).CheckVideoPlayingAsynchronously(callback);
+}
+
+void WebEngine::RegisterGeolocationPermissionCallback(Dali::WebEnginePlugin::GeolocationPermissionCallback callback)
+{
+  GetImplementation(*this).RegisterGeolocationPermissionCallback(callback);
+}
+
+void WebEngine::UpdateDisplayArea(Dali::Rect<int32_t> displayArea)
+{
+  GetImplementation(*this).UpdateDisplayArea(displayArea);
+}
+
+void WebEngine::EnableMouseEvents(bool enabled)
+{
+  GetImplementation(*this).EnableMouseEvents(enabled);
+}
+
+void WebEngine::EnableKeyEvents(bool enabled)
+{
+  GetImplementation(*this).EnableKeyEvents(enabled);
+}
+
+void WebEngine::EnableVideoHole(bool enabled)
+{
+  GetImplementation(*this).EnableVideoHole(enabled);
+}
+
+Dali::WebEnginePlugin::WebEngineFrameRenderedSignalType& WebEngine::FrameRenderedSignal()
+{
+  return GetImplementation(*this).FrameRenderedSignal();
+}
+
+void WebEngine::RegisterPageLoadStartedCallback(Dali::WebEnginePlugin::WebEnginePageLoadCallback callback)
+{
+  GetImplementation(*this).RegisterPageLoadStartedCallback(callback);
+}
+
+void WebEngine::RegisterPageLoadInProgressCallback(Dali::WebEnginePlugin::WebEnginePageLoadCallback callback)
+{
+  GetImplementation(*this).RegisterPageLoadInProgressCallback(callback);
+}
+
+void WebEngine::RegisterPageLoadFinishedCallback(Dali::WebEnginePlugin::WebEnginePageLoadCallback callback)
+{
+  GetImplementation(*this).RegisterPageLoadFinishedCallback(callback);
+}
+
+void WebEngine::RegisterPageLoadErrorCallback(Dali::WebEnginePlugin::WebEnginePageLoadErrorCallback callback)
+{
+  GetImplementation(*this).RegisterPageLoadErrorCallback(callback);
+}
+
+void WebEngine::RegisterScrollEdgeReachedCallback(Dali::WebEnginePlugin::WebEngineScrollEdgeReachedCallback callback)
+{
+  GetImplementation(*this).RegisterScrollEdgeReachedCallback(callback);
+}
+
+void WebEngine::RegisterUrlChangedCallback(Dali::WebEnginePlugin::WebEngineUrlChangedCallback callback)
+{
+  GetImplementation(*this).RegisterUrlChangedCallback(callback);
+}
+
+void WebEngine::RegisterFormRepostDecidedCallback(Dali::WebEnginePlugin::WebEngineFormRepostDecidedCallback callback)
+{
+  GetImplementation(*this).RegisterFormRepostDecidedCallback(callback);
+}
+
+void WebEngine::RegisterRequestInterceptorCallback(Dali::WebEnginePlugin::WebEngineRequestInterceptorCallback callback)
+{
+  GetImplementation(*this).RegisterRequestInterceptorCallback(callback);
+}
+
+void WebEngine::RegisterConsoleMessageReceivedCallback(Dali::WebEnginePlugin::WebEngineConsoleMessageReceivedCallback callback)
+{
+  GetImplementation(*this).RegisterConsoleMessageReceivedCallback(callback);
+}
+
+void WebEngine::RegisterResponsePolicyDecidedCallback(Dali::WebEnginePlugin::WebEngineResponsePolicyDecidedCallback callback)
+{
+  GetImplementation(*this).RegisterResponsePolicyDecidedCallback(callback);
+}
+
+void WebEngine::RegisterCertificateConfirmedCallback(Dali::WebEnginePlugin::WebEngineCertificateCallback callback)
+{
+  GetImplementation(*this).RegisterCertificateConfirmedCallback(callback);
+}
+
+void WebEngine::RegisterSslCertificateChangedCallback(Dali::WebEnginePlugin::WebEngineCertificateCallback callback)
+{
+  GetImplementation(*this).RegisterSslCertificateChangedCallback(callback);
+}
+
+void WebEngine::RegisterHttpAuthHandlerCallback(Dali::WebEnginePlugin::WebEngineHttpAuthHandlerCallback callback)
 {
-  GetImplementation( *this ).SetFocus( focused );
+  GetImplementation(*this).RegisterHttpAuthHandlerCallback(callback);
 }
 
-Dali::WebEnginePlugin::WebEnginePageLoadSignalType& WebEngine::PageLoadStartedSignal()
+void WebEngine::RegisterContextMenuShownCallback(Dali::WebEnginePlugin::WebEngineContextMenuShownCallback callback)
 {
-  return GetImplementation(*this).PageLoadStartedSignal();
+  GetImplementation(*this).RegisterContextMenuShownCallback(callback);
 }
 
-Dali::WebEnginePlugin::WebEnginePageLoadSignalType& WebEngine::PageLoadFinishedSignal()
+void WebEngine::RegisterContextMenuHiddenCallback(Dali::WebEnginePlugin::WebEngineContextMenuHiddenCallback callback)
 {
-  return GetImplementation(*this).PageLoadFinishedSignal();
+  GetImplementation(*this).RegisterContextMenuHiddenCallback(callback);
 }
 
-Dali::WebEnginePlugin::WebEnginePageLoadErrorSignalType& WebEngine::PageLoadErrorSignal()
+void WebEngine::GetPlainTextAsynchronously(Dali::WebEnginePlugin::PlainTextReceivedCallback callback)
 {
-  return GetImplementation(*this).PageLoadErrorSignal();
+  GetImplementation(*this).GetPlainTextAsynchronously(callback);
 }
 
 } // namespace Dali