X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Fwireframe%2Fwireframe-visual.h;h=e1ba79c1ad350eca64cbe68a31f8b8ef9e0b3a15;hb=ec0f0792f651f58e887bf53801da23a6d76de0e0;hp=12ebfe586b83731e4108643cc7a194d386bd2629;hpb=c052b6678e2c6d8a65545dbbe4531ea7057c1999;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 12ebfe5..e1ba79c 100644 --- a/dali-toolkit/internal/visuals/wireframe/wireframe-visual.h +++ b/dali-toolkit/internal/visuals/wireframe/wireframe-visual.h @@ -26,23 +26,19 @@ namespace Dali { - namespace Toolkit { - namespace Internal { - class WireframeVisual; -typedef IntrusivePtr< WireframeVisual > WireframeVisualPtr; +typedef IntrusivePtr WireframeVisualPtr; /** * @brief Renders a wireframe outline to the control's quad. */ -class WireframeVisual: public Visual::Base +class WireframeVisual : public Visual::Base { public: - /** * @brief Create a new wireframe visual. * @@ -50,7 +46,7 @@ public: * @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, const Property::Map& properties ); + static WireframeVisualPtr New(VisualFactoryCache& factoryCache, const Property::Map& properties); /** * @brief Create a new wireframe visual with an encapsulated actual visual. @@ -61,7 +57,7 @@ public: * @param[in] actualVisual The encapsulated actual visual. * @return A smart-pointer to the newly allocated visual. */ - static WireframeVisualPtr New( VisualFactoryCache& factoryCache, Visual::BasePtr actualVisual ); + static WireframeVisualPtr New(VisualFactoryCache& factoryCache, Visual::BasePtr actualVisual); /** * @brief Create a new wireframe visual with an encapsulated actual visual. @@ -73,18 +69,16 @@ public: * @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 ); - + static WireframeVisualPtr New(VisualFactoryCache& factoryCache, Visual::BasePtr actualVisual, const Property::Map& properties); protected: - /** * @brief Constructor. * * @param[in] factoryCache A pointer pointing to the VisualFactoryCache object * @param[in] actualVisual The encapsulated actual visual. */ - WireframeVisual( VisualFactoryCache& factoryCache, Visual::BasePtr actualVisual ); + WireframeVisual(VisualFactoryCache& factoryCache, Visual::BasePtr actualVisual); /** * @brief A reference counted object may only be deleted by calling Unreference(). @@ -100,32 +94,32 @@ protected: // from Visual::Base /** * @copydoc Visual::Base::GetHeightForWidth() */ - float GetHeightForWidth( float width ) override; + float GetHeightForWidth(float width) override; /** * @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; /** * @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::OnSetTransform @@ -147,15 +141,13 @@ private: Geometry CreateQuadWireframeGeometry(); // Undefined - WireframeVisual( const WireframeVisual& visual); + WireframeVisual(const WireframeVisual& visual); // Undefined - WireframeVisual& operator=( const WireframeVisual& visual ); + WireframeVisual& operator=(const WireframeVisual& visual); private: - Visual::BasePtr mActualVisual; - }; } // namespace Internal