WebEngine::GetNativeImageSource return NativeImageSourcePtr
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / web-view / web-view-impl.cpp
1 /*
2  * Copyright (c) 2021 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include "web-view-impl.h"
20
21 // EXTERNAL INCLUDES
22 #include <dali/devel-api/adaptor-framework/web-engine-back-forward-list.h>
23 #include <dali/devel-api/adaptor-framework/web-engine-certificate.h>
24 #include <dali/devel-api/adaptor-framework/web-engine-console-message.h>
25 #include <dali/devel-api/adaptor-framework/web-engine-context-menu-item.h>
26 #include <dali/devel-api/adaptor-framework/web-engine-context-menu.h>
27 #include <dali/devel-api/adaptor-framework/web-engine-context.h>
28 #include <dali/devel-api/adaptor-framework/web-engine-cookie-manager.h>
29 #include <dali/devel-api/adaptor-framework/web-engine-form-repost-decision.h>
30 #include <dali/devel-api/adaptor-framework/web-engine-hit-test.h>
31 #include <dali/devel-api/adaptor-framework/web-engine-http-auth-handler.h>
32 #include <dali/devel-api/adaptor-framework/web-engine-load-error.h>
33 #include <dali/devel-api/adaptor-framework/web-engine-policy-decision.h>
34 #include <dali/devel-api/adaptor-framework/web-engine-settings.h>
35 #include <dali/devel-api/common/stage.h>
36 #include <dali/devel-api/scripting/enum-helper.h>
37 #include <dali/devel-api/scripting/scripting.h>
38 #include <dali/public-api/adaptor-framework/native-image-source.h>
39 #include <dali/public-api/object/type-registry-helper.h>
40 #include <dali/public-api/object/type-registry.h>
41 #include <cstring>
42 #include <memory>
43
44 // INTERNAL INCLUDES
45 #include <dali-toolkit/devel-api/controls/control-devel.h>
46 #include <dali-toolkit/devel-api/controls/web-view/web-back-forward-list.h>
47 #include <dali-toolkit/devel-api/controls/web-view/web-context.h>
48 #include <dali-toolkit/devel-api/controls/web-view/web-cookie-manager.h>
49 #include <dali-toolkit/devel-api/controls/web-view/web-settings.h>
50 #include <dali-toolkit/internal/visuals/visual-factory-impl.h>
51 #include <dali-toolkit/public-api/image-loader/image.h>
52 #include <dali-toolkit/public-api/image-loader/image-url.h>
53 #include <dali-toolkit/public-api/visuals/image-visual-properties.h>
54
55 namespace Dali
56 {
57 namespace Toolkit
58 {
59 namespace Internal
60 {
61 namespace
62 {
63 BaseHandle Create()
64 {
65   return Toolkit::WebView::New();
66 }
67
68 // clang-format off
69 DALI_TYPE_REGISTRATION_BEGIN(Toolkit::WebView, Toolkit::Control, Create)
70
71 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "url",                     STRING,  URL                       )
72 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "userAgent",               STRING,  USER_AGENT                )
73 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "scrollPosition",          VECTOR2, SCROLL_POSITION           )
74 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "scrollSize",              VECTOR2, SCROLL_SIZE               )
75 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "contentSize",             VECTOR2, CONTENT_SIZE              )
76 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "title",                   STRING,  TITLE                     )
77 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "videoHoleEnabled",        BOOLEAN, VIDEO_HOLE_ENABLED        )
78 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "mouseEventsEnabled",      BOOLEAN, MOUSE_EVENTS_ENABLED      )
79 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "keyEventsEnabled",        BOOLEAN, KEY_EVENTS_ENABLED        )
80 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "documentBackgroundColor", VECTOR4, DOCUMENT_BACKGROUND_COLOR )
81 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "tilesClearedWhenHidden",  BOOLEAN, TILES_CLEARED_WHEN_HIDDEN )
82 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "tileCoverAreaMultiplier", FLOAT,   TILE_COVER_AREA_MULTIPLIER)
83 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "cursorEnabledByClient",   BOOLEAN, CURSOR_ENABLED_BY_CLIENT  )
84 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "selectedText",            STRING,  SELECTED_TEXT             )
85 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "pageZoomFactor",          FLOAT,   PAGE_ZOOM_FACTOR          )
86 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "textZoomFactor",          FLOAT,   TEXT_ZOOM_FACTOR          )
87 DALI_PROPERTY_REGISTRATION(Toolkit, WebView, "loadProgressPercentage",  FLOAT,   LOAD_PROGRESS_PERCENTAGE  )
88
89 DALI_TYPE_REGISTRATION_END()
90 // clang-format on
91
92 } // namespace
93
94 #define GET_ENUM_STRING(structName, inputExp) \
95   Scripting::GetLinearEnumerationName<Toolkit::WebView::structName::Type>(static_cast<Toolkit::WebView::structName::Type>(inputExp), structName##_TABLE, structName##_TABLE_COUNT)
96
97 #define GET_ENUM_VALUE(structName, inputExp, outputExp) \
98   Scripting::GetEnumerationProperty<Toolkit::WebView::structName::Type>(inputExp, structName##_TABLE, structName##_TABLE_COUNT, outputExp)
99
100 WebView::WebView(const std::string& locale, const std::string& timezoneId)
101 : Control(ControlBehaviour(ACTOR_BEHAVIOUR_DEFAULT | DISABLE_STYLE_CHANGE_SIGNALS)),
102   mVisual(),
103   mWebViewSize(Stage::GetCurrent().GetSize()),
104   mWebEngine(),
105   mWebViewArea(0, 0, mWebViewSize.width, mWebViewSize.height),
106   mVideoHoleEnabled(false),
107   mMouseEventsEnabled(true),
108   mKeyEventsEnabled(true),
109   mScreenshotCapturedCallback(nullptr)
110 {
111   mWebEngine = Dali::WebEngine::New();
112
113   // WebEngine is empty when it is not properly initialized.
114   if(mWebEngine)
115   {
116     mWebEngine.Create(mWebViewSize.width, mWebViewSize.height, locale, timezoneId);
117   }
118 }
119
120 WebView::WebView(uint32_t argc, char** argv)
121 : Control(ControlBehaviour(ACTOR_BEHAVIOUR_DEFAULT | DISABLE_STYLE_CHANGE_SIGNALS)),
122   mVisual(),
123   mWebViewSize(Stage::GetCurrent().GetSize()),
124   mWebEngine(),
125   mWebViewArea(0, 0, mWebViewSize.width, mWebViewSize.height),
126   mVideoHoleEnabled(false),
127   mMouseEventsEnabled(true),
128   mKeyEventsEnabled(true),
129   mScreenshotCapturedCallback(nullptr)
130 {
131   mWebEngine = Dali::WebEngine::New();
132
133   // WebEngine is empty when it is not properly initialized.
134   if(mWebEngine)
135   {
136     mWebEngine.Create(mWebViewSize.width, mWebViewSize.height, argc, argv);
137   }
138 }
139
140 WebView::WebView()
141 : WebView("", "")
142 {
143 }
144
145 WebView::~WebView()
146 {
147   if(mWebEngine)
148   {
149     mWebEngine.FrameRenderedSignal().Disconnect(this, &WebView::OnFrameRendered);
150     mWebEngine.Destroy();
151   }
152 }
153
154 Toolkit::WebView WebView::New()
155 {
156   WebView*         impl   = new WebView();
157   Toolkit::WebView handle = Toolkit::WebView(*impl);
158
159   impl->Initialize();
160   return handle;
161 }
162
163 Toolkit::WebView WebView::New(const std::string& locale, const std::string& timezoneId)
164 {
165   WebView*         impl   = new WebView(locale, timezoneId);
166   Toolkit::WebView handle = Toolkit::WebView(*impl);
167
168   impl->Initialize();
169   return handle;
170 }
171
172 Toolkit::WebView WebView::New(uint32_t argc, char** argv)
173 {
174   WebView*         impl   = new WebView(argc, argv);
175   Toolkit::WebView handle = Toolkit::WebView(*impl);
176
177   impl->Initialize();
178   return handle;
179 }
180
181 void WebView::OnInitialize()
182 {
183   Actor self = Self();
184
185   self.SetProperty(Actor::Property::KEYBOARD_FOCUSABLE, true);
186   self.TouchedSignal().Connect(this, &WebView::OnTouchEvent);
187   self.HoveredSignal().Connect(this, &WebView::OnHoverEvent);
188   self.WheelEventSignal().Connect(this, &WebView::OnWheelEvent);
189   Dali::DevelActor::VisibilityChangedSignal(self).Connect(this, &WebView::OnVisibilityChanged);
190
191   mPositionUpdateNotification = self.AddPropertyNotification(Actor::Property::WORLD_POSITION, StepCondition(1.0f, 1.0f));
192   mSizeUpdateNotification     = self.AddPropertyNotification(Actor::Property::SIZE, StepCondition(1.0f, 1.0f));
193   mScaleUpdateNotification    = self.AddPropertyNotification(Actor::Property::WORLD_SCALE, StepCondition(0.1f, 1.0f));
194   mPositionUpdateNotification.NotifySignal().Connect(this, &WebView::UpdateDisplayArea);
195   mSizeUpdateNotification.NotifySignal().Connect(this, &WebView::UpdateDisplayArea);
196   mScaleUpdateNotification.NotifySignal().Connect(this, &WebView::UpdateDisplayArea);
197
198   if(mWebEngine)
199   {
200     mWebEngine.FrameRenderedSignal().Connect(this, &WebView::OnFrameRendered);
201     mWebContext         = std::unique_ptr<Dali::Toolkit::WebContext>(new WebContext(mWebEngine.GetContext()));
202     mWebCookieManager   = std::unique_ptr<Dali::Toolkit::WebCookieManager>(new WebCookieManager(mWebEngine.GetCookieManager()));
203     mWebSettings        = std::unique_ptr<Dali::Toolkit::WebSettings>(new WebSettings(mWebEngine.GetSettings()));
204     mWebBackForwardList = std::unique_ptr<Dali::Toolkit::WebBackForwardList>(new WebBackForwardList(mWebEngine.GetBackForwardList()));
205   }
206 }
207
208 Dali::Toolkit::WebSettings* WebView::GetSettings() const
209 {
210   return mWebSettings.get();
211 }
212
213 Dali::Toolkit::WebContext* WebView::GetContext() const
214 {
215   return mWebContext.get();
216 }
217
218 Dali::Toolkit::WebCookieManager* WebView::GetCookieManager() const
219 {
220   return mWebCookieManager.get();
221 }
222
223 Dali::Toolkit::WebBackForwardList* WebView::GetBackForwardList() const
224 {
225   return mWebBackForwardList.get();
226 }
227
228 Dali::Toolkit::ImageView WebView::GetFavicon() const
229 {
230   Dali::Toolkit::ImageView faviconView;
231   if(mWebEngine)
232   {
233     Dali::PixelData pixelData = mWebEngine.GetFavicon();
234     faviconView               = CreateImageView(pixelData);
235   }
236   return faviconView;
237 }
238
239 void WebView::LoadUrl(const std::string& url)
240 {
241   if(mWebEngine)
242   {
243     if(!mVisual)
244     {
245       mWebEngine.FrameRenderedSignal().Connect(this, &WebView::OnInitialFrameRendered);
246     }
247
248     mWebEngine.LoadUrl(url);
249   }
250 }
251
252 void WebView::LoadHtmlString(const std::string& htmlString)
253 {
254   if(mWebEngine)
255   {
256     if(!mVisual)
257     {
258       mWebEngine.FrameRenderedSignal().Connect(this, &WebView::OnInitialFrameRendered);
259     }
260
261     mWebEngine.LoadHtmlString(htmlString);
262   }
263 }
264
265 bool WebView::LoadHtmlStringOverrideCurrentEntry(const std::string& html, const std::string& basicUri, const std::string& unreachableUrl)
266 {
267   if(!mWebEngine)
268     return false;
269
270   if(!mVisual)
271   {
272     mWebEngine.FrameRenderedSignal().Connect(this, &WebView::OnInitialFrameRendered);
273   }
274
275   return mWebEngine.LoadHtmlStringOverrideCurrentEntry(html, basicUri, unreachableUrl);
276 }
277
278 bool WebView::LoadContents(const std::string& contents, uint32_t contentSize, const std::string& mimeType, const std::string& encoding, const std::string& baseUri)
279 {
280   if(!mWebEngine)
281     return false;
282
283   if(!mVisual)
284   {
285     mWebEngine.FrameRenderedSignal().Connect(this, &WebView::OnInitialFrameRendered);
286   }
287
288   return mWebEngine.LoadContents(contents, contentSize, mimeType, encoding, baseUri);
289 }
290
291 void WebView::Reload()
292 {
293   if(mWebEngine)
294   {
295     mWebEngine.Reload();
296   }
297 }
298
299 bool WebView::ReloadWithoutCache()
300 {
301   return mWebEngine ? mWebEngine.ReloadWithoutCache() : false;
302 }
303
304 void WebView::StopLoading()
305 {
306   if(mWebEngine)
307   {
308     mWebEngine.StopLoading();
309   }
310 }
311
312 void WebView::Suspend()
313 {
314   if(mWebEngine)
315   {
316     mWebEngine.Suspend();
317   }
318 }
319
320 void WebView::Resume()
321 {
322   if(mWebEngine)
323   {
324     mWebEngine.Resume();
325   }
326 }
327
328 void WebView::SuspendNetworkLoading()
329 {
330   if(mWebEngine)
331   {
332     mWebEngine.SuspendNetworkLoading();
333   }
334 }
335
336 void WebView::ResumeNetworkLoading()
337 {
338   if(mWebEngine)
339   {
340     mWebEngine.ResumeNetworkLoading();
341   }
342 }
343
344 bool WebView::AddCustomHeader(const std::string& name, const std::string& value)
345 {
346   return mWebEngine ? mWebEngine.AddCustomHeader(name, value) : false;
347 }
348
349 bool WebView::RemoveCustomHeader(const std::string& name)
350 {
351   return mWebEngine ? mWebEngine.RemoveCustomHeader(name) : false;
352 }
353
354 uint32_t WebView::StartInspectorServer(uint32_t port)
355 {
356   return mWebEngine ? mWebEngine.StartInspectorServer(port) : false;
357 }
358
359 bool WebView::StopInspectorServer()
360 {
361   return mWebEngine ? mWebEngine.StopInspectorServer() : false;
362 }
363
364 void WebView::ScrollBy(int32_t deltaX, int32_t deltaY)
365 {
366   if(mWebEngine)
367   {
368     mWebEngine.ScrollBy(deltaX, deltaY);
369   }
370 }
371
372 bool WebView::ScrollEdgeBy(int32_t deltaX, int32_t deltaY)
373 {
374   return mWebEngine ? mWebEngine.ScrollEdgeBy(deltaX, deltaY) : false;
375 }
376
377 bool WebView::CanGoForward()
378 {
379   return mWebEngine ? mWebEngine.CanGoForward() : false;
380 }
381
382 void WebView::GoForward()
383 {
384   if(mWebEngine)
385   {
386     mWebEngine.GoForward();
387   }
388 }
389
390 bool WebView::CanGoBack()
391 {
392   return mWebEngine ? mWebEngine.CanGoBack() : false;
393 }
394
395 void WebView::GoBack()
396 {
397   if(mWebEngine)
398   {
399     mWebEngine.GoBack();
400   }
401 }
402
403 void WebView::EvaluateJavaScript(const std::string& script, std::function<void(const std::string&)> resultHandler)
404 {
405   if(mWebEngine)
406   {
407     mWebEngine.EvaluateJavaScript(script, resultHandler);
408   }
409 }
410
411 void WebView::AddJavaScriptMessageHandler(const std::string& exposedObjectName, std::function<void(const std::string&)> handler)
412 {
413   if(mWebEngine)
414   {
415     mWebEngine.AddJavaScriptMessageHandler(exposedObjectName, handler);
416   }
417 }
418
419 void WebView::RegisterJavaScriptAlertCallback(Dali::WebEnginePlugin::JavaScriptAlertCallback callback)
420 {
421   if(mWebEngine)
422   {
423     mWebEngine.RegisterJavaScriptAlertCallback(callback);
424   }
425 }
426
427 void WebView::JavaScriptAlertReply()
428 {
429   if(mWebEngine)
430   {
431     mWebEngine.JavaScriptAlertReply();
432   }
433 }
434
435 void WebView::RegisterJavaScriptConfirmCallback(Dali::WebEnginePlugin::JavaScriptConfirmCallback callback)
436 {
437   if(mWebEngine)
438   {
439     mWebEngine.RegisterJavaScriptConfirmCallback(callback);
440   }
441 }
442
443 void WebView::JavaScriptConfirmReply(bool confirmed)
444 {
445   if(mWebEngine)
446   {
447     mWebEngine.JavaScriptConfirmReply(confirmed);
448   }
449 }
450
451 void WebView::RegisterJavaScriptPromptCallback(Dali::WebEnginePlugin::JavaScriptPromptCallback callback)
452 {
453   if(mWebEngine)
454   {
455     mWebEngine.RegisterJavaScriptPromptCallback(callback);
456   }
457 }
458
459 void WebView::JavaScriptPromptReply(const std::string& result)
460 {
461   if(mWebEngine)
462   {
463     mWebEngine.JavaScriptPromptReply(result);
464   }
465 }
466
467 std::unique_ptr<Dali::WebEngineHitTest> WebView::CreateHitTest(int32_t x, int32_t y, Dali::WebEngineHitTest::HitTestMode mode)
468 {
469   std::unique_ptr<Dali::WebEngineHitTest> webHitTest;
470   if(!mWebEngine)
471   {
472     return webHitTest;
473   }
474
475   return mWebEngine.CreateHitTest(x, y, mode);
476 }
477
478 bool WebView::CreateHitTestAsynchronously(int32_t x, int32_t y, Dali::WebEngineHitTest::HitTestMode mode, Dali::WebEnginePlugin::WebEngineHitTestCreatedCallback callback)
479 {
480   bool result = false;
481   if(mWebEngine)
482   {
483     result = mWebEngine.CreateHitTestAsynchronously(x, y, mode, callback);
484   }
485   return result;
486 }
487
488 void WebView::ClearHistory()
489 {
490   if(mWebEngine)
491   {
492     mWebEngine.ClearHistory();
493   }
494 }
495
496 void WebView::ClearAllTilesResources()
497 {
498   if(mWebEngine)
499   {
500     mWebEngine.ClearAllTilesResources();
501   }
502 }
503
504 void WebView::SetScaleFactor(float scaleFactor, Dali::Vector2 point)
505 {
506   if(mWebEngine)
507   {
508     mWebEngine.SetScaleFactor(scaleFactor, point);
509   }
510 }
511
512 float WebView::GetScaleFactor() const
513 {
514   return mWebEngine ? mWebEngine.GetScaleFactor() : 0.0f;
515 }
516
517 void WebView::ActivateAccessibility(bool activated)
518 {
519   if(mWebEngine)
520   {
521     mWebEngine.ActivateAccessibility(activated);
522   }
523 }
524
525 bool WebView::HighlightText(const std::string& text, Dali::WebEnginePlugin::FindOption options, uint32_t maxMatchCount)
526 {
527   return mWebEngine ? mWebEngine.HighlightText(text, options, maxMatchCount) : false;
528 }
529
530 void WebView::AddDynamicCertificatePath(const std::string& host, const std::string& certPath)
531 {
532   if(mWebEngine)
533   {
534     mWebEngine.AddDynamicCertificatePath(host, certPath);
535   }
536 }
537
538 Dali::Toolkit::ImageView WebView::GetScreenshot(Dali::Rect<int32_t> viewArea, float scaleFactor)
539 {
540   Dali::Toolkit::ImageView imageView;
541   if(mWebEngine)
542   {
543     Dali::PixelData pixelData = mWebEngine.GetScreenshot(viewArea, scaleFactor);
544     imageView                 = CreateImageView(pixelData);
545   }
546   return imageView;
547 }
548
549 bool WebView::GetScreenshotAsynchronously(Dali::Rect<int32_t> viewArea, float scaleFactor, Dali::Toolkit::WebView::WebViewScreenshotCapturedCallback callback)
550 {
551   mScreenshotCapturedCallback = callback;
552   return mWebEngine ? mWebEngine.GetScreenshotAsynchronously(viewArea, scaleFactor, std::bind(&WebView::OnScreenshotCaptured, this, std::placeholders::_1)) : false;
553 }
554
555 bool WebView::CheckVideoPlayingAsynchronously(Dali::WebEnginePlugin::VideoPlayingCallback callback)
556 {
557   return mWebEngine ? mWebEngine.CheckVideoPlayingAsynchronously(callback) : false;
558 }
559
560 void WebView::RegisterGeolocationPermissionCallback(Dali::WebEnginePlugin::GeolocationPermissionCallback callback)
561 {
562   if(mWebEngine)
563   {
564     mWebEngine.RegisterGeolocationPermissionCallback(callback);
565   }
566 }
567
568 void WebView::SetTtsFocus(bool focused)
569 {
570   if(mWebEngine && !HasKeyInputFocus())
571   {
572     mWebEngine.SetFocus(focused);
573   }
574 }
575
576 void WebView::UpdateDisplayArea(Dali::PropertyNotification& /*source*/)
577 {
578   if(!mWebEngine)
579     return;
580
581   Actor self(Self());
582
583   bool    positionUsesAnchorPoint = self.GetProperty<bool>(Actor::Property::POSITION_USES_ANCHOR_POINT);
584   Vector3 actorSize               = self.GetCurrentProperty<Vector3>(Actor::Property::SIZE) * self.GetCurrentProperty<Vector3>(Actor::Property::SCALE);
585   Vector3 anchorPointOffSet       = actorSize * (positionUsesAnchorPoint ? self.GetCurrentProperty<Vector3>(Actor::Property::ANCHOR_POINT) : AnchorPoint::TOP_LEFT);
586   Vector2 screenPosition          = self.GetProperty<Vector2>(Actor::Property::SCREEN_POSITION);
587
588   Dali::Rect<int32_t> displayArea;
589   displayArea.x      = screenPosition.x - anchorPointOffSet.x;
590   displayArea.y      = screenPosition.y - anchorPointOffSet.y;
591   displayArea.width  = actorSize.x;
592   displayArea.height = actorSize.y;
593
594   Size displaySize = Size(displayArea.width, displayArea.height);
595   if(mWebViewSize != displaySize)
596   {
597     mWebViewSize = displaySize;
598   }
599
600   if(mWebViewArea != displayArea)
601   {
602     mWebViewArea = displayArea;
603     mWebEngine.UpdateDisplayArea(mWebViewArea);
604   }
605 }
606
607 void WebView::EnableVideoHole(bool enabled)
608 {
609   mVideoHoleEnabled = enabled;
610
611   EnableBlendMode(!mVideoHoleEnabled);
612
613   if(mWebEngine)
614   {
615     mWebEngine.EnableVideoHole(mVideoHoleEnabled);
616   }
617 }
618
619 void WebView::EnableBlendMode(bool blendEnabled)
620 {
621   Actor self = Self();
622   for(uint32_t i = 0; i < self.GetRendererCount(); i++)
623   {
624     Dali::Renderer render = self.GetRendererAt(i);
625     render.SetProperty(Renderer::Property::BLEND_MODE, blendEnabled ? BlendMode::ON : BlendMode::OFF);
626   }
627 }
628
629 Dali::Toolkit::ImageView WebView::CreateImageView(Dali::PixelData pixel) const
630 {
631   if(!pixel)
632   {
633     return Dali::Toolkit::ImageView();
634   }
635
636   Dali::Toolkit::ImageUrl  url       = Dali::Toolkit::Image::GenerateUrl(pixel);
637   Dali::Toolkit::ImageView imageView = Dali::Toolkit::ImageView::New(url.GetUrl());
638   imageView.SetProperty(Dali::Actor::Property::SIZE, Vector2(pixel.GetWidth(), pixel.GetHeight()));
639   return imageView;
640 }
641
642 void WebView::RegisterPageLoadStartedCallback(Dali::WebEnginePlugin::WebEnginePageLoadCallback callback)
643 {
644   if(mWebEngine)
645   {
646     mWebEngine.RegisterPageLoadStartedCallback(callback);
647   }
648 }
649
650 void WebView::RegisterPageLoadInProgressCallback(Dali::WebEnginePlugin::WebEnginePageLoadCallback callback)
651 {
652   if(mWebEngine)
653   {
654     mWebEngine.RegisterPageLoadInProgressCallback(callback);
655   }
656 }
657
658 void WebView::RegisterPageLoadFinishedCallback(Dali::WebEnginePlugin::WebEnginePageLoadCallback callback)
659 {
660   if(mWebEngine)
661   {
662     mWebEngine.RegisterPageLoadFinishedCallback(callback);
663   }
664 }
665
666 void WebView::RegisterPageLoadErrorCallback(Dali::WebEnginePlugin::WebEnginePageLoadErrorCallback callback)
667 {
668   if(mWebEngine)
669   {
670     mWebEngine.RegisterPageLoadErrorCallback(callback);
671   }
672 }
673
674 void WebView::RegisterScrollEdgeReachedCallback(Dali::WebEnginePlugin::WebEngineScrollEdgeReachedCallback callback)
675 {
676   if(mWebEngine)
677   {
678     mWebEngine.RegisterScrollEdgeReachedCallback(callback);
679   }
680 }
681
682 void WebView::RegisterUrlChangedCallback(Dali::WebEnginePlugin::WebEngineUrlChangedCallback callback)
683 {
684   if(mWebEngine)
685   {
686     mWebEngine.RegisterUrlChangedCallback(callback);
687   }
688 }
689
690 void WebView::RegisterFormRepostDecidedCallback(Dali::WebEnginePlugin::WebEngineFormRepostDecidedCallback callback)
691 {
692   if(mWebEngine)
693   {
694     mWebEngine.RegisterFormRepostDecidedCallback(callback);
695   }
696 }
697
698 void WebView::RegisterFrameRenderedCallback(Dali::WebEnginePlugin::WebEngineFrameRenderedCallback callback)
699 {
700   mFrameRenderedCallback = callback;
701 }
702
703 void WebView::RegisterConsoleMessageReceivedCallback(Dali::WebEnginePlugin::WebEngineConsoleMessageReceivedCallback callback)
704 {
705   if(mWebEngine)
706   {
707     mWebEngine.RegisterConsoleMessageReceivedCallback(callback);
708   }
709 }
710
711 void WebView::RegisterResponsePolicyDecidedCallback(Dali::WebEnginePlugin::WebEngineResponsePolicyDecidedCallback callback)
712 {
713   if(mWebEngine)
714   {
715     mWebEngine.RegisterResponsePolicyDecidedCallback(callback);
716   }
717 }
718
719 void WebView::RegisterCertificateConfirmedCallback(Dali::WebEnginePlugin::WebEngineCertificateCallback callback)
720 {
721   if(mWebEngine)
722   {
723     mWebEngine.RegisterCertificateConfirmedCallback(callback);
724   }
725 }
726
727 void WebView::RegisterSslCertificateChangedCallback(Dali::WebEnginePlugin::WebEngineCertificateCallback callback)
728 {
729   if(mWebEngine)
730   {
731     mWebEngine.RegisterSslCertificateChangedCallback(callback);
732   }
733 }
734
735 void WebView::RegisterHttpAuthHandlerCallback(Dali::WebEnginePlugin::WebEngineHttpAuthHandlerCallback callback)
736 {
737   if(mWebEngine)
738   {
739     mWebEngine.RegisterHttpAuthHandlerCallback(callback);
740   }
741 }
742
743 void WebView::RegisterContextMenuShownCallback(Dali::WebEnginePlugin::WebEngineContextMenuShownCallback callback)
744 {
745   if(mWebEngine)
746   {
747     mWebEngine.RegisterContextMenuShownCallback(callback);
748   }
749 }
750
751 void WebView::RegisterContextMenuHiddenCallback(Dali::WebEnginePlugin::WebEngineContextMenuHiddenCallback callback)
752 {
753   if(mWebEngine)
754   {
755     mWebEngine.RegisterContextMenuHiddenCallback(callback);
756   }
757 }
758
759 void WebView::GetPlainTextAsynchronously(Dali::WebEnginePlugin::PlainTextReceivedCallback callback)
760 {
761   if(mWebEngine)
762   {
763     mWebEngine.GetPlainTextAsynchronously(callback);
764   }
765 }
766
767 void WebView::OnFrameRendered()
768 {
769   if(mFrameRenderedCallback)
770   {
771     mFrameRenderedCallback();
772   }
773 }
774
775 void WebView::OnInitialFrameRendered()
776 {
777   mWebEngine.FrameRenderedSignal().Disconnect(this, &WebView::OnInitialFrameRendered);
778
779   Dali::Toolkit::ImageUrl nativeImageUrl = Dali::Toolkit::Image::GenerateUrl(mWebEngine.GetNativeImageSource());
780   mVisual                                = Toolkit::VisualFactory::Get().CreateVisual({{Toolkit::Visual::Property::TYPE, Toolkit::Visual::IMAGE}, {Toolkit::ImageVisual::Property::URL, nativeImageUrl.GetUrl()}});
781
782   if(mVisual)
783   {
784     DevelControl::RegisterVisual(*this, Toolkit::WebView::Property::URL, mVisual);
785     EnableBlendMode(!mVideoHoleEnabled);
786   }
787 }
788
789 void WebView::OnVisibilityChanged(Actor actor, bool isVisible, Dali::DevelActor::VisibilityChange::Type type)
790 {
791   if(type == Dali::DevelActor::VisibilityChange::Type::SELF)
792   {
793     SetVisibility(isVisible);
794   }
795 }
796
797 void WebView::OnScreenshotCaptured(Dali::PixelData pixel)
798 {
799   if(mScreenshotCapturedCallback)
800   {
801     Dali::Toolkit::ImageView imageView = CreateImageView(pixel);
802     mScreenshotCapturedCallback(imageView);
803   }
804 }
805
806 void WebView::OnSceneConnection(int depth)
807 {
808   Control::OnSceneConnection(depth);
809   EnableBlendMode(!mVideoHoleEnabled);
810 }
811
812 bool WebView::OnTouchEvent(Actor actor, const Dali::TouchEvent& touch)
813 {
814   bool result = false;
815
816   if(mWebEngine)
817   {
818     result = mWebEngine.SendTouchEvent(touch);
819   }
820   return result;
821 }
822
823 bool WebView::OnKeyEvent(const Dali::KeyEvent& event)
824 {
825   bool result = false;
826
827   if(mWebEngine)
828   {
829     result = mWebEngine.SendKeyEvent(event);
830   }
831   return result;
832 }
833
834 bool WebView::OnHoverEvent(Actor actor, const Dali::HoverEvent& hover)
835 {
836   bool result = false;
837   if(mWebEngine && mMouseEventsEnabled)
838   {
839     result = mWebEngine.SendHoverEvent(hover);
840   }
841   return result;
842 }
843
844 bool WebView::OnWheelEvent(Actor actor, const Dali::WheelEvent& wheel)
845 {
846   bool result = false;
847   if(mWebEngine && mMouseEventsEnabled)
848   {
849     result = mWebEngine.SendWheelEvent(wheel);
850   }
851   return result;
852 }
853
854 void WebView::OnKeyInputFocusGained()
855 {
856   if(mWebEngine)
857   {
858     mWebEngine.SetFocus(true);
859   }
860
861   EmitKeyInputFocusSignal(true); // Calls back into the Control hence done last.
862 }
863
864 void WebView::OnKeyInputFocusLost()
865 {
866   if(mWebEngine)
867   {
868     mWebEngine.SetFocus(false);
869   }
870
871   EmitKeyInputFocusSignal(false); // Calls back into the Control hence done last.
872 }
873
874 Vector3 WebView::GetNaturalSize()
875 {
876   if(mVisual)
877   {
878     Vector2 rendererNaturalSize;
879     mVisual.GetNaturalSize(rendererNaturalSize);
880     return Vector3(rendererNaturalSize);
881   }
882
883   return Vector3(mWebViewSize);
884 }
885
886 void WebView::SetProperty(BaseObject* object, Property::Index index, const Property::Value& value)
887 {
888   Toolkit::WebView webView = Toolkit::WebView::DownCast(Dali::BaseHandle(object));
889
890   if(webView)
891   {
892     WebView& impl = GetImpl(webView);
893     switch(index)
894     {
895       case Toolkit::WebView::Property::URL:
896       {
897         std::string url;
898         if(value.Get(url))
899         {
900           impl.LoadUrl(url);
901         }
902         break;
903       }
904       case Toolkit::WebView::Property::USER_AGENT:
905       {
906         std::string input;
907         if(value.Get(input))
908         {
909           impl.SetUserAgent(input);
910         }
911         break;
912       }
913       case Toolkit::WebView::Property::SCROLL_POSITION:
914       {
915         Vector2 input;
916         if(value.Get(input))
917         {
918           impl.SetScrollPosition(input.x, input.y);
919         }
920         break;
921       }
922       case Toolkit::WebView::Property::VIDEO_HOLE_ENABLED:
923       {
924         bool input;
925         if(value.Get(input))
926         {
927           impl.EnableVideoHole(input);
928         }
929         break;
930       }
931       case Toolkit::WebView::Property::MOUSE_EVENTS_ENABLED:
932       {
933         bool input;
934         if(value.Get(input))
935         {
936           impl.EnableMouseEvents(input);
937         }
938         break;
939       }
940       case Toolkit::WebView::Property::KEY_EVENTS_ENABLED:
941       {
942         bool input;
943         if(value.Get(input))
944         {
945           impl.EnableKeyEvents(input);
946         }
947         break;
948       }
949       case Toolkit::WebView::Property::DOCUMENT_BACKGROUND_COLOR:
950       {
951         Vector4 input;
952         if(value.Get(input))
953         {
954           impl.SetDocumentBackgroundColor(input);
955         }
956         break;
957       }
958       case Toolkit::WebView::Property::TILES_CLEARED_WHEN_HIDDEN:
959       {
960         bool input;
961         if(value.Get(input))
962         {
963           impl.ClearTilesWhenHidden(input);
964         }
965         break;
966       }
967       case Toolkit::WebView::Property::TILE_COVER_AREA_MULTIPLIER:
968       {
969         float input;
970         if(value.Get(input))
971         {
972           impl.SetTileCoverAreaMultiplier(input);
973         }
974         break;
975       }
976       case Toolkit::WebView::Property::CURSOR_ENABLED_BY_CLIENT:
977       {
978         bool input;
979         if(value.Get(input))
980         {
981           impl.EnableCursorByClient(input);
982         }
983         break;
984       }
985       case Toolkit::WebView::Property::PAGE_ZOOM_FACTOR:
986       {
987         float input;
988         if(value.Get(input))
989         {
990           impl.SetPageZoomFactor(input);
991         }
992         break;
993       }
994       case Toolkit::WebView::Property::TEXT_ZOOM_FACTOR:
995       {
996         float input;
997         if(value.Get(input))
998         {
999           impl.SetTextZoomFactor(input);
1000         }
1001         break;
1002       }
1003       default:
1004         break;
1005     }
1006   }
1007 }
1008
1009 Property::Value WebView::GetProperty(BaseObject* object, Property::Index propertyIndex)
1010 {
1011   Property::Value value;
1012
1013   Toolkit::WebView webView = Toolkit::WebView::DownCast(Dali::BaseHandle(object));
1014
1015   if(webView)
1016   {
1017     WebView& impl = GetImpl(webView);
1018     switch(propertyIndex)
1019     {
1020       case Toolkit::WebView::Property::URL:
1021       {
1022         value = impl.GetUrl();
1023         break;
1024       }
1025       case Toolkit::WebView::Property::USER_AGENT:
1026       {
1027         value = impl.GetUserAgent();
1028         break;
1029       }
1030       case Toolkit::WebView::Property::SCROLL_POSITION:
1031       {
1032         value = impl.GetScrollPosition();
1033         break;
1034       }
1035       case Toolkit::WebView::Property::SCROLL_SIZE:
1036       {
1037         value = impl.GetScrollSize();
1038         break;
1039       }
1040       case Toolkit::WebView::Property::CONTENT_SIZE:
1041       {
1042         value = impl.GetContentSize();
1043         break;
1044       }
1045       case Toolkit::WebView::Property::TITLE:
1046       {
1047         value = impl.GetTitle();
1048         break;
1049       }
1050       case Toolkit::WebView::Property::VIDEO_HOLE_ENABLED:
1051       {
1052         value = impl.mVideoHoleEnabled;
1053         break;
1054       }
1055       case Toolkit::WebView::Property::MOUSE_EVENTS_ENABLED:
1056       {
1057         value = impl.mMouseEventsEnabled;
1058         break;
1059       }
1060       case Toolkit::WebView::Property::KEY_EVENTS_ENABLED:
1061       {
1062         value = impl.mKeyEventsEnabled;
1063         break;
1064       }
1065       case Toolkit::WebView::Property::SELECTED_TEXT:
1066       {
1067         value = impl.GetSelectedText();
1068         break;
1069       }
1070       case Toolkit::WebView::Property::PAGE_ZOOM_FACTOR:
1071       {
1072         value = impl.GetPageZoomFactor();
1073         break;
1074       }
1075       case Toolkit::WebView::Property::TEXT_ZOOM_FACTOR:
1076       {
1077         value = impl.GetTextZoomFactor();
1078         break;
1079       }
1080       case Toolkit::WebView::Property::LOAD_PROGRESS_PERCENTAGE:
1081       {
1082         value = impl.GetLoadProgressPercentage();
1083         break;
1084       }
1085       default:
1086         break;
1087     }
1088   }
1089
1090   return value;
1091 }
1092
1093 void WebView::SetScrollPosition(int32_t x, int32_t y)
1094 {
1095   if(mWebEngine)
1096   {
1097     mWebEngine.SetScrollPosition(x, y);
1098   }
1099 }
1100
1101 Dali::Vector2 WebView::GetScrollPosition() const
1102 {
1103   return mWebEngine ? mWebEngine.GetScrollPosition() : Dali::Vector2::ZERO;
1104 }
1105
1106 Dali::Vector2 WebView::GetScrollSize() const
1107 {
1108   return mWebEngine ? mWebEngine.GetScrollSize() : Dali::Vector2::ZERO;
1109 }
1110
1111 Dali::Vector2 WebView::GetContentSize() const
1112 {
1113   return mWebEngine ? mWebEngine.GetContentSize() : Dali::Vector2::ZERO;
1114 }
1115
1116 std::string WebView::GetTitle() const
1117 {
1118   return mWebEngine ? mWebEngine.GetTitle() : std::string();
1119 }
1120
1121 void WebView::SetDocumentBackgroundColor(Dali::Vector4 color)
1122 {
1123   if(mWebEngine)
1124   {
1125     mWebEngine.SetDocumentBackgroundColor(color);
1126   }
1127 }
1128
1129 void WebView::ClearTilesWhenHidden(bool cleared)
1130 {
1131   if(mWebEngine)
1132   {
1133     mWebEngine.ClearTilesWhenHidden(cleared);
1134   }
1135 }
1136
1137 void WebView::SetTileCoverAreaMultiplier(float multiplier)
1138 {
1139   if(mWebEngine)
1140   {
1141     mWebEngine.SetTileCoverAreaMultiplier(multiplier);
1142   }
1143 }
1144
1145 void WebView::EnableCursorByClient(bool enabled)
1146 {
1147   if(mWebEngine)
1148   {
1149     mWebEngine.EnableCursorByClient(enabled);
1150   }
1151 }
1152
1153 std::string WebView::GetSelectedText() const
1154 {
1155   return mWebEngine ? mWebEngine.GetSelectedText() : std::string();
1156 }
1157
1158 std::string WebView::GetUrl() const
1159 {
1160   return mWebEngine ? mWebEngine.GetUrl() : std::string();
1161 }
1162
1163 std::string WebView::GetUserAgent() const
1164 {
1165   return mWebEngine ? mWebEngine.GetUserAgent() : std::string();
1166 }
1167
1168 void WebView::SetUserAgent(const std::string& userAgent)
1169 {
1170   if(mWebEngine)
1171   {
1172     mWebEngine.SetUserAgent(userAgent);
1173   }
1174 }
1175
1176 void WebView::EnableMouseEvents(bool enabled)
1177 {
1178   if(mWebEngine)
1179   {
1180     mMouseEventsEnabled = enabled;
1181     mWebEngine.EnableMouseEvents(enabled);
1182   }
1183 }
1184
1185 void WebView::EnableKeyEvents(bool enabled)
1186 {
1187   if(mWebEngine)
1188   {
1189     mKeyEventsEnabled = enabled;
1190     mWebEngine.EnableKeyEvents(enabled);
1191   }
1192 }
1193
1194 void WebView::SetPageZoomFactor(float zoomFactor)
1195 {
1196   if(mWebEngine)
1197   {
1198     mWebEngine.SetPageZoomFactor(zoomFactor);
1199   }
1200 }
1201
1202 float WebView::GetPageZoomFactor() const
1203 {
1204   return mWebEngine ? mWebEngine.GetPageZoomFactor() : 0.0f;
1205 }
1206
1207 void WebView::SetTextZoomFactor(float zoomFactor)
1208 {
1209   if(mWebEngine)
1210   {
1211     mWebEngine.SetTextZoomFactor(zoomFactor);
1212   }
1213 }
1214
1215 float WebView::GetTextZoomFactor() const
1216 {
1217   return mWebEngine ? mWebEngine.GetTextZoomFactor() : 0.0f;
1218 }
1219
1220 float WebView::GetLoadProgressPercentage() const
1221 {
1222   return mWebEngine ? mWebEngine.GetLoadProgressPercentage() : 0.0f;
1223 }
1224
1225 bool WebView::SetVisibility(bool visible)
1226 {
1227   return mWebEngine ? mWebEngine.SetVisibility(visible) : false;
1228 }
1229
1230 #undef GET_ENUM_STRING
1231 #undef GET_ENUM_VALUE
1232
1233 } // namespace Internal
1234
1235 } // namespace Toolkit
1236
1237 } // namespace Dali