From 4104fb85c6124dca6246f1d2763eb30ba980d623 Mon Sep 17 00:00:00 2001 From: Joogab Yun Date: Wed, 28 Nov 2018 14:22:28 +0900 Subject: [PATCH] Revert "[Tizen] Modify codes for Dali Windows backend" This reverts commit eb346f8952c39c70b78d9f8e8f420b57458f3c6c. --- dali-toolkit/devel-api/layouting/layout-group-impl.cpp | 0 dali-toolkit/internal/layouting/flex-layout-impl.cpp | 0 dali-toolkit/internal/layouting/linear-layout-impl.cpp | 14 +++++++------- dali-toolkit/internal/layouting/vbox-layout-impl.cpp | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) mode change 100755 => 100644 dali-toolkit/devel-api/layouting/layout-group-impl.cpp mode change 100755 => 100644 dali-toolkit/internal/layouting/flex-layout-impl.cpp mode change 100755 => 100644 dali-toolkit/internal/layouting/linear-layout-impl.cpp mode change 100755 => 100644 dali-toolkit/internal/layouting/vbox-layout-impl.cpp diff --git a/dali-toolkit/devel-api/layouting/layout-group-impl.cpp b/dali-toolkit/devel-api/layouting/layout-group-impl.cpp old mode 100755 new mode 100644 diff --git a/dali-toolkit/internal/layouting/flex-layout-impl.cpp b/dali-toolkit/internal/layouting/flex-layout-impl.cpp old mode 100755 new mode 100644 diff --git a/dali-toolkit/internal/layouting/linear-layout-impl.cpp b/dali-toolkit/internal/layouting/linear-layout-impl.cpp old mode 100755 new mode 100644 index 81ed9e3..b077f54 --- a/dali-toolkit/internal/layouting/linear-layout-impl.cpp +++ b/dali-toolkit/internal/layouting/linear-layout-impl.cpp @@ -519,12 +519,12 @@ void LinearLayout::LayoutHorizontal( LayoutLength left, LayoutLength top, Layout { case Dali::Toolkit::LinearLayout::Alignment::TOP: { - childTop = LayoutLength( padding.top ) + LayoutLength( childMargin.top ); + childTop = LayoutLength( padding.top ) + childMargin.top; break; } case Dali::Toolkit::LinearLayout::Alignment::BOTTOM: { - childTop = height - LayoutLength( padding.bottom ) - childHeight - LayoutLength( childMargin.bottom ); + childTop = height - padding.bottom - childHeight - childMargin.bottom; break; } case Dali::Toolkit::LinearLayout::Alignment::CENTER_VERTICAL: // FALLTHROUGH @@ -536,7 +536,7 @@ void LinearLayout::LayoutHorizontal( LayoutLength left, LayoutLength top, Layout } childLeft += childMargin.start; childLayout->Layout( childLeft, childTop, childLeft + childWidth, childTop + childHeight ); - childLeft += childWidth + LayoutLength( childMargin.end ) + mCellPadding.width; + childLeft += childWidth + childMargin.end + mCellPadding.width; } } } @@ -588,7 +588,7 @@ void LinearLayout::MeasureVertical( MeasureSpec widthMeasureSpec, MeasureSpec he if( isExactly && useExcessSpace ) { LayoutLength totalLength = mTotalLength; - mTotalLength = std::max( totalLength, totalLength + LayoutLength( childMargin.top ) + LayoutLength( childMargin.bottom ) ); + mTotalLength = std::max( totalLength, totalLength + childMargin.top + childMargin.bottom ); } else { @@ -850,12 +850,12 @@ void LinearLayout::LayoutVertical( LayoutLength left, LayoutLength top, LayoutLe case Dali::Toolkit::LinearLayout::Alignment::BEGIN: default: { - childLeft = LayoutLength( padding.start ) + LayoutLength( childMargin.start ); + childLeft = LayoutLength( padding.start ) + childMargin.start; break; } case Dali::Toolkit::LinearLayout::Alignment::END: { - childLeft = width - LayoutLength( padding.end ) - childWidth - LayoutLength( childMargin.end ); + childLeft = width - padding.end - childWidth - childMargin.end; break; } case Dali::Toolkit::LinearLayout::Alignment::CENTER_HORIZONTAL: @@ -865,7 +865,7 @@ void LinearLayout::LayoutVertical( LayoutLength left, LayoutLength top, LayoutLe } } childLayout->Layout( childLeft, childTop, childLeft + childWidth, childTop + childHeight ); - childTop += childHeight + LayoutLength( childMargin.bottom ) + mCellPadding.height; + childTop += childHeight + childMargin.bottom + mCellPadding.height; } } } diff --git a/dali-toolkit/internal/layouting/vbox-layout-impl.cpp b/dali-toolkit/internal/layouting/vbox-layout-impl.cpp old mode 100755 new mode 100644 index 9d50bda..22fba16 --- a/dali-toolkit/internal/layouting/vbox-layout-impl.cpp +++ b/dali-toolkit/internal/layouting/vbox-layout-impl.cpp @@ -233,7 +233,7 @@ void VboxLayout::OnLayout( bool changed, LayoutLength left, LayoutLength top, La auto width = right - left; // Space available for child - auto childSpace = width - LayoutLength( padding.start ) - LayoutLength( padding.end ); + auto childSpace = width - padding.start - padding.end; auto count = GetChildCount(); for( unsigned int childIndex = 0; childIndex < count; childIndex++) @@ -248,10 +248,10 @@ void VboxLayout::OnLayout( bool changed, LayoutLength left, LayoutLength top, La auto childMargin = childLayout->GetMargin(); childTop += childMargin.top; - childLeft = ( childSpace - childWidth ) / 2 + LayoutLength( childMargin.start ) - LayoutLength( childMargin.end ); + childLeft = ( childSpace - childWidth ) / 2 + childMargin.start - childMargin.end; childLayout->Layout( childLeft, childTop, childLeft + childWidth, childTop + childHeight ); - childTop += childHeight + LayoutLength( childMargin.bottom ) + mCellPadding.height; + childTop += childHeight + childMargin.bottom + mCellPadding.height; } } } -- 2.7.4