X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Fshadow-view%2Fshadow-view-impl.h;h=68e1c3317be70b4da93a5ffefc416918f04dfbc8;hb=ed318176506ba6763f189728d7c14c00e9e0b909;hp=aa104287db1c86d1ae49208936f38b9c686c52cb;hpb=e2eda444afbe82e9591fe198eef339227f90a616;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/controls/shadow-view/shadow-view-impl.h b/dali-toolkit/internal/controls/shadow-view/shadow-view-impl.h index aa10428..68e1c33 100644 --- a/dali-toolkit/internal/controls/shadow-view/shadow-view-impl.h +++ b/dali-toolkit/internal/controls/shadow-view/shadow-view-impl.h @@ -1,29 +1,35 @@ #ifndef __DALI_TOOLKIT_INTERNAL_SHADOW_VIEW_H__ #define __DALI_TOOLKIT_INTERNAL_SHADOW_VIEW_H__ -// -// Copyright (c) 2014 Samsung Electronics Co., Ltd. -// -// Licensed under the Flora License, Version 1.0 (the License); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://floralicense.org/license/ -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an AS IS BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// +/* + * Copyright (c) 2014 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. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ // EXTERNAL INCLUDES #include #include +#include +#include +#include +#include +#include // INTERNAL INCLUDES -#include -#include +#include +#include #include #include @@ -41,7 +47,7 @@ namespace Internal /** * ShadowView implementation class */ -class ShadowView : public ControlImpl +class ShadowView : public Control { public: @@ -76,9 +82,9 @@ public: void Remove(Actor child); /** - * @copydoc Dali::Toolkit::ShadowView::SetShadowPlane(Actor shadowPlane) + * @copydoc Dali::Toolkit::ShadowView::SetShadowPlaneBackground(Actor shadowPlaneBackground) */ - void SetShadowPlane(Actor shadowPlane); + void SetShadowPlaneBackground(Actor shadowPlaneBackground); /** * @copydoc Dali::Toolkit::ShadowView::SetPointLight(Actor pointLight) @@ -121,8 +127,6 @@ private: virtual void OnInitialize(); virtual void OnSizeSet(const Vector3& targetSize); - virtual void OnStageConnection(); - virtual void OnStageDisconnection(); /** * Constrain the camera actor to the position of the point light, pointing @@ -135,7 +139,7 @@ private: void CreateBlurFilter(); private: - ImageActor mShadowPlane; // Shadow renders into this actor + Toolkit::ImageView mShadowPlane; // Shadow renders into this actor Actor mShadowPlaneBg; // mShadowPlane renders directly in front of this actor Actor mPointLight; // Shadow is cast from this point light @@ -146,12 +150,11 @@ private: Actor mChildrenRoot; // Subtree for all user added child actors that should be rendered normally Actor mBlurRootActor; // Root actor for blur filter processing - ImageActor mShadowPlaneDrawable; // Positioned on top of mShadowPlane for drawing shadow image RenderTask mRenderSceneTask; CameraActor mCameraActor; // Constrained to same position as mPointLight and pointing at mShadowPlane - ShaderEffect mShadowRenderShader; + Property::Map mShadowRenderShader; BlurTwoPassFilter mBlurFilter; Vector4 mCachedShadowColor; ///< Cached Shadow color.