Update position & size of web view.
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / web-view / web-view-impl.h
old mode 100644 (file)
new mode 100755 (executable)
index 2bc7ddf..572688b
@@ -2,7 +2,7 @@
 #define DALI_TOOLKIT_INTERNAL_WEB_VIEW_H
 
 /*
- * Copyright (c) 2018 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2020 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.
  */
 
 // EXTERNAL INCLUDES
+#include <memory>
 #include <dali/devel-api/adaptor-framework/web-engine.h>
 #include <dali/public-api/images/image-operations.h>
+#include <dali/public-api/object/property-notification.h>
 
 // INTERNAL INCLUDES
+#include <dali-toolkit/devel-api/controls/web-view/web-view.h>
 #include <dali-toolkit/devel-api/visual-factory/visual-base.h>
 #include <dali-toolkit/public-api/controls/control-impl.h>
-#include <dali-toolkit/devel-api/controls/web-view/web-view.h>
+#include <dali-toolkit/public-api/controls/image-view/image-view.h>
 
 namespace Dali
 {
@@ -34,7 +37,11 @@ namespace Toolkit
 {
 
 class KeyEvent;
-class TouchData;
+class TouchEvent;
+class WebBackForwardList;
+class WebContext;
+class WebCookieManager;
+class WebSettings;
 class WebView;
 
 namespace Internal
@@ -48,6 +55,8 @@ protected:
 
   WebView( const std::string& locale, const std::string& timezoneId );
 
+  WebView( int argc, char** argv );
+
   virtual ~WebView();
 
 public:
@@ -63,79 +72,131 @@ public:
   static Toolkit::WebView New( const std::string& locale, const std::string& timezoneId );
 
   /**
-   * @copydoc Dali::Toolkit::WebView::LoadUrl()
+   * @brief Get settings of WebEngine.
    */
-  void LoadUrl( const std::string& url );
+  Dali::Toolkit::WebSettings* GetSettings() const;
+
+  /**
+   * @brief Get context of WebEngine.
+   */
+  Dali::Toolkit::WebContext* GetContext() const;
+
+  /**
+   * @brief Get cookie manager of WebEngine.
+   */
+  Dali::Toolkit::WebCookieManager* GetCookieManager() const;
+
+  /**
+   * @brief Get WebBackForwardList of WebEngine.
+   */
+  Dali::Toolkit::WebBackForwardList* GetBackForwardList() const;
+
+  /**
+   * @copydoc Dali::Toolkit::WebView::New( int, char** )
+   */
+  static Toolkit::WebView New( int argc, char** argv );
+
+  /**
+   * @brief Get Favicon of web page.
+   *
+   * @return Handle to a fav icon
+   */
+  Dali::Toolkit::ImageView& GetFavicon();
 
   /**
-   * @copydoc Dali::Toolkit::WebView::GetUrl()
+   * @copydoc Dali::Toolkit::WebView::LoadUrl()
    */
-  const std::string& GetUrl();
+  void LoadUrl( const std::string& url );
 
   /**
    * @copydoc Dali::WebEngine::LoadHTMLString()
    */
-  void LoadHTMLString( const std::string& htmlString );
+  void LoadHtmlString( const std::string& htmlString );
 
   /**
-   * @copydoc Dali::WebEngine::Reload()
+   * @copydoc Dali::Toolkit::WebView::Reload()
    */
   void Reload();
 
   /**
-   * @copydoc Dali::WebEngine::StopLoading()
+   * @copydoc Dali::Toolkit::WebView::StopLoading()
    */
   void StopLoading();
 
   /**
-   * @copydoc Dali::WebEngine::CanGoForward()
+   * @copydoc Dali::Toolkit::WebView::StopLoading()
+   */
+  void Suspend();
+
+  /**
+   * @copydoc Dali::Toolkit::WebView::Resume()
+   */
+  void Resume();
+
+  /**
+   * @copydoc Dali::Toolkit::WebView::ScrollBy()
+   */
+  void ScrollBy( int deltaX, int deltaY );
+
+  /**
+   * @copydoc Dali::Toolkit::WebView::CanGoForward()
    */
   bool CanGoForward();
 
   /**
-   * @copydoc Dali::WebEngine::GoForward()
+   * @copydoc Dali::Toolkit::WebView::GoForward()
    */
   void GoForward();
 
   /**
-   * @copydoc Dali::WebEngine::CanGoBack()
+   * @copydoc Dali::Toolkit::WebView::CanGoBack()
    */
   bool CanGoBack();
 
   /**
-   * @copydoc Dali::WebEngine::GoBack()
+   * @copydoc Dali::Toolkit::WebView::GoBack()
    */
   void GoBack();
 
   /**
-   * @copydoc Dali::WebEngine::EvaluateJavaScript()
+   * @copydoc Dali::Toolkit::WebView::EvaluateJavaScript()
    */
-  void EvaluateJavaScript( const std::string& script );
+  void EvaluateJavaScript( const std::string& script, std::function< void( const std::string& ) > resultHandler );
 
   /**
-   * @copydoc Dali::WebEngine::AddJavaScriptMessageHandler()
+   * @copydoc Dali::Toolkit::WebView::AddJavaScriptMessageHandler()
    */
   void AddJavaScriptMessageHandler( const std::string& exposedObjectName, std::function< void( const std::string& ) > handler );
 
   /**
-   * @copydoc Dali::WebEngine::ClearHistory()
+   * @brief Clears all tiles resources of Web.
    */
-  void ClearHistory();
+  void ClearAllTilesResources();
 
   /**
-   * @copydoc Dali::WebEngine::ClearCache()
+   * @copydoc Dali::Toolkit::WebView::ClearHistory()
    */
-  void ClearCache();
+  void ClearHistory();
 
   /**
    * @copydoc Dali::Toolkit::WebView::PageLoadStartedSignal()
    */
-  Dali::Toolkit::WebView::WebViewSignalType& PageLoadStartedSignal();
+  Dali::Toolkit::WebView::WebViewPageLoadSignalType& PageLoadStartedSignal();
 
   /**
    * @copydoc Dali::Toolkit::WebView::PageLoadFinishedSignal()
    */
-  Dali::Toolkit::WebView::WebViewSignalType& PageLoadFinishedSignal();
+  Dali::Toolkit::WebView::WebViewPageLoadSignalType& PageLoadFinishedSignal();
+
+  /**
+   * @copydoc Dali::Toolkit::WebView::PageLoadErrorSignal()
+   */
+  Dali::Toolkit::WebView::WebViewPageLoadErrorSignalType& PageLoadErrorSignal();
+
+  /**
+   * @copydoc Dali::Toolkit::WebView::ScrollEdgeReachedSignal()
+   */
+  Dali::Toolkit::WebView::WebViewScrollEdgeReachedSignalType& ScrollEdgeReachedSignal();
 
 public: // Properties
 
@@ -173,17 +234,12 @@ private: // From Control
   /**
    * @copydoc Toolkit::Control::OnInitialize()
    */
-  virtual void OnInitialize();
+  void OnInitialize() override;
 
   /**
    * @copydoc Toolkit::Control::GetNaturalSize
    */
-  virtual Vector3 GetNaturalSize();
-
-  /**
-   * @copydoc Toolkit::Control::OnRelayout()
-   */
-  virtual void OnRelayout( const Vector2& size, RelayoutContainer& container );
+  Vector3 GetNaturalSize() override;
 
   /**
    * Signal occurs when the Web View has been touched.
@@ -191,12 +247,27 @@ private: // From Control
    * @param[in] touch The Touch Data.
    * @return Whether to consume event or not.
    */
-  bool OnTouchEvent( Actor actor, const Dali::TouchData& touch );
+  bool OnTouchEvent( Actor actor, const Dali::TouchEvent& touch );
 
   /**
    * @copydoc Toolkit::Control::OnKeyEvent()
    */
-  virtual bool OnKeyEvent( const Dali::KeyEvent& event );
+  bool OnKeyEvent( const Dali::KeyEvent& event ) override;
+
+  /**
+   * @copydoc Toolkit::Control::OnKeyInputFocusGained()
+   */
+  void OnKeyInputFocusGained() override;
+
+  /**
+   * @copydoc Toolkit::Control::OnKeyInputFocusLost()
+   */
+  void OnKeyInputFocusLost() override;
+
+  /**
+   * @copydoc Toolkit::Control::OnSceneConnection()
+   */
+  void OnSceneConnection( int depth ) override;
 
 private:
 
@@ -205,18 +276,119 @@ private:
 
   WebView& operator=( const WebView& webView );
 
+  /**
+   * @brief Sets an absolute scroll of the given view.
+   * @param[in] x The coordinate x of scroll
+   * @param[in] y The coordinate y of scroll
+   */
+  void SetScrollPosition( int x, int y );
+
+  /**
+   * @brief Gets the current scroll position of the given view.
+   * @param[out] x The coordinate x of scroll
+   * @param[out] y The coordinate y of scroll
+   */
+  Dali::Vector2 GetScrollPosition() const;
+
+  /**
+   * @brief Gets the possible scroll size of the given view.
+   * @param[out] width The width of scroll size
+   * @param[out] height The height of scroll size
+   */
+  Dali::Vector2 GetScrollSize() const;
+
+  /**
+   * @brief Gets the last known content's size.
+   * @param[out] width The width of content's size
+   * @param[out] height The height of content's size
+   */
+  Dali::Vector2 GetContentSize() const;
+
+  /**
+   * @brief Returns the title of the Web.
+   *
+   * @return The title of web page
+   */
+  std::string GetTitle() const;
+
+  /**
+   * @brief Get user agent string.
+   * @return The string value of user agent
+   */
+  const std::string& GetUserAgent() const;
+
+  /**
+   * @brief Set user agent string.
+   * @param[in] userAgent The string value of user agent
+   */
+  void SetUserAgent( const std::string& userAgent );
+
+  /**
+   * @brief Updates display area of web view.
+   * @param[in] source The soource triggers Notification.
+   */
+  void UpdateDisplayArea( Dali::PropertyNotification& source );
+
+  /**
+   * @brief Enable/Disable video hole for video playing.
+   * @param[in] enabled True if video hole is enabled, false otherwise.
+   */
+  void EnableVideoHole( bool enabled );
+
+  /**
+   * @brief Enable blend mode.
+   * @param[in] blendEnabled True if turn on blend mode, false otherwise.
+   */
+  void EnableBlendMode( bool blendEnabled );
+
+  /**
+   * @brief Callback function to be called when page load started.
+   * @param[in] url The url currently being loaded
+   */
   void OnPageLoadStarted( const std::string& url );
 
+  /**
+   * @brief Callback function to be called when page load finished.
+   * @param[in] url The url currently being loaded
+   */
   void OnPageLoadFinished( const std::string& url );
 
+  /**
+   * @brief Callback function to be called when there is an error in page loading.
+   * @param[in] url The url currently being loaded
+   * @param[in] errorCode The error code
+   */
+  void OnPageLoadError( const std::string& url, int errorCode );
+
+  /**
+   * @brief Callback function to be called when scroll edge is reached.
+   * @param[in] e The scroll edge reached.
+   */
+  void OnScrollEdgeReached( Dali::WebEnginePlugin::ScrollEdge edge );
+
 private:
 
-  std::string mUrl;
-  Dali::Toolkit::Visual::Base mVisual;
-  Dali::Size mWebViewSize;
-  Dali::WebEngine mWebEngine;
-  Dali::Toolkit::WebView::WebViewSignalType mPageLoadStartedSignal;
-  Dali::Toolkit::WebView::WebViewSignalType mPageLoadFinishedSignal;
+  std::string                                            mUrl;
+  Dali::Toolkit::Visual::Base                            mVisual;
+  Dali::Size                                             mWebViewSize;
+  Dali::WebEngine                                        mWebEngine;
+
+  Dali::Toolkit::WebView::WebViewPageLoadSignalType      mPageLoadStartedSignal;
+  Dali::Toolkit::WebView::WebViewPageLoadSignalType      mPageLoadFinishedSignal;
+  Dali::Toolkit::WebView::WebViewPageLoadErrorSignalType mPageLoadErrorSignal;
+  Dali::Toolkit::WebView::WebViewScrollEdgeReachedSignalType mScrollEdgeReachedSignal;
+
+  std::unique_ptr<Dali::Toolkit::WebContext>             mWebContext;
+  std::unique_ptr<Dali::Toolkit::WebCookieManager>       mWebCookieManager;
+  std::unique_ptr<Dali::Toolkit::WebSettings>            mWebSettings;
+  std::unique_ptr<Dali::Toolkit::WebBackForwardList>     mWebBackForwardList;
+  Dali::Toolkit::ImageView mFaviconView;
+
+  Dali::PropertyNotification                             mPositionUpdateNotification;
+  Dali::PropertyNotification                             mSizeUpdateNotification;
+  Dali::PropertyNotification                             mScaleUpdateNotification;
+  bool                                                   mVideoHoleEnabled;
+  Dali::Rect< int >                                      mWebViewArea;
 };
 
 } // namespace Internal