X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Fpopup%2Fpopup-impl.cpp;h=3cd71d8420179e92b14ec334a9e9d8551e4a5761;hb=refs%2Fchanges%2F09%2F36309%2F4;hp=b0aa31226a562fb14f1bbf2fbd39211511b45dca;hpb=d0112823c3b9d6ff6a537df17c4ac8747a26424a;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/controls/popup/popup-impl.cpp b/dali-toolkit/internal/controls/popup/popup-impl.cpp index b0aa312..3cd71d8 100755 --- a/dali-toolkit/internal/controls/popup/popup-impl.cpp +++ b/dali-toolkit/internal/controls/popup/popup-impl.cpp @@ -264,33 +264,12 @@ void Popup::SetButtonAreaImage( Actor image ) void Popup::SetTitle( const std::string& text ) { - Toolkit::TextView titleActor = Toolkit::TextView::New(); - titleActor.SetText( text ); - titleActor.SetColor( Color::BLACK ); - titleActor.SetMultilinePolicy( Toolkit::TextView::SplitByWord ); - titleActor.SetWidthExceedPolicy( Toolkit::TextView::Split ); - titleActor.SetLineJustification( Toolkit::TextView::Center ); - - SetTitle( titleActor ); } -void Popup::SetTitle( Toolkit::TextView titleActor ) +const std::string& Popup::GetTitle() const { - // Replaces the current title actor. - if( mTitle && mPopupBg ) - { - mPopupBg.Remove( mTitle ); - } - mTitle = titleActor; - - mPopupBg.Add( mTitle ); - - RelayoutRequest(); -} - -Toolkit::TextView Popup::GetTitle() const -{ - return mTitle; + static std::string temp(""); + return temp; } void Popup::AddButton( Toolkit::Button button ) @@ -693,24 +672,7 @@ void Popup::OnRelayout( const Vector2& size, ActorSizeContainer& container ) // Relayout title Vector3 positionOffset( 0.0f, mPopupStyle->margin + POPUP_OUT_MARGIN_WIDTH, CONTENT_DEPTH ); - if( mTitle ) - { - Vector2 titleSize; - titleSize.width = popupSize.width; - titleSize.height = mTitle.GetHeightForWidth( titleSize.width ); - - // As the default size policy for text-view is Fixed & Fixed, a size needs to be set. - // Otherwise size-negotiation algorithm uses the GetNaturalSize() with doesn't take - // into account the multiline and exceed policies, giving as result a wrong size. - mTitle.SetSize( titleSize ); - Relayout( mTitle, titleSize, container ); - - mTitle.SetAnchorPoint( AnchorPoint::TOP_CENTER ); - mTitle.SetParentOrigin( ParentOrigin::TOP_CENTER ); - mTitle.SetPosition( positionOffset ); - - positionOffset.y += titleSize.height + mPopupStyle->margin; - } + // TODO // Relayout content if( mContent ) @@ -809,29 +771,6 @@ Vector3 Popup::GetNaturalSize() Vector3 naturalSize( 0.0f, 0.0f, 0.0f ); - if ( mTitle ) - { - Vector3 titleNaturalSize = mTitle.GetImplementation().GetNaturalSize(); - // Buffer to avoid errors. The width of the popup could potentially be the width of the title text. - // It was observed in this case that text wrapping was then inconsistent when seen on device - const float titleBuffer = 0.5f; - titleNaturalSize.width += titleBuffer; - - // As TextView GetNaturalSize does not take wrapping into account, limit the width - // to that of the stage - if( titleNaturalSize.width >= maxWidth) - { - naturalSize.width = maxWidth; - naturalSize.height = mTitle.GetImplementation().GetHeightForWidth( naturalSize.width ); - } - else - { - naturalSize += titleNaturalSize; - } - - naturalSize.height += mPopupStyle->margin; - } - if( mContent ) { Vector3 contentSize = RelayoutHelper::GetNaturalSize( mContent ); @@ -862,12 +801,6 @@ float Popup::GetHeightForWidth( float width ) float height( 0.0f ); float popupWidth( width - 2.f * ( POPUP_OUT_MARGIN_WIDTH + mPopupStyle->margin ) ); - if ( mTitle ) - { - height += mTitle.GetImplementation().GetHeightForWidth( popupWidth ); - height += mPopupStyle->margin; - } - if( mContent ) { height += RelayoutHelper::GetHeightForWidth( mContent, popupWidth ) + mPopupStyle->margin;