cf5319f6d6c247a6bf893b1564ab1a4c06501290
[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 public: // Properties
353   /**
354    * @brief Called when a property of an object of this type is set.
355    *
356    * @param[in] object The object whose property is set.
357    * @param[in] index The property index.
358    * @param[in] value The new property value.
359    */
360   static void SetProperty(Dali::BaseObject* object, Dali::Property::Index index, const Dali::Property::Value& value);
361
362   /**
363    * @brief Called to retrieve a property of an object of this type.
364    *
365    * @param[in] object The object whose property is to be retrieved.
366    * @param[in] index The property index.
367    * @return The current value of the property.
368    */
369   static Dali::Property::Value GetProperty(Dali::BaseObject* object, Dali::Property::Index propertyIndex);
370
371   /**
372    * Connects a callback function with the object's signals.
373    * @param[in] object The object providing the signal.
374    * @param[in] tracker Used to disconnect the signal.
375    * @param[in] signalName The signal to connect to.
376    * @param[in] functor A newly allocated FunctorDelegate.
377    * @return True if the signal was connected.
378    * @post If a signal was connected, ownership of functor was passed to CallbackBase. Otherwise the c
379    */
380   static bool DoConnectSignal(BaseObject* object, ConnectionTrackerInterface* tracker, const std::string& signalName, FunctorDelegate* functor);
381
382 private: // From Control
383   /**
384    * @copydoc Toolkit::Control::OnInitialize()
385    */
386   void OnInitialize() override;
387
388   /**
389    * @copydoc Toolkit::Control::GetNaturalSize
390    */
391   Vector3 GetNaturalSize() override;
392
393   /**
394    * @copydoc Toolkit::Control::OnKeyEvent()
395    */
396   bool OnKeyEvent(const Dali::KeyEvent& event) override;
397
398   /**
399    * @copydoc Toolkit::Control::OnKeyInputFocusGained()
400    */
401   void OnKeyInputFocusGained() override;
402
403   /**
404    * @copydoc Toolkit::Control::OnKeyInputFocusLost()
405    */
406   void OnKeyInputFocusLost() override;
407
408   /**
409    * @copydoc Toolkit::Control::OnSceneConnection()
410    */
411   void OnSceneConnection(int depth) override;
412
413 private:
414   // Undefined
415   WebView(const WebView& webView);
416
417   WebView& operator=(const WebView& webView);
418
419   /**
420    * @brief Set an absolute scroll of the given view.
421    * @param[in] x The coordinate x of scroll
422    * @param[in] y The coordinate y of scroll
423    */
424   void SetScrollPosition(int x, int y);
425
426   /**
427    * @brief Gets the current scroll position of the given view.
428    * @param[out] x The coordinate x of scroll
429    * @param[out] y The coordinate y of scroll
430    */
431   Dali::Vector2 GetScrollPosition() const;
432
433   /**
434    * @brief Get the possible scroll size of the given view.
435    * @param[out] width The width of scroll size
436    * @param[out] height The height of scroll size
437    */
438   Dali::Vector2 GetScrollSize() const;
439
440   /**
441    * @brief Get the last known content's size.
442    * @param[out] width The width of content's size
443    * @param[out] height The height of content's size
444    */
445   Dali::Vector2 GetContentSize() const;
446
447   /**
448    * @brief Return the title of the Web.
449    *
450    * @return The title of web page
451    */
452   std::string GetTitle() const;
453
454   /**
455    * @brief Set the background color of web page.
456    * @param[in] color The value of background color.
457    */
458   void SetDocumentBackgroundColor(Dali::Vector4 color);
459
460   /**
461    * @brief Clear tiles when hidden.
462    *
463    * @param[in] cleared Whether tiles are cleared or not
464    */
465   void ClearTilesWhenHidden(bool cleared);
466
467   /**
468    * @brief Set multiplier of cover area of tile.
469    *
470    * @param[in] multiplier The multiplier of cover area
471    */
472   void SetTileCoverAreaMultiplier(float multiplier);
473
474   /**
475    * @brief Enable cursor by client.
476    * @param[in] enabled Whether cursor is enabled or not.
477    */
478   void EnableCursorByClient(bool enabled);
479
480   /**
481    * @brief Get the selected text.
482    * @return The selected text
483    */
484   std::string GetSelectedText() const;
485
486   /**
487    * @brief Get user agent string.
488    * @return The string value of user agent
489    */
490   const std::string& GetUserAgent() const;
491
492   /**
493    * @brief Set user agent string.
494    * @param[in] userAgent The string value of user agent
495    */
496   void SetUserAgent(const std::string& userAgent);
497
498   /**
499    * @brief Set zoom factor of the current page.
500    * @param[in] zoomFactor a new factor to be set.
501    */
502   void SetPageZoomFactor(float zoomFactor);
503
504   /**
505    * @brief Query the current zoom factor of the page。
506    * @return The current page zoom factor.
507    */
508   float GetPageZoomFactor() const;
509
510   /**
511    * @brief Set the current text zoom level。.
512    * @param[in] zoomFactor a new factor to be set.
513    */
514   void SetTextZoomFactor(float zoomFactor);
515
516   /**
517    * @brief Get the current text zoom level.
518    * @return The current text zoom factor.
519    */
520   float GetTextZoomFactor() const;
521
522   /**
523    * @brief Get the current load progress of the page.
524    * @return The load progress of the page.
525    */
526   float GetLoadProgressPercentage() const;
527
528   /**
529    * @brief Request to set the current page's visibility.
530    * @param[in] visible Visible or not.
531    *
532    * @return true if succeeded, false otherwise
533    */
534   bool SetVisibility(bool visible);
535
536   /**
537    * @brief Update display area of web view.
538    * @param[in] source The soource triggers Notification.
539    */
540   void UpdateDisplayArea(Dali::PropertyNotification& source);
541
542   /**
543    * @brief Enable/Disable video hole for video playing.
544    * @param[in] enabled True if video hole is enabled, false otherwise.
545    */
546   void EnableVideoHole(bool enabled);
547
548   /**
549    * @brief Enable blend mode.
550    * @param[in] blendEnabled True if turn on blend mode, false otherwise.
551    */
552   void EnableBlendMode(bool blendEnabled);
553
554   /**
555    * @brief Enable/disable mouse events. The default is enabled.
556    *
557    * @param[in] enabled True if mouse events are enabled, false otherwise
558    */
559   void EnableMouseEvents(bool enabled);
560
561   /**
562    * @brief Enable/disable key events. The default is enabled.
563    *
564    * @param[in] enabled True if key events enabled, false otherwise
565    */
566   void EnableKeyEvents(bool enabled);
567
568   /**
569    * @brief Create image view by pixel data.
570    * @param[in] pixel Pixel data
571    * @return The new image view
572    */
573   Dali::Toolkit::ImageView CreateImageView(Dali::PixelData pixel);
574
575   /**
576    * @brief Callback function to be called when page load started.
577    * @param[in] url The url currently being loaded
578    */
579   void OnPageLoadStarted(const std::string& url);
580
581   /**
582    * @brief Callback function to be called when page is loading in progress.
583    * @param[in] url The url currently being loaded
584    */
585   void OnPageLoadInProgress(const std::string& url);
586
587   /**
588    * @brief Callback function to be called when page load finished.
589    * @param[in] url The url currently being loaded
590    */
591   void OnPageLoadFinished(const std::string& url);
592
593   /**
594    * @brief Callback function to be called when there is an error in page loading.
595    * @param[in] url The url currently being loaded
596    * @param[in] errorCode The error code
597    */
598   void OnPageLoadError(std::shared_ptr<Dali::WebEngineLoadError> error);
599
600   /**
601    * @brief Callback function to be called when scroll edge is reached.
602    * @param[in] e The scroll edge reached.
603    */
604   void OnScrollEdgeReached(Dali::WebEnginePlugin::ScrollEdge edge);
605
606   /**
607    * @brief Callback function to be called when url is changed.
608    * @param[in] url The url currently being loaded
609    */
610   void OnUrlChanged(const std::string& url);
611
612   /**
613    * Signal occurs when the Web View has been touched.
614    * @param[in] actor The Actor Touched
615    * @param[in] touch The Touch Data.
616    * @return Whether to consume event or not.
617    */
618   bool OnTouchEvent(Actor actor, const Dali::TouchEvent& touch);
619
620   /**
621    * Signal occurs when the Web View has been hovered.
622    * @param[in] actor The Actor Hovered
623    * @param[in] hover The Hover Data.
624    * @return Whether to consume event or not.
625    */
626   bool OnHoverEvent(Actor actor, const Dali::HoverEvent& hover);
627
628   /**
629    * Signal occurs when the Web View receives wheel event.
630    * @param[in] actor The Actor that receives Wheel event.
631    * @param[in] wheel The Wheel Data.
632    * @return Whether to consume event or not.
633    */
634   bool OnWheelEvent(Actor actor, const Dali::WheelEvent& wheel);
635
636   /**
637    * @brief Callback function to be called when form repost decision need be checked.
638    * @param[in] decision The new decision for form repost
639    */
640   void OnFormRepostDecision(std::shared_ptr<Dali::WebEngineFormRepostDecision> decision);
641
642   /**
643    * @brief Callback function to be called when frame is rendered.
644    */
645   void OnFrameRendered();
646
647   /**
648    * @brief Callback function to be called when visibility is changed.
649    * @param[in] actor The actor, or child of actor, whose visibility has changed
650    * @param[in] isVisible Whether the actor is now visible or not
651    * @param[in] type, Whether the actor's visible property has changed or a parent's
652    */
653   void OnVisibilityChanged(Actor actor, bool isVisible, Dali::DevelActor::VisibilityChange::Type type);
654
655   /**
656    * @brief callback for screen shot captured.
657    * @param[in] pixel Pixel data of screen shot.
658    */
659   void OnScreenshotCaptured(Dali::PixelData pixel);
660
661   /**
662    * @brief Callback function to be called when http request need be intercepted.
663    * @param [in] request The http request interceptor.
664    */
665   void OnInterceptRequest(std::shared_ptr<Dali::WebEngineRequestInterceptor> interceptor);
666
667   /**
668    * @brief Callback function to be called when console message will be logged.
669    * @param[in] message The message logged.
670    */
671   void OnConsoleMessage(std::shared_ptr<Dali::WebEngineConsoleMessage> message);
672
673 private:
674   std::string                 mUrl;
675   Dali::Toolkit::Visual::Base mVisual;
676   Dali::Size                  mWebViewSize;
677   Dali::WebEngine             mWebEngine;
678
679   Dali::Toolkit::WebView::WebViewPageLoadSignalType           mPageLoadStartedSignal;
680   Dali::Toolkit::WebView::WebViewPageLoadSignalType           mPageLoadInProgressSignal;
681   Dali::Toolkit::WebView::WebViewPageLoadSignalType           mPageLoadFinishedSignal;
682   Dali::Toolkit::WebView::WebViewPageLoadErrorSignalType      mPageLoadErrorSignal;
683   Dali::Toolkit::WebView::WebViewUrlChangedSignalType         mUrlChangedSignal;
684   Dali::Toolkit::WebView::WebViewScrollEdgeReachedSignalType  mScrollEdgeReachedSignal;
685   Dali::Toolkit::WebView::WebViewFormRepostDecisionSignalType mFormRepostDecisionSignal;
686   Dali::Toolkit::WebView::WebViewFrameRenderedSignalType      mFrameRenderedSignal;
687   Dali::Toolkit::WebView::WebViewRequestInterceptorSignalType mRequestInterceptorSignal;
688   Dali::Toolkit::WebView::WebViewConsoleMessageSignalType     mConsoleMessageSignal;
689
690   std::unique_ptr<Dali::Toolkit::WebContext>         mWebContext;
691   std::unique_ptr<Dali::Toolkit::WebCookieManager>   mWebCookieManager;
692   std::unique_ptr<Dali::Toolkit::WebSettings>        mWebSettings;
693   std::unique_ptr<Dali::Toolkit::WebBackForwardList> mWebBackForwardList;
694
695   Dali::Toolkit::ImageView mFaviconView;
696
697   Dali::PropertyNotification mPositionUpdateNotification;
698   Dali::PropertyNotification mSizeUpdateNotification;
699   Dali::PropertyNotification mScaleUpdateNotification;
700   bool                       mVideoHoleEnabled;
701   Dali::Rect<int>            mWebViewArea;
702   bool                       mMouseEventsEnabled;
703   bool                       mKeyEventsEnabled;
704
705   Dali::Toolkit::WebView::WebViewScreenshotCapturedCallback mScreenshotCapturedCallback;
706 };
707
708 } // namespace Internal
709
710 inline Toolkit::Internal::WebView& GetImpl(Toolkit::WebView& handle)
711 {
712   DALI_ASSERT_ALWAYS(handle);
713   Dali::RefObject& impl = handle.GetImplementation();
714   return static_cast<Toolkit::Internal::WebView&>(impl);
715 }
716
717 inline const Toolkit::Internal::WebView& GetImpl(const Toolkit::WebView& handle)
718 {
719   DALI_ASSERT_ALWAYS(handle);
720   const Dali::RefObject& impl = handle.GetImplementation();
721   return static_cast<const Toolkit::Internal::WebView&>(impl);
722 }
723
724 } // namespace Toolkit
725
726 } // namespace Dali
727
728 #endif // DALI_TOOLKIT_INTERNAL_WEB_VIEW_H