X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Fanimated-vector-image%2Fanimated-vector-image-visual.h;h=c809634515825443e2e2464b10401ff9b3303c46;hp=e09527a46aa9545cfa55da67f85f682cf021320e;hb=7018f61b640b6fcf9cb576b537bafcb6bb8240e8;hpb=5359a575636e678baf178dab5209b587be1a7551 diff --git a/dali-toolkit/internal/visuals/animated-vector-image/animated-vector-image-visual.h b/dali-toolkit/internal/visuals/animated-vector-image/animated-vector-image-visual.h index e09527a..c809634 100644 --- a/dali-toolkit/internal/visuals/animated-vector-image/animated-vector-image-visual.h +++ b/dali-toolkit/internal/visuals/animated-vector-image/animated-vector-image-visual.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_INTERNAL_ANIMATED_VECTOR_IMAGE_VISUAL_H /* - * Copyright (c) 2020 Samsung Electronics Co., Ltd. + * Copyright (c) 2021 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. @@ -19,30 +19,28 @@ */ // EXTERNAL INCLUDES +#include +#include #include -#include #include -#include -#include +#include // INTERNAL INCLUDES -#include -#include #include +#include #include +#include +#include namespace Dali { - namespace Toolkit { - namespace Internal { - class ImageVisualShaderFactory; class AnimatedVectorImageVisual; -using AnimatedVectorImageVisualPtr = IntrusivePtr< AnimatedVectorImageVisual >; +using AnimatedVectorImageVisualPtr = IntrusivePtr; /** * The visual which renders an animated vector image using VectorAnimationRenderer. @@ -55,10 +53,9 @@ using AnimatedVectorImageVisualPtr = IntrusivePtr< AnimatedVectorImageVisual >; * | url | STRING | * */ -class AnimatedVectorImageVisual: public Visual::Base, public ConnectionTracker +class AnimatedVectorImageVisual : public Visual::Base, public ConnectionTracker, public VectorAnimationManager::LifecycleObserver { public: - /** * @brief Create the AnimatedVectorImageVisual using the image URL. * @@ -68,7 +65,7 @@ public: * @param[in] properties A Property::Map containing settings for this visual * @return A smart-pointer to the newly allocated visual. */ - static AnimatedVectorImageVisualPtr New( VisualFactoryCache& factoryCache, ImageVisualShaderFactory& shaderFactory, const VisualUrl& imageUrl, const Property::Map& properties ); + static AnimatedVectorImageVisualPtr New(VisualFactoryCache& factoryCache, ImageVisualShaderFactory& shaderFactory, const VisualUrl& imageUrl, const Property::Map& properties); /** * @brief Create the AnimatedVectorImageVisual using the image URL. @@ -78,27 +75,31 @@ public: * @param[in] imageUrl The URL to an animated vector image to use * @return A smart-pointer to the newly allocated visual. */ - static AnimatedVectorImageVisualPtr New( VisualFactoryCache& factoryCache, ImageVisualShaderFactory& shaderFactory, const VisualUrl& imageUrl ); - -public: // from Visual + static AnimatedVectorImageVisualPtr New(VisualFactoryCache& factoryCache, ImageVisualShaderFactory& shaderFactory, const VisualUrl& imageUrl); +public: // from Visual /** * @copydoc Visual::Base::GetNaturalSize */ - void GetNaturalSize( Vector2& naturalSize ) override; + void GetNaturalSize(Vector2& naturalSize) override; /** * @copydoc Visual::Base::CreatePropertyMap */ - void DoCreatePropertyMap( Property::Map& map ) const override; + void DoCreatePropertyMap(Property::Map& map) const override; /** * @copydoc Visual::Base::CreateInstancePropertyMap */ - void DoCreateInstancePropertyMap( Property::Map& map ) const override; + void DoCreateInstancePropertyMap(Property::Map& map) const override; -protected: +protected: // From VectorAnimationManager::LifecycleObserver: + /** + * @copydoc VectorAnimationManager::LifecycleObserver::VectorAnimationManagerDestroyed() + */ + void VectorAnimationManagerDestroyed() override; +protected: /** * @brief Constructor. * @@ -106,7 +107,7 @@ protected: * @param[in] shaderFactory The ImageVisualShaderFactory object * @param[in] imageUrl The URL to an animated vector image to use */ - AnimatedVectorImageVisual( VisualFactoryCache& factoryCache, ImageVisualShaderFactory& shaderFactory, const VisualUrl& imageUrl ); + AnimatedVectorImageVisual(VisualFactoryCache& factoryCache, ImageVisualShaderFactory& shaderFactory, const VisualUrl& imageUrl); /** * @brief A reference counted object may only be deleted by calling Unreference(). @@ -114,19 +115,24 @@ protected: ~AnimatedVectorImageVisual() override; /** + * @copydoc Visual::Base::OnInitialize + */ + void OnInitialize() override; + + /** * @copydoc Visual::Base::DoSetProperties */ - void DoSetProperties( const Property::Map& propertyMap ) override; + void DoSetProperties(const Property::Map& propertyMap) override; /** * @copydoc Visual::Base::DoSetOnScene */ - void DoSetOnScene( Actor& actor ) override; + void DoSetOnScene(Actor& actor) override; /** * @copydoc Visual::Base::DoSetOffScene */ - void DoSetOffScene( Actor& actor ) override; + void DoSetOffScene(Actor& actor) override; /** * @copydoc Visual::Base::OnSetTransform @@ -136,16 +142,15 @@ protected: /** * @copydoc Visual::Base::OnDoAction */ - void OnDoAction( const Property::Index actionId, const Property::Value& attributes ) override; + void OnDoAction(const Property::Index actionId, const Property::Value& attributes) override; private: - /** * Helper method to set individual values by index key. * @param[in] index The index key of the value * @param[in] value The value */ - void DoSetProperty( Property::Index index, const Property::Value& value ); + void DoSetProperty(Property::Index index, const Property::Value& value); /** * @brief Called when the texture upload is completed. @@ -180,22 +185,22 @@ private: /** * @brief Callback when the world scale factor changes. */ - void OnScaleNotification( PropertyNotification& source ); + void OnScaleNotification(PropertyNotification& source); /** * @brief Callback when the size changes. */ - void OnSizeNotification( PropertyNotification& source ); + void OnSizeNotification(PropertyNotification& source); /** * @brief Callback when the visibility of the actor is changed. */ - void OnControlVisibilityChanged( Actor actor, bool visible, DevelActor::VisibilityChange::Type type ); + void OnControlVisibilityChanged(Actor actor, bool visible, DevelActor::VisibilityChange::Type type); /** * @brief Callback when the visibility of the window is changed. */ - void OnWindowVisibilityChanged( Window window, bool visible ); + void OnWindowVisibilityChanged(Window window, bool visible); /** * @brief Callback when the event is processed. @@ -203,24 +208,27 @@ private: void OnProcessEvents(); // Undefined - AnimatedVectorImageVisual( const AnimatedVectorImageVisual& visual ) = delete; + AnimatedVectorImageVisual(const AnimatedVectorImageVisual& visual) = delete; // Undefined - AnimatedVectorImageVisual& operator=( const AnimatedVectorImageVisual& visual ) = delete; + AnimatedVectorImageVisual& operator=(const AnimatedVectorImageVisual& visual) = delete; private: - VisualUrl mUrl; - VectorAnimationTask::AnimationData mAnimationData; - VectorAnimationTaskPtr mVectorAnimationTask; - ImageVisualShaderFactory& mImageVisualShaderFactory; - PropertyNotification mScaleNotification; - PropertyNotification mSizeNotification; - Vector2 mVisualSize; - Vector2 mVisualScale; - WeakHandle< Actor > mPlacementActor; - DevelImageVisual::PlayState::Type mPlayState; - CallbackBase* mEventCallback; // Not owned - bool mRendererAdded; + VisualUrl mUrl; + VectorAnimationTask::AnimationData mAnimationData; + VectorAnimationTaskPtr mVectorAnimationTask; + ImageVisualShaderFactory& mImageVisualShaderFactory; + PropertyNotification mScaleNotification; + PropertyNotification mSizeNotification; + Vector2 mVisualSize; + Vector2 mVisualScale; + WeakHandle mPlacementActor; + DevelImageVisual::PlayState::Type mPlayState; + CallbackBase* mEventCallback; // Not owned + bool mLoadFailed; + bool mRendererAdded; + bool mCoreShutdown; + bool mRedrawInScalingDown; }; } // namespace Internal