X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Fgradient%2Fgradient-visual.h;h=f7f47eed3e988b7edf6cb2e7f9088b09adaa78a4;hb=97d688bcdfb692dd2ff535c1965077dd747cfcf6;hp=6c82b573c38d350b48cdde35fa31695fcae1eec5;hpb=257a9991486e4e05335212b21ecc1f5a0aacbc63;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/visuals/gradient/gradient-visual.h b/dali-toolkit/internal/visuals/gradient/gradient-visual.h index 6c82b57..f7f47ee 100644 --- a/dali-toolkit/internal/visuals/gradient/gradient-visual.h +++ b/dali-toolkit/internal/visuals/gradient/gradient-visual.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_INTERNAL_GRADIENT_VISUAL_H /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 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. @@ -18,8 +18,11 @@ * */ +// EXTERNAL INCLUDES +#include + // INTERNAL INCLUDES -#include +#include #include namespace Dali @@ -33,9 +36,11 @@ namespace Internal { class Gradient; +class GradientVisual; +typedef IntrusivePtr< GradientVisual > GradientVisualPtr; /** - * The renderer which renders smooth transition of colors to the control's quad. + * The visual which renders smooth transition of colors to the control's quad. * It supports two types of gradients: linear and radial. * * The following properties are essential for create a LINEAR GradientRender @@ -66,7 +71,7 @@ class Gradient; * Valid values for spreadMethod are 'pad', 'repeat' and 'reflect.' * If not provided, 'objectBoundingBox' is used as default gradient units, and 'pad' is used as default spread method. */ -class GradientVisual: public Visual +class GradientVisual: public Visual::Base { public: @@ -80,47 +85,56 @@ public: }; /** - * @brief Constructor. + * @brief Create a new gradient visual. * * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object + * @return A smart-pointer to the newly allocated visual. */ - GradientVisual( VisualFactoryCache& factoryCache ); - - /** - * @brief A reference counted object may only be deleted by calling Unreference(). - */ - ~GradientVisual(); + static GradientVisualPtr New( VisualFactoryCache& factoryCache ); public: // from Visual /** - * @copydoc Visual::SetSize + * @copydoc Visual::Base::SetSize */ virtual void SetSize( const Vector2& size ); /** - * @copydoc Visual::SetClipRect + * @copydoc Visual::Base::CreatePropertyMap */ - virtual void SetClipRect( const Rect& clipRect ); + virtual void DoCreatePropertyMap( Property::Map& map ) const; /** - * @copydoc Visual::SetOffset + * @copydoc Visual::Base::DoSetProperty */ - virtual void SetOffset( const Vector2& offset ); + virtual void DoSetProperty( Dali::Property::Index index, const Dali::Property::Value& propertyValue ); /** - * @copydoc Visual::CreatePropertyMap + * @copydoc Visual::Base::DoGetProperty */ - virtual void DoCreatePropertyMap( Property::Map& map ) const; + virtual Dali::Property::Value DoGetProperty( Dali::Property::Index index ); protected: + + /** + * @brief Constructor. + * + * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object + */ + GradientVisual( VisualFactoryCache& factoryCache ); + + /** + * @brief A reference counted object may only be deleted by calling Unreference(). + */ + virtual ~GradientVisual(); + /** - * @copydoc Visual::DoInitialize + * @copydoc Visual::Base::DoSetProperties */ - virtual void DoInitialize( Actor& actor, const Property::Map& propertyMap ); + virtual void DoSetProperties( const Property::Map& propertyMap ); /** - * @copydoc Visual::DoSetOnStage + * @copydoc Visual::Base::DoSetOnStage */ virtual void DoSetOnStage( Actor& actor ); @@ -148,10 +162,10 @@ private: static void GetStopOffsets(const Property::Value* value, Vector& stopOffsets); // Undefined - GradientVisual( const GradientVisual& gradientRenderer ); + GradientVisual( const GradientVisual& gradientVisual ); // Undefined - GradientVisual& operator=( const GradientVisual& gradientRenderer ); + GradientVisual& operator=( const GradientVisual& gradientVisual ); private: