[dali_2.3.21] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / web-view / web-view-impl.h
1 #ifndef DALI_TOOLKIT_INTERNAL_WEB_VIEW_H
2 #define DALI_TOOLKIT_INTERNAL_WEB_VIEW_H
3
4 /*
5  * Copyright (c) 2022 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <dali/devel-api/actors/actor-devel.h>
23 #include <dali/devel-api/adaptor-framework/proxy-accessible.h>
24 #include <dali/devel-api/adaptor-framework/web-engine/web-engine.h>
25 #include <dali/public-api/images/image-operations.h>
26 #include <dali/public-api/object/property-notification.h>
27 #include <memory>
28 #include <unordered_map>
29
30 // INTERNAL INCLUDES
31 #include <dali-toolkit/devel-api/controls/control-accessible.h>
32 #include <dali-toolkit/devel-api/controls/web-view/web-view.h>
33 #include <dali-toolkit/devel-api/visual-factory/visual-base.h>
34 #include <dali-toolkit/public-api/controls/control-impl.h>
35 #include <dali-toolkit/public-api/controls/image-view/image-view.h>
36
37 namespace Dali
38 {
39 namespace Toolkit
40 {
41 class KeyEvent;
42 class TouchEvent;
43 class WebBackForwardList;
44 class WebSettings;
45 class WebView;
46
47 namespace Internal
48 {
49 class WebView : public Control
50 {
51 protected:
52   WebView();
53
54   WebView(const std::string& locale, const std::string& timezoneId);
55
56   WebView(uint32_t argc, char** argv);
57
58   virtual ~WebView();
59
60 public:
61   /**
62    * @copydoc Dali::Toolkit::WebView::New()
63    */
64   static Toolkit::WebView New();
65
66   /**
67    * @copydoc Dali::Toolkit::WebView::New( const std::string&, const std::string& )
68    */
69   static Toolkit::WebView New(const std::string& locale, const std::string& timezoneId);
70
71   /**
72    * @copydoc Dali::Toolkit::WebView::New( uint32_t, char** )
73    */
74   static Toolkit::WebView New(uint32_t argc, char** argv);
75
76   /**
77    * @copydoc Dali::Toolkit::WebView::FindWebView()
78    */
79   static Toolkit::WebView FindWebView(Dali::WebEnginePlugin* plugin);
80
81   /**
82    * @copydoc Dali::Toolkit::WebView::GetContext()
83    */
84   static Dali::WebEngineContext* GetContext();
85
86   /**
87    * @copydoc Dali::Toolkit::WebView::GetCookieManager()
88    */
89   static Dali::WebEngineCookieManager* GetCookieManager();
90
91   /**
92    * @copydoc Dali::Toolkit::WebView::GetSettings()
93    */
94   Dali::Toolkit::WebSettings* GetSettings() const;
95
96   /**
97    * @copydoc Dali::Toolkit::WebView::GetBackForwardList()
98    */
99   Dali::Toolkit::WebBackForwardList* GetBackForwardList() const;
100
101   /**
102    * @copydoc Dali::Toolkit::WebView::GetPlugin()
103    */
104   Dali::WebEnginePlugin* GetPlugin() const;
105
106   /**
107    * @copydoc Dali::Toolkit::WebView::GetFavicon()
108    */
109   Dali::Toolkit::ImageView GetFavicon() const;
110
111   /**
112    * @copydoc Dali::Toolkit::WebView::LoadUrl()
113    */
114   void LoadUrl(const std::string& url);
115
116   /**
117    * @copydoc Dali::WebEngine::LoadHTMLString()
118    */
119   void LoadHtmlString(const std::string& htmlString);
120
121   /**
122    * @copydoc Dali::WebEngine::LoadHtmlStringOverrideCurrentEntry()
123    */
124   bool LoadHtmlStringOverrideCurrentEntry(const std::string& html, const std::string& basicUri, const std::string& unreachableUrl);
125
126   /**
127    * @copydoc Dali::WebEngine::LoadContents()
128    */
129   bool LoadContents(const std::string& contents, uint32_t contentSize, const std::string& mimeType, const std::string& encoding, const std::string& baseUri);
130
131   /**
132    * @copydoc Dali::Toolkit::WebView::Reload()
133    */
134   void Reload();
135
136   /**
137    * @copydoc Dali::WebEngine::ReloadWithoutCache()
138    */
139   bool ReloadWithoutCache();
140
141   /**
142    * @copydoc Dali::Toolkit::WebView::StopLoading()
143    */
144   void StopLoading();
145
146   /**
147    * @copydoc Dali::Toolkit::WebView::StopLoading()
148    */
149   void Suspend();
150
151   /**
152    * @copydoc Dali::Toolkit::WebView::Resume()
153    */
154   void Resume();
155
156   /**
157    * @copydoc Dali::WebEngine::SuspendNetworkLoading()
158    */
159   void SuspendNetworkLoading();
160
161   /**
162    * @copydoc Dali::WebEngine::ResumeNetworkLoading()
163    */
164   void ResumeNetworkLoading();
165
166   /**
167    * @copydoc Dali::WebEngine::AddCustomHeader()
168    */
169   bool AddCustomHeader(const std::string& name, const std::string& value);
170
171   /**
172    * @copydoc Dali::WebEngine::RemoveCustomHeader()
173    */
174   bool RemoveCustomHeader(const std::string& name);
175
176   /**
177    * @copydoc Dali::WebEngine::StartInspectorServer()
178    */
179   uint32_t StartInspectorServer(uint32_t port);
180
181   /**
182    * @copydoc Dali::WebEngine::StopInspectorServer()
183    */
184   bool StopInspectorServer();
185
186   /**
187    * @copydoc Dali::Toolkit::WebView::ScrollBy()
188    */
189   void ScrollBy(int32_t deltaX, int32_t deltaY);
190
191   /**
192    * @copydoc Dali::WebEngine::ScrollEdgeBy()
193    */
194   bool ScrollEdgeBy(int32_t deltaX, int32_t deltaY);
195
196   /**
197    * @copydoc Dali::Toolkit::WebView::CanGoForward()
198    */
199   bool CanGoForward();
200
201   /**
202    * @copydoc Dali::Toolkit::WebView::GoForward()
203    */
204   void GoForward();
205
206   /**
207    * @copydoc Dali::Toolkit::WebView::CanGoBack()
208    */
209   bool CanGoBack();
210
211   /**
212    * @copydoc Dali::Toolkit::WebView::GoBack()
213    */
214   void GoBack();
215
216   /**
217    * @copydoc Dali::Toolkit::WebView::EvaluateJavaScript()
218    */
219   void EvaluateJavaScript(const std::string& script, Dali::WebEnginePlugin::JavaScriptMessageHandlerCallback resultHandler);
220
221   /**
222    * @copydoc Dali::Toolkit::WebView::AddJavaScriptMessageHandler()
223    */
224   void AddJavaScriptMessageHandler(const std::string& exposedObjectName, Dali::WebEnginePlugin::JavaScriptMessageHandlerCallback handler);
225
226   /**
227    * @copydoc Dali::Toolkit::WebView::RegisterJavaScriptAlertCallback()
228    */
229   void RegisterJavaScriptAlertCallback(Dali::WebEnginePlugin::JavaScriptAlertCallback callback);
230
231   /**
232    * @copydoc Dali::Toolkit::WebView::JavaScriptAlertReply()
233    */
234   void JavaScriptAlertReply();
235
236   /**
237    * @copydoc Dali::Toolkit::WebView::RegisterJavaScriptConfirmCallback()
238    */
239   void RegisterJavaScriptConfirmCallback(Dali::WebEnginePlugin::JavaScriptConfirmCallback callback);
240
241   /**
242    * @copydoc Dali::Toolkit::WebView::JavaScriptConfirmReply()
243    */
244   void JavaScriptConfirmReply(bool confirmed);
245
246   /**
247    * @copydoc Dali::Toolkit::WebView::RegisterJavaScriptPromptCallback()
248    */
249   void RegisterJavaScriptPromptCallback(Dali::WebEnginePlugin::JavaScriptPromptCallback callback);
250
251   /**
252    * @copydoc Dali::Toolkit::WebView::JavaScriptPromptReply()
253    */
254   void JavaScriptPromptReply(const std::string& result);
255
256   /**
257    * @copydoc Dali::Toolkit::WebView::CreateHitTest()
258    */
259   std::unique_ptr<Dali::WebEngineHitTest> CreateHitTest(int32_t x, int32_t y, Dali::WebEngineHitTest::HitTestMode mode);
260
261   /**
262    * @copydoc Dali::Toolkit::WebView::CreateHitTestAsynchronously()
263    */
264   bool CreateHitTestAsynchronously(int32_t x, int32_t y, Dali::WebEngineHitTest::HitTestMode mode, Dali::WebEnginePlugin::WebEngineHitTestCreatedCallback callback);
265
266   /**
267    * @copydoc Dali::Toolkit::WebView::ClearHistory()
268    */
269   void ClearHistory();
270
271   /**
272    * @copydoc Dali::Toolkit::WebView::ClearAllTilesResources()
273    */
274   void ClearAllTilesResources();
275
276   /**
277    * @copydoc Dali::Toolkit::WebView::SetScaleFactor()
278    */
279   void SetScaleFactor(float scaleFactor, Dali::Vector2 point);
280
281   /**
282    * @copydoc Dali::Toolkit::WebView::GetScaleFactor()
283    */
284   float GetScaleFactor() const;
285
286   /**
287    * @copydoc Dali::Toolkit::WebView::ActivateAccessibility()
288    */
289   void ActivateAccessibility(bool activated);
290
291   /**
292    * @copydoc Dali::Toolkit::WebView::HighlightText()
293    */
294   bool HighlightText(const std::string& text, Dali::WebEnginePlugin::FindOption options, uint32_t maxMatchCount);
295
296   /**
297    * @copydoc Dali::Toolkit::WebView::AddDynamicCertificatePath()
298    */
299   void AddDynamicCertificatePath(const std::string& host, const std::string& certPath);
300
301   /**
302    * @copydoc Dali::Toolkit::WebView::GetScreenshot()
303    */
304   Dali::Toolkit::ImageView GetScreenshot(Dali::Rect<int32_t> viewArea, float scaleFactor);
305
306   /**
307    * @copydoc Dali::Toolkit::WebView::GetScreenshotAsynchronously()
308    */
309   bool GetScreenshotAsynchronously(Dali::Rect<int32_t> viewArea, float scaleFactor, Dali::Toolkit::WebView::WebViewScreenshotCapturedCallback callback);
310
311   /**
312    * @copydoc Dali::Toolkit::WebView::CheckVideoPlayingAsynchronously()
313    */
314   bool CheckVideoPlayingAsynchronously(Dali::WebEnginePlugin::VideoPlayingCallback callback);
315
316   /**
317    * @copydoc Dali::Toolkit::WebView::RegisterGeolocationPermissionCallback()
318    */
319   void RegisterGeolocationPermissionCallback(Dali::WebEnginePlugin::GeolocationPermissionCallback callback);
320
321   /**
322    * @copydoc Dali::Toolkit::WebView::SetTtsFocus()
323    */
324   void SetTtsFocus(bool focused);
325
326   /**
327    * @copydoc Dali::Toolkit::WebView::RegisterPageLoadStartedCallback()
328    */
329   void RegisterPageLoadStartedCallback(Dali::WebEnginePlugin::WebEnginePageLoadCallback callback);
330
331   /**
332    * @copydoc Dali::Toolkit::WebView::RegisterPageLoadInProgressCallback()
333    */
334   void RegisterPageLoadInProgressCallback(Dali::WebEnginePlugin::WebEnginePageLoadCallback callback);
335
336   /**
337    * @copydoc Dali::Toolkit::WebView::RegisterPageLoadFinishedCallback()
338    */
339   void RegisterPageLoadFinishedCallback(Dali::WebEnginePlugin::WebEnginePageLoadCallback callback);
340
341   /**
342    * @copydoc Dali::Toolkit::WebView::RegisterPageLoadErrorCallback()
343    */
344   void RegisterPageLoadErrorCallback(Dali::WebEnginePlugin::WebEnginePageLoadErrorCallback callback);
345
346   /**
347    * @copydoc Dali::Toolkit::WebView::RegisterScrollEdgeReachedCallback()
348    */
349   void RegisterScrollEdgeReachedCallback(Dali::WebEnginePlugin::WebEngineScrollEdgeReachedCallback callback);
350
351   /**
352    * @copydoc Dali::Toolkit::WebView::RegisterUrlChangedCallback()
353    */
354   void RegisterUrlChangedCallback(Dali::WebEnginePlugin::WebEngineUrlChangedCallback callback);
355
356   /**
357    * @copydoc Dali::Toolkit::WebView::RegisterFormRepostDecidedCallback()
358    */
359   void RegisterFormRepostDecidedCallback(Dali::WebEnginePlugin::WebEngineFormRepostDecidedCallback callback);
360
361   /**
362    * @copydoc Dali::Toolkit::WebView::RegisterFrameRenderedCallback()
363    */
364   void RegisterFrameRenderedCallback(Dali::WebEnginePlugin::WebEngineFrameRenderedCallback callback);
365
366   /**
367    * @copydoc Dali::Toolkit::WebView::RegisterConsoleMessageReceivedCallback()
368    */
369   void RegisterConsoleMessageReceivedCallback(Dali::WebEnginePlugin::WebEngineConsoleMessageReceivedCallback callback);
370
371   /**
372    * @copydoc Dali::Toolkit::WebView::RegisterResponsePolicyDecidedCallback()
373    */
374   void RegisterResponsePolicyDecidedCallback(Dali::WebEnginePlugin::WebEngineResponsePolicyDecidedCallback callback);
375
376   /**
377    * @copydoc Dali::Toolkit::WebView::RegisterNavigationPolicyDecidedCallback()
378    */
379   void RegisterNavigationPolicyDecidedCallback(Dali::WebEnginePlugin::WebEngineNavigationPolicyDecidedCallback callback);
380
381   /**
382    * @copydoc Dali::Toolkit::WebView::RegisterNewWindowCreatedCallback()
383    */
384   void RegisterNewWindowCreatedCallback(Dali::WebEnginePlugin::WebEngineNewWindowCreatedCallback callback);
385
386   /**
387    * @copydoc Dali::Toolkit::WebView::RegisterCertificateConfirmedCallback()
388    */
389   void RegisterCertificateConfirmedCallback(Dali::WebEnginePlugin::WebEngineCertificateCallback callback);
390
391   /**
392    * @copydoc Dali::Toolkit::WebView::RegisterSslCertificateChangedCallback()
393    */
394   void RegisterSslCertificateChangedCallback(Dali::WebEnginePlugin::WebEngineCertificateCallback callback);
395
396   /**
397    * @copydoc Dali::Toolkit::WebView::RegisterHttpAuthHandlerCallback()
398    */
399   void RegisterHttpAuthHandlerCallback(Dali::WebEnginePlugin::WebEngineHttpAuthHandlerCallback callback);
400
401   /**
402    * @copydoc Dali::Toolkit::WebView::RegisterContextMenuShownCallback()
403    */
404   void RegisterContextMenuShownCallback(Dali::WebEnginePlugin::WebEngineContextMenuShownCallback callback);
405
406   /**
407    * @copydoc Dali::Toolkit::WebView::RegisterContextMenuHiddenCallback()
408    */
409   void RegisterContextMenuHiddenCallback(Dali::WebEnginePlugin::WebEngineContextMenuHiddenCallback callback);
410
411   /**
412    * @copydoc Dali::Toolkit::WebView::GetPlainTextAsynchronously()
413    */
414   void GetPlainTextAsynchronously(Dali::WebEnginePlugin::PlainTextReceivedCallback callback);
415
416 public: // Properties
417   /**
418    * @brief Called when a property of an object of this type is set.
419    *
420    * @param[in] object The object whose property is set.
421    * @param[in] index The property index.
422    * @param[in] value The new property value.
423    */
424   static void SetProperty(Dali::BaseObject* object, Dali::Property::Index index, const Dali::Property::Value& value);
425
426   /**
427    * @brief Called to retrieve a property of an object of this type.
428    *
429    * @param[in] object The object whose property is to be retrieved.
430    * @param[in] index The property index.
431    * @return The current value of the property.
432    */
433   static Dali::Property::Value GetProperty(Dali::BaseObject* object, Dali::Property::Index propertyIndex);
434
435 private: // From Control
436   /**
437    * @copydoc Toolkit::Control::OnInitialize()
438    */
439   void OnInitialize() override;
440
441   /**
442    * @copydoc Toolkit::Internal::Control::CreateAccessibleObject()
443    */
444   DevelControl::ControlAccessible* CreateAccessibleObject() override;
445
446   /**
447    * @copydoc Toolkit::Control::GetNaturalSize
448    */
449   Vector3 GetNaturalSize() override;
450
451   /**
452    * @copydoc Toolkit::Control::OnKeyEvent()
453    */
454   bool OnKeyEvent(const Dali::KeyEvent& event) override;
455
456   /**
457    * @copydoc Toolkit::Control::OnKeyInputFocusGained()
458    */
459   void OnKeyInputFocusGained() override;
460
461   /**
462    * @copydoc Toolkit::Control::OnKeyInputFocusLost()
463    */
464   void OnKeyInputFocusLost() override;
465
466   /**
467    * @copydoc Toolkit::Control::OnSceneConnection()
468    */
469   void OnSceneConnection(int depth) override;
470
471 private:
472   // Undefined
473   WebView(const WebView& webView);
474
475   WebView& operator=(const WebView& webView);
476
477   /**
478    * @brief Set an absolute scroll of the given view.
479    * @param[in] x The coordinate x of scroll
480    * @param[in] y The coordinate y of scroll
481    */
482   void SetScrollPosition(int32_t x, int32_t y);
483
484   /**
485    * @brief Get the current scroll position of the given view.
486    * @param[out] x The coordinate x of scroll
487    * @param[out] y The coordinate y of scroll
488    */
489   Dali::Vector2 GetScrollPosition() const;
490
491   /**
492    * @brief Get the possible scroll size of the given view.
493    * @param[out] width The width of scroll size
494    * @param[out] height The height of scroll size
495    */
496   Dali::Vector2 GetScrollSize() const;
497
498   /**
499    * @brief Get the last known content's size.
500    * @param[out] width The width of content's size
501    * @param[out] height The height of content's size
502    */
503   Dali::Vector2 GetContentSize() const;
504
505   /**
506    * @brief Return the title of the Web.
507    *
508    * @return The title of web page
509    */
510   std::string GetTitle() const;
511
512   /**
513    * @brief Set the background color of web page.
514    * @param[in] color The value of background color.
515    */
516   void SetDocumentBackgroundColor(Dali::Vector4 color);
517
518   /**
519    * @brief Clear tiles when hidden.
520    *
521    * @param[in] cleared Whether tiles are cleared or not
522    */
523   void ClearTilesWhenHidden(bool cleared);
524
525   /**
526    * @brief Set multiplier of cover area of tile.
527    *
528    * @param[in] multiplier The multiplier of cover area
529    */
530   void SetTileCoverAreaMultiplier(float multiplier);
531
532   /**
533    * @brief Enable cursor by client.
534    * @param[in] enabled Whether cursor is enabled or not.
535    */
536   void EnableCursorByClient(bool enabled);
537
538   /**
539    * @brief Get the selected text.
540    * @return The selected text
541    */
542   std::string GetSelectedText() const;
543
544   /**
545    * @brief Get url of web page.
546    * @return The string of url
547    */
548   std::string GetUrl() const;
549
550   /**
551    * @brief Get user agent string.
552    * @return The string value of user agent
553    */
554   std::string GetUserAgent() const;
555
556   /**
557    * @brief Set user agent string.
558    * @param[in] userAgent The string value of user agent
559    */
560   void SetUserAgent(const std::string& userAgent);
561
562   /**
563    * @brief Set zoom factor of the current page.
564    * @param[in] zoomFactor a new factor to be set.
565    */
566   void SetPageZoomFactor(float zoomFactor);
567
568   /**
569    * @brief Query the current zoom factor of the page。
570    * @return The current page zoom factor.
571    */
572   float GetPageZoomFactor() const;
573
574   /**
575    * @brief Set the current text zoom level。.
576    * @param[in] zoomFactor a new factor to be set.
577    */
578   void SetTextZoomFactor(float zoomFactor);
579
580   /**
581    * @brief Get the current text zoom level.
582    * @return The current text zoom factor.
583    */
584   float GetTextZoomFactor() const;
585
586   /**
587    * @brief Get the current load progress of the page.
588    * @return The load progress of the page.
589    */
590   float GetLoadProgressPercentage() const;
591
592   /**
593    * @brief Request to set the current page's visibility.
594    * @param[in] visible Visible or not.
595    *
596    * @return true if succeeded, false otherwise
597    */
598   bool SetVisibility(bool visible);
599
600   /**
601    * @brief Enable/Disable video hole for video playing.
602    * @param[in] enabled True if video hole is enabled, false otherwise.
603    */
604   void EnableVideoHole(bool enabled);
605
606   /**
607    * @brief Enable blend mode.
608    * @param[in] blendEnabled True if turn on blend mode, false otherwise.
609    */
610   void EnableBlendMode(bool blendEnabled);
611
612   /**
613    * @brief Enable/disable mouse events. The default is enabled.
614    *
615    * @param[in] enabled True if mouse events are enabled, false otherwise
616    */
617   void EnableMouseEvents(bool enabled);
618
619   /**
620    * @brief Enable/disable key events. The default is enabled.
621    *
622    * @param[in] enabled True if key events enabled, false otherwise
623    */
624   void EnableKeyEvents(bool enabled);
625
626   /**
627    * @brief Create image view by pixel data.
628    * @param[in] pixel Pixel data
629    * @return The new image view
630    */
631   Dali::Toolkit::ImageView CreateImageView(Dali::PixelData pixel) const;
632
633   /**
634    * @brief Signal occurs when the Web View has been touched.
635    * @param[in] actor The Actor Touched
636    * @param[in] touch The Touch Data.
637    * @return Whether to consume event or not.
638    */
639   bool OnTouchEvent(Actor actor, const Dali::TouchEvent& touch);
640
641   /**
642    * @brief Signal occurs when the Web View has been hovered.
643    * @param[in] actor The Actor Hovered
644    * @param[in] hover The Hover Data.
645    * @return Whether to consume event or not.
646    */
647   bool OnHoverEvent(Actor actor, const Dali::HoverEvent& hover);
648
649   /**
650    * @brief Signal occurs when the Web View receives wheel event.
651    * @param[in] actor The Actor that receives Wheel event.
652    * @param[in] wheel The Wheel Data.
653    * @return Whether to consume event or not.
654    */
655   bool OnWheelEvent(Actor actor, const Dali::WheelEvent& wheel);
656
657   /**
658    * @brief Callback function to be called when frame is rendered.
659    */
660   void OnFrameRendered();
661
662   /**
663    * @brief Callback for updating display area of web view.
664    * @param[in] source The soource triggers Notification.
665    */
666   void OnDisplayAreaUpdated(Dali::PropertyNotification& source);
667
668   /**
669    * @brief Callback function to be called when visibility is changed.
670    * @param[in] actor The actor, or child of actor, whose visibility has changed
671    * @param[in] isVisible Whether the actor is now visible or not
672    * @param[in] type, Whether the actor's visible property has changed or a parent's
673    */
674   void OnVisibilityChanged(Actor actor, bool isVisible, Dali::DevelActor::VisibilityChange::Type type);
675
676   /**
677    * @brief callback for screen shot captured.
678    * @param[in] pixel Pixel data of screen shot.
679    */
680   void OnScreenshotCaptured(Dali::PixelData pixel);
681
682 protected:
683   class WebViewAccessible : public DevelControl::ControlAccessible
684   {
685   public:
686     WebViewAccessible() = delete;
687
688     WebViewAccessible(Dali::Actor self, Dali::WebEngine& webEngine);
689
690   protected:
691     /**
692      * @copydoc Dali::Accessibility::Accessible::GetAttributes()
693      */
694     Dali::Accessibility::Attributes GetAttributes() const override;
695
696     /**
697      * @copydoc Dali::Accessibility::ActorAccessible::DoGetChildren()
698      */
699     void DoGetChildren(std::vector<Dali::Accessibility::Accessible*>& children) override;
700
701   private:
702     void OnAccessibilityEnabled();
703     void OnAccessibilityDisabled();
704     void SetRemoteChildAddress(Dali::Accessibility::Address address);
705
706     Dali::Accessibility::ProxyAccessible mRemoteChild;
707     Dali::WebEngine&                     mWebEngine;
708   };
709
710 private:
711   Dali::Toolkit::Visual::Base mVisual;
712   Dali::Size                  mWebViewSize;
713   Dali::WebEngine             mWebEngine;
714
715   std::unique_ptr<Dali::Toolkit::WebSettings>        mWebSettings;
716   std::unique_ptr<Dali::Toolkit::WebBackForwardList> mWebBackForwardList;
717
718   Dali::PropertyNotification mPositionUpdateNotification;
719   Dali::PropertyNotification mSizeUpdateNotification;
720   Dali::PropertyNotification mScaleUpdateNotification;
721   Dali::Rect<int32_t>        mWebViewArea;
722   bool                       mVideoHoleEnabled;
723   bool                       mMouseEventsEnabled;
724   bool                       mKeyEventsEnabled;
725
726   Dali::Toolkit::WebView::WebViewScreenshotCapturedCallback mScreenshotCapturedCallback;
727   Dali::WebEnginePlugin::WebEngineFrameRenderedCallback     mFrameRenderedCallback;
728
729   static std::unordered_map<Dali::WebEnginePlugin*, Dali::WeakHandle<Toolkit::WebView>> mPluginWebViewMap;
730 };
731
732 } // namespace Internal
733
734 inline Toolkit::Internal::WebView& GetImpl(Toolkit::WebView& handle)
735 {
736   DALI_ASSERT_ALWAYS(handle);
737   Dali::RefObject& impl = handle.GetImplementation();
738   return static_cast<Toolkit::Internal::WebView&>(impl);
739 }
740
741 inline const Toolkit::Internal::WebView& GetImpl(const Toolkit::WebView& handle)
742 {
743   DALI_ASSERT_ALWAYS(handle);
744   const Dali::RefObject& impl = handle.GetImplementation();
745   return static_cast<const Toolkit::Internal::WebView&>(impl);
746 }
747
748 } // namespace Toolkit
749
750 } // namespace Dali
751
752 #endif // DALI_TOOLKIT_INTERNAL_WEB_VIEW_H