Revert "[Tizen] Modify codes for Dali Windows backend"
authorJiyun Yang <ji.yang@samsung.com>
Thu, 22 Nov 2018 06:11:57 +0000 (15:11 +0900)
committerJiyun Yang <ji.yang@samsung.com>
Thu, 22 Nov 2018 06:11:57 +0000 (15:11 +0900)
This reverts commit 6ba86a50db1f750a52ab8cfb8c94d3e2bc76c102.

dali-toolkit/devel-api/layouting/layout-group-impl.cpp [changed mode: 0755->0644]
dali-toolkit/internal/layouting/flex-layout-impl.cpp [changed mode: 0755->0644]
dali-toolkit/internal/layouting/linear-layout-impl.cpp [changed mode: 0755->0644]
dali-toolkit/internal/layouting/vbox-layout-impl.cpp [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index 81ed9e3..b077f54
@@ -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;
     }
   }
 }
old mode 100755 (executable)
new mode 100644 (file)
index 9d50bda..22fba16
@@ -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;
     }
   }
 }