X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Fborder%2Fborder-visual.cpp;h=cc00fc71e3606cbbcd2866089d28b6a234ed39e0;hp=feb19f3765cf150f914cf30bb1b575ca6cd38bdf;hb=33d3f72e60fc62db3718791f906dc843f1edeeb3;hpb=99e2ea03e6d6059f5803d700932df1ff1c848cd3 diff --git a/dali-toolkit/internal/visuals/border/border-visual.cpp b/dali-toolkit/internal/visuals/border/border-visual.cpp index feb19f3..cc00fc7 100644 --- a/dali-toolkit/internal/visuals/border/border-visual.cpp +++ b/dali-toolkit/internal/visuals/border/border-visual.cpp @@ -1,5 +1,5 @@ /* - * 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. @@ -21,7 +21,8 @@ // EXTERNAL INCLUDES #include -//INTERNAL INCLUDES +// INTERNAL INCLUDES +#include #include #include #include @@ -117,19 +118,19 @@ BorderVisual::~BorderVisual() void BorderVisual::DoInitialize( Actor& actor, const Property::Map& propertyMap ) { - Property::Value* color = propertyMap.Find( COLOR_NAME ); + Property::Value* color = propertyMap.Find( Toolkit::BorderVisual::Property::COLOR, COLOR_NAME ); if( !( color && color->Get(mBorderColor) ) ) { - DALI_LOG_ERROR( "Fail to provide a border color to the BorderVisual object" ); + DALI_LOG_ERROR( "Fail to provide a border color to the BorderVisual object\n" ); } - Property::Value* size = propertyMap.Find( SIZE_NAME ); + Property::Value* size = propertyMap.Find( Toolkit::BorderVisual::Property::SIZE, SIZE_NAME ); if( !( size && size->Get(mBorderSize) ) ) { - DALI_LOG_ERROR( "Fail to provide a border size to the BorderVisual object" ); + DALI_LOG_ERROR( "Fail to provide a border size to the BorderVisual object\n" ); } - Property::Value* antiAliasing = propertyMap.Find( ANTI_ALIASING ); + Property::Value* antiAliasing = propertyMap.Find( Toolkit::BorderVisual::Property::ANTI_ALIASING, ANTI_ALIASING ); if( antiAliasing ) { antiAliasing->Get( mAntiAliasing ); @@ -147,20 +148,21 @@ void BorderVisual::DoSetOnStage( Actor& actor ) { InitializeRenderer(); - mBorderColorIndex = (mImpl->mRenderer).RegisterProperty( COLOR_NAME, mBorderColor ); + mBorderColorIndex = (mImpl->mRenderer).RegisterProperty( Toolkit::BorderVisual::Property::COLOR, COLOR_NAME, mBorderColor ); if( mBorderColor.a < 1.f || mAntiAliasing) { mImpl->mRenderer.SetProperty( Renderer::Property::BLEND_MODE, BlendMode::ON ); } - mBorderSizeIndex = (mImpl->mRenderer).RegisterProperty( SIZE_NAME, mBorderSize ); + mBorderSizeIndex = (mImpl->mRenderer).RegisterProperty( Toolkit::BorderVisual::Property::SIZE, SIZE_NAME, mBorderSize ); } void BorderVisual::DoCreatePropertyMap( Property::Map& map ) const { map.Clear(); - map.Insert( RENDERER_TYPE, BORDER_RENDERER ); - map.Insert( COLOR_NAME, mBorderColor ); - map.Insert( SIZE_NAME, mBorderSize ); + map.Insert( Toolkit::Visual::Property::TYPE, Toolkit::Visual::BORDER ); + map.Insert( Toolkit::BorderVisual::Property::COLOR, mBorderColor ); + map.Insert( Toolkit::BorderVisual::Property::SIZE, mBorderSize ); + map.Insert( Toolkit::BorderVisual::Property::ANTI_ALIASING, mAntiAliasing ); } void BorderVisual::InitializeRenderer() @@ -301,7 +303,7 @@ Geometry BorderVisual::CreateBorderGeometry() Geometry geometry = Geometry::New(); geometry.AddVertexBuffer( borderVertices ); geometry.SetIndexBuffer( indexData, sizeof(indexData)/sizeof(indexData[0]) ); - geometry.SetGeometryType( Geometry::TRIANGLE_STRIP ); + geometry.SetType( Geometry::TRIANGLE_STRIP ); return geometry; }