X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Ftool-bar%2Ftool-bar-impl.cpp;h=441b640e927166ecbf4af06e30c33864293e0cf0;hb=b81849b1d366b03595dec285264ecbd8b6f1801e;hp=7ba35c5948468daea14668b1bef1ba14f7810aa6;hpb=70ee2ab38bb1aa71222e65863ebb98d395c449a2;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git 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 7ba35c5..441b640 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,14 +19,12 @@ #include "tool-bar-impl.h" // EXTERNAL INCLUDES -#include #include #include #include // INTERNAL INCLUDES #include -#include namespace Dali { @@ -57,7 +55,7 @@ Toolkit::ToolBar ToolBar::New() // Create the implementation, temporarily owned on stack IntrusivePtr< ToolBar > internalToolBar = new ToolBar(); - // Pass ownership to Toolkit::View + // Pass ownership to Toolkit::Toolbar Toolkit::ToolBar toolBar( *internalToolBar ); // Second-phase init of the implementation @@ -67,25 +65,6 @@ Toolkit::ToolBar ToolBar::New() return toolBar; } -void ToolBar::SetBackground( Actor background ) -{ - Lock lock( mInitializing ); - - // ToolBar image - background.SetParentOrigin( Dali::ParentOrigin::TOP_CENTER ); - background.SetAnchorPoint( Dali::AnchorPoint::TOP_CENTER ); - background.SetSize( Vector2( mToolBarSize.width, mToolBarSize.height ) ); - - RenderableActor renderableActor = RenderableActor::DownCast( background ); - if ( renderableActor ) - { - renderableActor.SetSortModifier( 1.f ); - } - - Self().Add( background ); - mBackground = background; -} - void ToolBar::AddControl( Actor control, float relativeSize, Toolkit::Alignment::Type alignment, const Toolkit::Alignment::Padding& padding ) { // Work out index and update bases and offsets for further insertions. @@ -296,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 ), @@ -323,7 +302,7 @@ void ToolBar::OnInitialize() mLayout = Toolkit::TableView::New( 1, 1 ); mLayout.SetName( "TOOLBAR_LAYOUT" ); mLayout.SetResizePolicy( ResizePolicy::FILL_TO_PARENT, Dimension::ALL_DIMENSIONS ); - mLayout.SetPositionInheritanceMode( Dali::USE_PARENT_POSITION ); + mLayout.SetParentOrigin( ParentOrigin::CENTER ); Self().Add( mLayout ); @@ -336,7 +315,7 @@ void ToolBar::OnInitialize() mLayout.SetRelativeWidth( 1, mRightRelativeSpace ); } -void ToolBar::OnControlChildAdd(Actor& child) +void ToolBar::OnChildAdd(Actor& child) { if( !mInitializing ) { @@ -351,15 +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(). -} -void ToolBar::OnControlSizeSet( const Vector3& targetSize ) -{ - mToolBarSize = targetSize; - mBackground.SetSize( Vector2( mToolBarSize.width, mToolBarSize.height ) ); + Control::OnChildAdd( child ); } } // namespace Internal