X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Fborder%2Fborder-visual.h;h=42ebe6960d62083e4671c8a4d62d21bd7d37120c;hb=f6004b92a7b8ea0feed9c468943a3c369da4501e;hp=473080bc38f6ae2834214c836dce670519b999cc;hpb=190a30974e11c5792335e3b0493bf1c212beec6a;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/visuals/border/border-visual.h b/dali-toolkit/internal/visuals/border/border-visual.h index 473080b..42ebe69 100644 --- a/dali-toolkit/internal/visuals/border/border-visual.h +++ b/dali-toolkit/internal/visuals/border/border-visual.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_INTERNAL_BORDER_VISUAL_H /* - * Copyright (c) 2016 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,23 +19,20 @@ */ // EXTERNAL INCLUDES -#include #include +#include // INTERNAL INCLUDES #include namespace Dali { - namespace Toolkit { - namespace Internal { - class BorderVisual; -typedef IntrusivePtr< BorderVisual > BorderVisualPtr; +typedef IntrusivePtr BorderVisualPtr; /** * The visual which renders a solid color to the control's quad border fixed to a specified size. @@ -51,7 +48,6 @@ typedef IntrusivePtr< BorderVisual > BorderVisualPtr; class BorderVisual : public Visual::Base { public: - /** * @brief Create a new border visual. * @@ -59,16 +55,15 @@ public: * @param[in] properties A Property::Map containing settings for this visual * @return A smart-pointer to the newly allocated visual. */ - static BorderVisualPtr New( VisualFactoryCache& factoryCache, const Property::Map& properties ); + static BorderVisualPtr New(VisualFactoryCache& factoryCache, const Property::Map& properties); protected: - /** * @brief Constructor. * * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object */ - BorderVisual( VisualFactoryCache& factoryCache ); + BorderVisual(VisualFactoryCache& factoryCache); /** * @brief A reference counted object may only be deleted by calling Unreference(). @@ -76,57 +71,36 @@ protected: virtual ~BorderVisual(); /** + * @copydoc Visual::Base::OnInitialize + */ + void OnInitialize() override; + + /** * @copydoc Visual::Base::DoSetProperties */ - virtual void DoSetProperties( const Property::Map& propertyMap ); + void DoSetProperties(const Property::Map& propertyMap) override; /** - * @copydoc Visual::Base::DoSetOnStage + * @copydoc Visual::Base::DoSetOnScene */ - virtual void DoSetOnStage( Actor& actor ); + void DoSetOnScene(Actor& actor) override; /** * @copydoc Visual::Base::CreatePropertyMap */ - virtual void DoCreatePropertyMap( Property::Map& map ) const; + void DoCreatePropertyMap(Property::Map& map) const override; /** * @copydoc Visual::Base::CreateInstancePropertyMap */ - virtual void DoCreateInstancePropertyMap( Property::Map& map ) const; + void DoCreateInstancePropertyMap(Property::Map& map) const override; /** * @copydoc Visual::Base::OnSetTransform */ - virtual void OnSetTransform(); - -public: - - /** - * Set the color of the border. - * @param[in] color The border color. - */ - void SetBorderColor( const Vector4& color); - - /** - * Set the size of the border. - * @param[in] size The border size. - */ - void SetBorderSize( float size ); - - /** - * Enable/Disable the anti-aliasing. - * @param[in] enable Whether the anti-aliasing be enabled or not. - */ - void RequireAntiAliasing( bool antiAliasing ); + void OnSetTransform() override; private: - - /** - * @brief Initialize the renderer with the geometry and shader from the cache, if not available, create and save to the cache for sharing. - */ - void InitializeRenderer(); - /** * Request the border shader from the factory cache. If fail, create tha shader and add it to cache. * @return The border shader. @@ -144,16 +118,15 @@ private: * @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); // Undefined - BorderVisual( const BorderVisual& borderRenderer ); + BorderVisual(const BorderVisual& borderRenderer); // Undefined - BorderVisual& operator=( const BorderVisual& borderRenderer ); + BorderVisual& operator=(const BorderVisual& borderRenderer); private: - Vector4 mBorderColor; float mBorderSize;