X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=inline;f=dali-toolkit%2Finternal%2Fcontrols%2Fsuper-blur-view%2Fsuper-blur-view-impl.cpp;h=80714d08236d0fd35bf05161c436ec34485624bc;hb=8a647e87a01c5c78451653c1264a9eea81ac9b20;hp=70bd49deb913e658444355e45aaa03c0db2ec85d;hpb=f3e8b0bf4eba4e2f76294c2ed3d83a4cc9ca4613;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/controls/super-blur-view/super-blur-view-impl.cpp b/dali-toolkit/internal/controls/super-blur-view/super-blur-view-impl.cpp index 70bd49d..80714d0 100644 --- a/dali-toolkit/internal/controls/super-blur-view/super-blur-view-impl.cpp +++ b/dali-toolkit/internal/controls/super-blur-view/super-blur-view-impl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,7 +21,7 @@ // EXTERNAL INCLUDES #include #include -#include +#include #include #include #include @@ -35,6 +35,7 @@ #include #include #include +#include namespace //Unnamed namespace { @@ -137,6 +138,11 @@ SuperBlurView::SuperBlurView( unsigned int blurLevels ) mGaussianBlurView.assign( blurLevels, Toolkit::GaussianBlurView() ); mBlurredImage.assign( blurLevels, FrameBuffer() ); mRenderers.assign( blurLevels+1, Dali::Renderer() ); + + DevelControl::SetAccessibilityConstructor( Self(), []( Dali::Actor actor ) { + return std::unique_ptr< Dali::Accessibility::Accessible >( + new Control::Impl::AccessibleImpl( actor, Dali::Accessibility::Role::FILLER ) ); + } ); } SuperBlurView::~SuperBlurView() @@ -232,8 +238,8 @@ void SuperBlurView::BlurTexture( unsigned int idx, Texture texture ) GAUSSIAN_BLUR_BELL_CURVE_WIDTH + GAUSSIAN_BLUR_BELL_CURVE_WIDTH_INCREMENTATION*static_cast(idx), GAUSSIAN_BLUR_RENDER_TARGET_PIXEL_FORMAT, GAUSSIAN_BLUR_DOWNSAMPLE_WIDTH_SCALE, GAUSSIAN_BLUR_DOWNSAMPLE_HEIGHT_SCALE, true ); - mGaussianBlurView[idx].SetParentOrigin(ParentOrigin::CENTER); - mGaussianBlurView[idx].SetSize(mTargetSize); + mGaussianBlurView[idx].SetProperty( Actor::Property::PARENT_ORIGIN,ParentOrigin::CENTER ); + mGaussianBlurView[idx].SetProperty( Actor::Property::SIZE, mTargetSize ); Stage::GetCurrent().Add( mGaussianBlurView[idx] ); mGaussianBlurView[idx].SetUserImageAndOutputRenderTarget( texture, mBlurredImage[idx] ); @@ -294,15 +300,15 @@ void SuperBlurView::OnSizeSet( const Vector3& targetSize ) Control::OnSizeSet( targetSize ); } -void SuperBlurView::OnStageConnection( int depth ) +void SuperBlurView::OnSceneConnection( int depth ) { if( mTargetSize == Vector2::ZERO ) { return; } - // Exception to the rule, chaining up first ensures visuals have SetOnStage called to create their renderers - Control::OnStageConnection( depth ); + // Exception to the rule, chaining up first ensures visuals have SetOnScene called to create their renderers + Control::OnSceneConnection( depth ); Actor self = Self(); @@ -334,7 +340,7 @@ void SuperBlurView::OnStageConnection( int depth ) } } -void SuperBlurView::OnStageDisconnection() +void SuperBlurView::OnSceneDisconnection() { for(unsigned int i=0; i