X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Fwireframe%2Fwireframe-visual.h;h=23b16f5e6383a332f31b5e23fc8673dc5a252a11;hb=52f63e08e4386ce4f33bf03a34e6f039364a4064;hp=3756e0020b0be7d276b8bbb32ac4719945599248;hpb=b15279dd1e820bebf41aeb78453f997fe50051ae;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/visuals/wireframe/wireframe-visual.h b/dali-toolkit/internal/visuals/wireframe/wireframe-visual.h index 3756e00..23b16f5 100644 --- a/dali-toolkit/internal/visuals/wireframe/wireframe-visual.h +++ b/dali-toolkit/internal/visuals/wireframe/wireframe-visual.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_INTERNAL_WIREFRAME_VISUAL_H /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2019 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. @@ -47,9 +47,34 @@ public: * @brief Create a new wireframe visual. * * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object + * @param[in] properties A Property::Map containing settings for this visual * @return A smart-pointer to the newly allocated visual. */ - static WireframeVisualPtr New( VisualFactoryCache& factoryCache ); + static WireframeVisualPtr New( VisualFactoryCache& factoryCache, const Property::Map& properties ); + + /** + * @brief Create a new wireframe visual with an encapsulated actual visual. + * + * For debugging purpose, the rendering of the encapsulated visual is replaced with wireframe + * + * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object + * @param[in] actualVisual The encapsulated actual visual. + * @return A smart-pointer to the newly allocated visual. + */ + static WireframeVisualPtr New( VisualFactoryCache& factoryCache, Visual::BasePtr actualVisual ); + + /** + * @brief Create a new wireframe visual with an encapsulated actual visual. + * + * For debugging purpose, the rendering of the encapsulated visual is replaced with wireframe + * + * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object + * @param[in] actualVisual The encapsulated actual visual. + * @param[in] properties A Property::Map containing settings for this visual + * @return A smart-pointer to the newly allocated visual. + */ + static WireframeVisualPtr New( VisualFactoryCache& factoryCache, Visual::BasePtr actualVisual, const Property::Map& properties ); + protected: @@ -57,38 +82,58 @@ protected: * @brief Constructor. * * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object + * @param[in] actualVisual The encapsulated actual visual. */ - WireframeVisual( VisualFactoryCache& factoryCache ); + WireframeVisual( VisualFactoryCache& factoryCache, Visual::BasePtr actualVisual ); /** * @brief A reference counted object may only be deleted by calling Unreference(). */ virtual ~WireframeVisual(); +protected: // from Visual::Base + /** - * @copydoc Visual::Base::DoSetProperties() + * @copydoc Visual::Base::GetHeightForWidth() */ - virtual void DoSetProperties( const Property::Map& propertyMap ); + float GetHeightForWidth( float width ) override; /** - * @copydoc Visual::Base::DoSetOnStage + * @copydoc Visual::Base::GetNaturalSize() */ - virtual void DoSetOnStage( Actor& actor ); + void GetNaturalSize( Vector2& naturalSize ) override; /** - * @copydoc Visual::Base::CreatePropertyMap + * @copydoc Visual::Base::CreatePropertyMap() */ - virtual void DoCreatePropertyMap( Property::Map& map ) const; + void DoCreatePropertyMap( Property::Map& map ) const override; /** - * @copydoc Visual::Base::DoSetProperty + * @copydoc Visual::Base::CreateInstancePropertyMap */ - virtual void DoSetProperty( Dali::Property::Index index, const Dali::Property::Value& propertyValue ); + void DoCreateInstancePropertyMap( Property::Map& map ) const override; /** - * @copydoc Visual::Base::DoGetProperty + * @copydoc Visual::Base::DoSetProperties() + */ + void DoSetProperties( const Property::Map& propertyMap ) override; + + /** + * @copydoc Visual::Base::DoSetOnScene + */ + void DoSetOnScene( Actor& actor ) override; + + /** + * @copydoc Visual::Base::OnSetTransform + */ + void OnSetTransform() override; + + /** + * @copydoc Visual::Base::GetVisualObject + * + * Overriding as this visual can sometimes act as a proxy to the actual visual, i.e. when using debug rendering. */ - virtual Dali::Property::Value DoGetProperty( Dali::Property::Index index ); + Base& GetVisualObject() override; private: /** @@ -102,14 +147,16 @@ private: */ void InitializeRenderer(); -private: - // Undefined WireframeVisual( const WireframeVisual& visual); // Undefined WireframeVisual& operator=( const WireframeVisual& visual ); +private: + + Visual::BasePtr mActualVisual; + }; } // namespace Internal