X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Ftool-bar%2Ftool-bar-impl.cpp;h=183fde2fc9006cd47b926ef7aea580d31f6daf54;hp=5ce8db6e4f6554570fa78ced70412f72e9a9f1c1;hb=667a103d2c6f9caba8c970bdafd26bdd10144715;hpb=0dd2826b16facb7e8f21ffb86853bd1b0afb97b4 diff --git a/dali-toolkit/internal/controls/tool-bar/tool-bar-impl.cpp b/dali-toolkit/internal/controls/tool-bar/tool-bar-impl.cpp index 5ce8db6..183fde2 100644 --- a/dali-toolkit/internal/controls/tool-bar/tool-bar-impl.cpp +++ b/dali-toolkit/internal/controls/tool-bar/tool-bar-impl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2017 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,13 +19,12 @@ #include "tool-bar-impl.h" // EXTERNAL INCLUDES -#include #include #include -#include +#include // INTERNAL INCLUDES -#include +#include namespace Dali { @@ -105,7 +104,7 @@ void ToolBar::AddControl( Actor control, float relativeSize, Toolkit::Alignment: // Create an alignment container where to place the control. Toolkit::Alignment alignmentContainer = Toolkit::Alignment::New( alignment ); - alignmentContainer.SetSizeScalePolicy( SizeScalePolicy::FIT_WITH_ASPECT_RATIO ); + alignmentContainer.SetProperty( Actor::Property::SIZE_SCALE_POLICY, SizeScalePolicy::FIT_WITH_ASPECT_RATIO ); alignmentContainer.SetPadding( padding ); alignmentContainer.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::ALL_DIMENSIONS ); alignmentContainer.Add( control ); @@ -276,7 +275,7 @@ void ToolBar::RemoveControl( Actor control ) } ToolBar::ToolBar() -: Control( ControlBehaviour( ACTOR_BEHAVIOUR_NONE ) ), +: Control( ControlBehaviour( CONTROL_BEHAVIOUR_DEFAULT ) ), mLayout(), mLeftOffset( 0 ), mCenterBase( 1 ), @@ -301,9 +300,9 @@ void ToolBar::OnInitialize() // Layout mLayout = Toolkit::TableView::New( 1, 1 ); - mLayout.SetName( "TOOLBAR_LAYOUT" ); + mLayout.SetProperty( Dali::Actor::Property::NAME, "TOOLBAR_LAYOUT" ); mLayout.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::ALL_DIMENSIONS ); - mLayout.SetParentOrigin( ParentOrigin::CENTER ); + mLayout.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER ); Self().Add( mLayout ); @@ -316,7 +315,7 @@ void ToolBar::OnInitialize() mLayout.SetRelativeWidth( 1, mRightRelativeSpace ); } -void ToolBar::OnControlChildAdd(Actor& child) +void ToolBar::OnChildAdd(Actor& child) { if( !mInitializing ) { @@ -331,9 +330,11 @@ void ToolBar::OnControlChildAdd(Actor& child) AddControl( child, DEFAULT_RELATIVE_SIZE, DEFAULT_ALIGNMENT, Toolkit::ToolBar::DEFAULT_PADDING ); } - // No OnControlChildRemove method required because Actors are added to the mLayout table view, so if an + // No OnChildRemove method required because Actors are added to the mLayout table view, so if an // actor is removed using the Actor::RemoveChild method it will not remove anything because the // actor is in mLayout not in Self(). + + Control::OnChildAdd( child ); } } // namespace Internal