Support policy decision in web view.
[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) 2021 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/web-engine.h>
24 #include <dali/public-api/images/image-operations.h>
25 #include <dali/public-api/object/property-notification.h>
26 #include <memory>
27
28 // INTERNAL INCLUDES
29 #include <dali-toolkit/devel-api/controls/web-view/web-view.h>
30 #include <dali-toolkit/devel-api/visual-factory/visual-base.h>
31 #include <dali-toolkit/public-api/controls/control-impl.h>
32 #include <dali-toolkit/public-api/controls/image-view/image-view.h>
33
34 namespace Dali
35 {
36 namespace Toolkit
37 {
38 class KeyEvent;
39 class TouchEvent;
40 class WebBackForwardList;
41 class WebContext;
42 class WebCookieManager;
43 class WebSettings;
44 class WebView;
45
46 namespace Internal
47 {
48 class WebView : public Control
49 {
50 protected:
51   WebView();
52
53   WebView(const std::string& locale, const std::string& timezoneId);
54
55   WebView(int argc, char** argv);
56
57   virtual ~WebView();
58
59 public:
60   /**
61    * @copydoc Dali::Toolkit::WebView::New()
62    */
63   static Toolkit::WebView New();
64
65   /**
66    * @copydoc Dali::Toolkit::WebView::New( const std::string&, const std::string& )
67    */
68   static Toolkit::WebView New(const std::string& locale, const std::string& timezoneId);
69
70   /**
71    * @copydoc Dali::Toolkit::WebView::New( int, char** )
72    */
73   static Toolkit::WebView New(int argc, char** argv);
74
75   /**
76    * @brief Get settings of WebEngine.
77    */
78   Dali::Toolkit::WebSettings* GetSettings() const;
79
80   /**
81    * @brief Get context of WebEngine.
82    */
83   Dali::Toolkit::WebContext* GetContext() const;
84
85   /**
86    * @brief Get cookie manager of WebEngine.
87    */
88   Dali::Toolkit::WebCookieManager* GetCookieManager() const;
89
90   /**
91    * @brief Get WebBackForwardList of WebEngine.
92    */
93   Dali::Toolkit::WebBackForwardList* GetBackForwardList() const;
94
95   /**
96    * @brief Get Favicon of web page.
97    *
98    * @return Handle to a fav icon
99    */
100   Dali::Toolkit::ImageView& GetFavicon();
101
102   /**
103    * @copydoc Dali::Toolkit::WebView::LoadUrl()
104    */
105   void LoadUrl(const std::string& url);
106
107   /**
108    * @copydoc Dali::WebEngine::LoadHTMLString()
109    */
110   void LoadHtmlString(const std::string& htmlString);
111
112   /**
113    * @copydoc Dali::WebEngine::LoadHtmlStringOverrideCurrentEntry()
114    */
115   bool LoadHtmlStringOverrideCurrentEntry(const std::string& html, const std::string& basicUri, const std::string& unreachableUrl);
116
117   /**
118    * @copydoc Dali::WebEngine::LoadContents()
119    */
120   bool LoadContents(const std::string& contents, uint32_t contentSize, const std::string& mimeType, const std::string& encoding, const std::string& baseUri);
121
122   /**
123    * @copydoc Dali::Toolkit::WebView::Reload()
124    */
125   void Reload();
126
127   /**
128    * @copydoc Dali::WebEngine::ReloadWithoutCache()
129    */
130   bool ReloadWithoutCache();
131
132   /**
133    * @copydoc Dali::Toolkit::WebView::StopLoading()
134    */
135   void StopLoading();
136
137   /**
138    * @copydoc Dali::Toolkit::WebView::StopLoading()
139    */
140   void Suspend();
141
142   /**
143    * @copydoc Dali::Toolkit::WebView::Resume()
144    */
145   void Resume();
146
147   /**
148    * @copydoc Dali::WebEngine::SuspendNetworkLoading()
149    */
150   void SuspendNetworkLoading();
151
152   /**
153    * @copydoc Dali::WebEngine::ResumeNetworkLoading()
154    */
155   void ResumeNetworkLoading();
156
157   /**
158    * @copydoc Dali::WebEngine::AddCustomHeader()
159    */
160   bool AddCustomHeader(const std::string& name, const std::string& value);
161
162   /**
163    * @copydoc Dali::WebEngine::RemoveCustomHeader()
164    */
165   bool RemoveCustomHeader(const std::string& name);
166
167   /**
168    * @copydoc Dali::WebEngine::StartInspectorServer()
169    */
170   uint32_t StartInspectorServer(uint32_t port);
171
172   /**
173    * @copydoc Dali::WebEngine::StopInspectorServer()
174    */
175   bool StopInspectorServer();
176
177   /**
178    * @copydoc Dali::Toolkit::WebView::ScrollBy()
179    */
180   void ScrollBy(int deltaX, int deltaY);
181
182   /**
183    * @copydoc Dali::WebEngine::ScrollEdgeBy()
184    */
185   bool ScrollEdgeBy(int deltaX, int deltaY);
186
187   /**
188    * @copydoc Dali::Toolkit::WebView::CanGoForward()
189    */
190   bool CanGoForward();
191
192   /**
193    * @copydoc Dali::Toolkit::WebView::GoForward()
194    */
195   void GoForward();
196
197   /**
198    * @copydoc Dali::Toolkit::WebView::CanGoBack()
199    */
200   bool CanGoBack();
201
202   /**
203    * @copydoc Dali::Toolkit::WebView::GoBack()
204    */
205   void GoBack();
206
207   /**
208    * @copydoc Dali::Toolkit::WebView::EvaluateJavaScript()
209    */
210   void EvaluateJavaScript(const std::string& script, std::function<void(const std::string&)> resultHandler);
211
212   /**
213    * @copydoc Dali::Toolkit::WebView::AddJavaScriptMessageHandler()
214    */
215   void AddJavaScriptMessageHandler(const std::string& exposedObjectName, std::function<void(const std::string&)> handler);
216
217   /**
218    * @copydoc Dali::Toolkit::WebView::RegisterJavaScriptAlertCallback()
219    */
220   void RegisterJavaScriptAlertCallback(Dali::WebEnginePlugin::JavaScriptAlertCallback callback);
221
222   /**
223    * @copydoc Dali::Toolkit::WebView::JavaScriptAlertReply()
224    */
225   void JavaScriptAlertReply();
226
227   /**
228    * @copydoc Dali::Toolkit::WebView::RegisterJavaScriptConfirmCallback()
229    */
230   void RegisterJavaScriptConfirmCallback(Dali::WebEnginePlugin::JavaScriptConfirmCallback callback);
231
232   /**
233    * @copydoc Dali::Toolkit::WebView::JavaScriptConfirmReply()
234    */
235   void JavaScriptConfirmReply(bool confirmed);
236
237   /**
238    * @copydoc Dali::Toolkit::WebView::RegisterJavaScriptPromptCallback()
239    */
240   void RegisterJavaScriptPromptCallback(Dali::WebEnginePlugin::JavaScriptPromptCallback callback);
241
242   /**
243    * @copydoc Dali::Toolkit::WebView::JavaScriptPromptReply()
244    */
245   void JavaScriptPromptReply(const std::string& result);
246
247   /**
248    * @copydoc Dali::Toolkit::WebView::ClearHistory()
249    */
250   void ClearHistory();
251
252   /**
253    * @copydoc Dali::Toolkit::WebView::ClearAllTilesResources()
254    */
255   void ClearAllTilesResources();
256
257   /**
258    * @copydoc Dali::Toolkit::WebView::SetScaleFactor()
259    */
260   void SetScaleFactor(float scaleFactor, Dali::Vector2 point);
261
262   /**
263    * @copydoc Dali::Toolkit::WebView::GetScaleFactor()
264    */
265   float GetScaleFactor() const;
266
267   /**
268    * @copydoc Dali::Toolkit::WebView::ActivateAccessibility()
269    */
270   void ActivateAccessibility(bool activated);
271
272   /**
273    * @copydoc Dali::Toolkit::WebView::HighlightText()
274    */
275   bool HighlightText(const std::string& text, Dali::WebEnginePlugin::FindOption options, uint32_t maxMatchCount);
276
277   /**
278    * @copydoc Dali::Toolkit::WebView::AddDynamicCertificatePath()
279    */
280   void AddDynamicCertificatePath(const std::string& host, const std::string& certPath);
281
282   /**
283    * @copydoc Dali::Toolkit::WebView::GetScreenshot()
284    */
285   Dali::Toolkit::ImageView GetScreenshot(Dali::Rect<int> viewArea, float scaleFactor);
286
287   /**
288    * @copydoc Dali::Toolkit::WebView::GetScreenshotAsynchronously()
289    */
290   bool GetScreenshotAsynchronously(Dali::Rect<int> viewArea, float scaleFactor, Dali::Toolkit::WebView::WebViewScreenshotCapturedCallback callback);
291
292   /**
293    * @copydoc Dali::Toolkit::WebView::CheckVideoPlayingAsynchronously()
294    */
295   bool CheckVideoPlayingAsynchronously(Dali::WebEnginePlugin::VideoPlayingCallback callback);
296
297   /**
298    * @copydoc Dali::Toolkit::WebView::RegisterGeolocationPermissionCallback()
299    */
300   void RegisterGeolocationPermissionCallback(Dali::WebEnginePlugin::GeolocationPermissionCallback callback);
301
302   /**
303    * @copydoc Dali::Toolkit::WebView::PageLoadStartedSignal()
304    */
305   Dali::Toolkit::WebView::WebViewPageLoadSignalType& PageLoadStartedSignal();
306
307   /**
308    * @copydoc Dali::Toolkit::WebView::PageLoadInProgressSignal()
309    */
310   Dali::Toolkit::WebView::WebViewPageLoadSignalType& PageLoadInProgressSignal();
311
312   /**
313    * @copydoc Dali::Toolkit::WebView::PageLoadFinishedSignal()
314    */
315   Dali::Toolkit::WebView::WebViewPageLoadSignalType& PageLoadFinishedSignal();
316
317   /**
318    * @copydoc Dali::Toolkit::WebView::PageLoadErrorSignal()
319    */
320   Dali::Toolkit::WebView::WebViewPageLoadErrorSignalType& PageLoadErrorSignal();
321
322   /**
323    * @copydoc Dali::Toolkit::WebView::ScrollEdgeReachedSignal()
324    */
325   Dali::Toolkit::WebView::WebViewScrollEdgeReachedSignalType& ScrollEdgeReachedSignal();
326
327   /**
328    * @copydoc Dali::Toolkit::WebView::UrlChangedSignal()
329    */
330   Dali::Toolkit::WebView::WebViewUrlChangedSignalType& UrlChangedSignal();
331
332   /**
333    * @copydoc Dali::Toolkit::WebView::FormRepostDecisionSignal()
334    */
335   Dali::Toolkit::WebView::WebViewFormRepostDecisionSignalType& FormRepostDecisionSignal();
336
337   /**
338    * @copydoc Dali::Toolkit::WebView::FrameRenderedSignal()
339    */
340   Dali::Toolkit::WebView::WebViewFrameRenderedSignalType& FrameRenderedSignal();
341
342   /**
343    * @copydoc Dali::Toolkit::WebView::RequestInterceptorSignal()
344    */
345   Dali::Toolkit::WebView::WebViewRequestInterceptorSignalType& RequestInterceptorSignal();
346
347   /**
348    * @copydoc Dali::Toolkit::WebView::ConsoleMessageSignal()
349    */
350   Dali::Toolkit::WebView::WebViewConsoleMessageSignalType& ConsoleMessageSignal();
351
352   /**
353    * @copydoc Dali::Toolkit::WebView::PolicyDecisionSignal()
354    */
355   Dali::Toolkit::WebView::WebViewPolicyDecisionSignalType& PolicyDecisionSignal();
356
357 public: // Properties
358   /**
359    * @brief Called when a property of an object of this type is set.
360    *
361    * @param[in] object The object whose property is set.
362    * @param[in] index The property index.
363    * @param[in] value The new property value.
364    */
365   static void SetProperty(Dali::BaseObject* object, Dali::Property::Index index, const Dali::Property::Value& value);
366
367   /**
368    * @brief Called to retrieve a property of an object of this type.
369    *
370    * @param[in] object The object whose property is to be retrieved.
371    * @param[in] index The property index.
372    * @return The current value of the property.
373    */
374   static Dali::Property::Value GetProperty(Dali::BaseObject* object, Dali::Property::Index propertyIndex);
375
376   /**
377    * Connects a callback function with the object's signals.
378    * @param[in] object The object providing the signal.
379    * @param[in] tracker Used to disconnect the signal.
380    * @param[in] signalName The signal to connect to.
381    * @param[in] functor A newly allocated FunctorDelegate.
382    * @return True if the signal was connected.
383    * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the c
384    */
385   static bool DoConnectSignal(BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor);
386
387 private: // From Control
388   /**
389    * @copydoc Toolkit::Control::OnInitialize()
390    */
391   void OnInitialize() override;
392
393   /**
394    * @copydoc Toolkit::Control::GetNaturalSize
395    */
396   Vector3 GetNaturalSize() override;
397
398   /**
399    * @copydoc Toolkit::Control::OnKeyEvent()
400    */
401   bool OnKeyEvent(const Dali::KeyEvent& event) override;
402
403   /**
404    * @copydoc Toolkit::Control::OnKeyInputFocusGained()
405    */
406   void OnKeyInputFocusGained() override;
407
408   /**
409    * @copydoc Toolkit::Control::OnKeyInputFocusLost()
410    */
411   void OnKeyInputFocusLost() override;
412
413   /**
414    * @copydoc Toolkit::Control::OnSceneConnection()
415    */
416   void OnSceneConnection(int depth) override;
417
418 private:
419   // Undefined
420   WebView(const WebView& webView);
421
422   WebView& operator=(const WebView& webView);
423
424   /**
425    * @brief Set an absolute scroll of the given view.
426    * @param[in] x The coordinate x of scroll
427    * @param[in] y The coordinate y of scroll
428    */
429   void SetScrollPosition(int x, int y);
430
431   /**
432    * @brief Gets the current scroll position of the given view.
433    * @param[out] x The coordinate x of scroll
434    * @param[out] y The coordinate y of scroll
435    */
436   Dali::Vector2 GetScrollPosition() const;
437
438   /**
439    * @brief Get the possible scroll size of the given view.
440    * @param[out] width The width of scroll size
441    * @param[out] height The height of scroll size
442    */
443   Dali::Vector2 GetScrollSize() const;
444
445   /**
446    * @brief Get the last known content's size.
447    * @param[out] width The width of content's size
448    * @param[out] height The height of content's size
449    */
450   Dali::Vector2 GetContentSize() const;
451
452   /**
453    * @brief Return the title of the Web.
454    *
455    * @return The title of web page
456    */
457   std::string GetTitle() const;
458
459   /**
460    * @brief Set the background color of web page.
461    * @param[in] color The value of background color.
462    */
463   void SetDocumentBackgroundColor(Dali::Vector4 color);
464
465   /**
466    * @brief Clear tiles when hidden.
467    *
468    * @param[in] cleared Whether tiles are cleared or not
469    */
470   void ClearTilesWhenHidden(bool cleared);
471
472   /**
473    * @brief Set multiplier of cover area of tile.
474    *
475    * @param[in] multiplier The multiplier of cover area
476    */
477   void SetTileCoverAreaMultiplier(float multiplier);
478
479   /**
480    * @brief Enable cursor by client.
481    * @param[in] enabled Whether cursor is enabled or not.
482    */
483   void EnableCursorByClient(bool enabled);
484
485   /**
486    * @brief Get the selected text.
487    * @return The selected text
488    */
489   std::string GetSelectedText() const;
490
491   /**
492    * @brief Get user agent string.
493    * @return The string value of user agent
494    */
495   const std::string& GetUserAgent() const;
496
497   /**
498    * @brief Set user agent string.
499    * @param[in] userAgent The string value of user agent
500    */
501   void SetUserAgent(const std::string& userAgent);
502
503   /**
504    * @brief Set zoom factor of the current page.
505    * @param[in] zoomFactor a new factor to be set.
506    */
507   void SetPageZoomFactor(float zoomFactor);
508
509   /**
510    * @brief Query the current zoom factor of the page。
511    * @return The current page zoom factor.
512    */
513   float GetPageZoomFactor() const;
514
515   /**
516    * @brief Set the current text zoom level。.
517    * @param[in] zoomFactor a new factor to be set.
518    */
519   void SetTextZoomFactor(float zoomFactor);
520
521   /**
522    * @brief Get the current text zoom level.
523    * @return The current text zoom factor.
524    */
525   float GetTextZoomFactor() const;
526
527   /**
528    * @brief Get the current load progress of the page.
529    * @return The load progress of the page.
530    */
531   float GetLoadProgressPercentage() const;
532
533   /**
534    * @brief Request to set the current page's visibility.
535    * @param[in] visible Visible or not.
536    *
537    * @return true if succeeded, false otherwise
538    */
539   bool SetVisibility(bool visible);
540
541   /**
542    * @brief Update display area of web view.
543    * @param[in] source The soource triggers Notification.
544    */
545   void UpdateDisplayArea(Dali::PropertyNotification& source);
546
547   /**
548    * @brief Enable/Disable video hole for video playing.
549    * @param[in] enabled True if video hole is enabled, false otherwise.
550    */
551   void EnableVideoHole(bool enabled);
552
553   /**
554    * @brief Enable blend mode.
555    * @param[in] blendEnabled True if turn on blend mode, false otherwise.
556    */
557   void EnableBlendMode(bool blendEnabled);
558
559   /**
560    * @brief Enable/disable mouse events. The default is enabled.
561    *
562    * @param[in] enabled True if mouse events are enabled, false otherwise
563    */
564   void EnableMouseEvents(bool enabled);
565
566   /**
567    * @brief Enable/disable key events. The default is enabled.
568    *
569    * @param[in] enabled True if key events enabled, false otherwise
570    */
571   void EnableKeyEvents(bool enabled);
572
573   /**
574    * @brief Create image view by pixel data.
575    * @param[in] pixel Pixel data
576    * @return The new image view
577    */
578   Dali::Toolkit::ImageView CreateImageView(Dali::PixelData pixel);
579
580   /**
581    * @brief Callback function to be called when page load started.
582    * @param[in] url The url currently being loaded
583    */
584   void OnPageLoadStarted(const std::string& url);
585
586   /**
587    * @brief Callback function to be called when page is loading in progress.
588    * @param[in] url The url currently being loaded
589    */
590   void OnPageLoadInProgress(const std::string& url);
591
592   /**
593    * @brief Callback function to be called when page load finished.
594    * @param[in] url The url currently being loaded
595    */
596   void OnPageLoadFinished(const std::string& url);
597
598   /**
599    * @brief Callback function to be called when there is an error in page loading.
600    * @param[in] url The url currently being loaded
601    * @param[in] errorCode The error code
602    */
603   void OnPageLoadError(std::shared_ptr<Dali::WebEngineLoadError> error);
604
605   /**
606    * @brief Callback function to be called when scroll edge is reached.
607    * @param[in] edge The scroll edge reached.
608    */
609   void OnScrollEdgeReached(Dali::WebEnginePlugin::ScrollEdge edge);
610
611   /**
612    * @brief Callback function to be called when url is changed.
613    * @param[in] url The url currently being loaded
614    */
615   void OnUrlChanged(const std::string& url);
616
617   /**
618    * Signal occurs when the Web View has been touched.
619    * @param[in] actor The Actor Touched
620    * @param[in] touch The Touch Data.
621    * @return Whether to consume event or not.
622    */
623   bool OnTouchEvent(Actor actor, const Dali::TouchEvent& touch);
624
625   /**
626    * Signal occurs when the Web View has been hovered.
627    * @param[in] actor The Actor Hovered
628    * @param[in] hover The Hover Data.
629    * @return Whether to consume event or not.
630    */
631   bool OnHoverEvent(Actor actor, const Dali::HoverEvent& hover);
632
633   /**
634    * Signal occurs when the Web View receives wheel event.
635    * @param[in] actor The Actor that receives Wheel event.
636    * @param[in] wheel The Wheel Data.
637    * @return Whether to consume event or not.
638    */
639   bool OnWheelEvent(Actor actor, const Dali::WheelEvent& wheel);
640
641   /**
642    * @brief Callback function to be called when form repost decision need be checked.
643    * @param[in] decision The new decision for form repost
644    */
645   void OnFormRepostDecision(std::shared_ptr<Dali::WebEngineFormRepostDecision> decision);
646
647   /**
648    * @brief Callback function to be called when frame is rendered.
649    */
650   void OnFrameRendered();
651
652   /**
653    * @brief Callback function to be called when visibility is changed.
654    * @param[in] actor The actor, or child of actor, whose visibility has changed
655    * @param[in] isVisible Whether the actor is now visible or not
656    * @param[in] type, Whether the actor's visible property has changed or a parent's
657    */
658   void OnVisibilityChanged(Actor actor, bool isVisible, Dali::DevelActor::VisibilityChange::Type type);
659
660   /**
661    * @brief callback for screen shot captured.
662    * @param[in] pixel Pixel data of screen shot.
663    */
664   void OnScreenshotCaptured(Dali::PixelData pixel);
665
666   /**
667    * @brief Callback function to be called when http request need be intercepted.
668    * @param [in] request The http request interceptor.
669    */
670   void OnInterceptRequest(std::shared_ptr<Dali::WebEngineRequestInterceptor> interceptor);
671
672   /**
673    * @brief Callback function to be called when console message will be logged.
674    * @param[in] message The message logged.
675    */
676   void OnConsoleMessage(std::shared_ptr<Dali::WebEngineConsoleMessage> message);
677
678   /**
679    * @brief Callback function to be called when policy need be decided.
680    * @param[in] decision The policy decided.
681    */
682   void OnPolicyDecisionRequest(std::shared_ptr<Dali::WebEnginePolicyDecision> decision);
683
684 private:
685   std::string                 mUrl;
686   Dali::Toolkit::Visual::Base mVisual;
687   Dali::Size                  mWebViewSize;
688   Dali::WebEngine             mWebEngine;
689
690   Dali::Toolkit::WebView::WebViewPageLoadSignalType           mPageLoadStartedSignal;
691   Dali::Toolkit::WebView::WebViewPageLoadSignalType           mPageLoadInProgressSignal;
692   Dali::Toolkit::WebView::WebViewPageLoadSignalType           mPageLoadFinishedSignal;
693   Dali::Toolkit::WebView::WebViewPageLoadErrorSignalType      mPageLoadErrorSignal;
694   Dali::Toolkit::WebView::WebViewUrlChangedSignalType         mUrlChangedSignal;
695   Dali::Toolkit::WebView::WebViewScrollEdgeReachedSignalType  mScrollEdgeReachedSignal;
696   Dali::Toolkit::WebView::WebViewFormRepostDecisionSignalType mFormRepostDecisionSignal;
697   Dali::Toolkit::WebView::WebViewFrameRenderedSignalType      mFrameRenderedSignal;
698   Dali::Toolkit::WebView::WebViewRequestInterceptorSignalType mRequestInterceptorSignal;
699   Dali::Toolkit::WebView::WebViewConsoleMessageSignalType     mConsoleMessageSignal;
700   Dali::Toolkit::WebView::WebViewPolicyDecisionSignalType     mPolicyDecisionSignal;
701
702   std::unique_ptr<Dali::Toolkit::WebContext>         mWebContext;
703   std::unique_ptr<Dali::Toolkit::WebCookieManager>   mWebCookieManager;
704   std::unique_ptr<Dali::Toolkit::WebSettings>        mWebSettings;
705   std::unique_ptr<Dali::Toolkit::WebBackForwardList> mWebBackForwardList;
706
707   Dali::Toolkit::ImageView mFaviconView;
708
709   Dali::PropertyNotification mPositionUpdateNotification;
710   Dali::PropertyNotification mSizeUpdateNotification;
711   Dali::PropertyNotification mScaleUpdateNotification;
712   Dali::Rect<int>            mWebViewArea;
713   bool                       mVideoHoleEnabled;
714   bool                       mMouseEventsEnabled;
715   bool                       mKeyEventsEnabled;
716
717   Dali::Toolkit::WebView::WebViewScreenshotCapturedCallback mScreenshotCapturedCallback;
718 };
719
720 } // namespace Internal
721
722 inline Toolkit::Internal::WebView& GetImpl(Toolkit::WebView& handle)
723 {
724   DALI_ASSERT_ALWAYS(handle);
725   Dali::RefObject& impl = handle.GetImplementation();
726   return static_cast<Toolkit::Internal::WebView&>(impl);
727 }
728
729 inline const Toolkit::Internal::WebView& GetImpl(const Toolkit::WebView& handle)
730 {
731   DALI_ASSERT_ALWAYS(handle);
732   const Dali::RefObject& impl = handle.GetImplementation();
733   return static_cast<const Toolkit::Internal::WebView&>(impl);
734 }
735
736 } // namespace Toolkit
737
738 } // namespace Dali
739
740 #endif // DALI_TOOLKIT_INTERNAL_WEB_VIEW_H