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