X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Fgradient%2Fgradient-visual.h;h=bc131aeb11b2c455e28f22acaa4bc1dfe23331e3;hb=d2265be3cc2e43a7464b27a6d611a5548313fb8e;hp=1726c5136d40481667d8c6c9a10e30ecbf708375;hpb=d6fead18ff8cc7fca3feb1aa1789e47583796814;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 1726c51..bc131ae 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,6 +18,9 @@ * */ +// EXTERNAL INCLUDES +#include + // INTERNAL INCLUDES #include #include @@ -33,6 +36,8 @@ namespace Internal { class Gradient; +class GradientVisual; +typedef IntrusivePtr< GradientVisual > GradientVisualPtr; /** * The visual which renders smooth transition of colors to the control's quad. @@ -80,16 +85,12 @@ 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 @@ -114,10 +115,28 @@ public: // from Visual 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::Base::DoSetProperties + */ + virtual void DoSetProperties( const Property::Map& propertyMap ); + /** - * @copydoc Visual::Base::DoInitialize + * @copydoc Visual::Base::OnSetTransform */ - virtual void DoInitialize( Actor& actor, const Property::Map& propertyMap ); + virtual void OnSetTransform(); /** * @copydoc Visual::Base::DoSetOnStage @@ -158,6 +177,7 @@ private: Matrix3 mGradientTransform; IntrusivePtr mGradient; Type mGradientType; + bool mIsOpaque; ///< Set to false if any of the stop colors are not opaque }; } // namespace Internal