X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Ftool-bar%2Ftool-bar-impl.cpp;h=274ca560c1eb0f975b9d99438bf6ec372d403258;hb=afb47f411d700d2b4be6415b61995cde5c37126c;hp=207ffe6272c5f8823e000a53d1ee84b301f56cde;hpb=f4d559ea999cbbc44b1ecd489c4ca3711d37feca;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 207ffe6..274ca56 100644 --- a/dali-toolkit/internal/controls/tool-bar/tool-bar-impl.cpp +++ b/dali-toolkit/internal/controls/tool-bar/tool-bar-impl.cpp @@ -22,13 +22,12 @@ #include #include #include +#include // INTERNAL INCLUDES #include #include -// EXTERNAL INCLUDES - namespace Dali { @@ -40,12 +39,14 @@ namespace Internal namespace { + BaseHandle Create() { return Toolkit::ToolBar::New(); } -TypeRegistration mType( typeid(Toolkit::ToolBar), typeid(Toolkit::Control), Create ); +DALI_TYPE_REGISTRATION_BEGIN( Toolkit::ToolBar, Toolkit::Control, Create ) +DALI_TYPE_REGISTRATION_END() const float DEFAULT_RELATIVE_SIZE( 0.1f ); const Toolkit::Alignment::Type DEFAULT_ALIGNMENT( Toolkit::Alignment::HorizontalLeft ); @@ -73,7 +74,7 @@ void ToolBar::SetBackground( Actor background ) // ToolBar image background.SetParentOrigin( Dali::ParentOrigin::TOP_CENTER ); background.SetAnchorPoint( Dali::AnchorPoint::TOP_CENTER ); - background.SetSize( mToolBarSize ); + background.SetSize( Vector2( mToolBarSize.width, mToolBarSize.height ) ); RenderableActor renderableActor = RenderableActor::DownCast( background ); if ( renderableActor ) @@ -124,8 +125,9 @@ 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.SetScaling( Toolkit::Alignment::ScaleToFill ); + alignmentContainer.SetSizeScalePolicy( FIT_WITH_ASPECT_RATIO ); alignmentContainer.SetPadding( padding ); + alignmentContainer.SetResizePolicy( FILL_TO_PARENT, ALL_DIMENSIONS ); alignmentContainer.Add( control ); // Insert the control in the table view. @@ -319,6 +321,8 @@ void ToolBar::OnInitialize() // Layout mLayout = Toolkit::TableView::New( 1, 1 ); + mLayout.SetName( "TOOLBAR_LAYOUT" ); + mLayout.SetResizePolicy( FILL_TO_PARENT, ALL_DIMENSIONS ); mLayout.SetPositionInheritanceMode( Dali::USE_PARENT_POSITION ); Self().Add( mLayout ); @@ -355,7 +359,7 @@ void ToolBar::OnControlChildAdd(Actor& child) void ToolBar::OnControlSizeSet( const Vector3& targetSize ) { mToolBarSize = targetSize; - mBackground.SetSize( mToolBarSize ); + mBackground.SetSize( Vector2( mToolBarSize.width, mToolBarSize.height ) ); } } // namespace Internal