ebbf3301b4957094ee0dc90bad63b859d4c03260
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / layouting / flex-layout-impl.cpp
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 //CLASS HEADER
18 #include "flex-layout-impl.h"
19
20 //EXTERNAL INCLUDES
21 #include <dali/integration-api/debug.h>
22 #include <dali/public-api/common/extents.h>
23 #include <dali/devel-api/actors/actor-devel.h>
24 #include <dali/devel-api/object/handle-devel.h>
25
26 //INTERNAL INCLUDES
27 #include <dali-toolkit/devel-api/layouting/layout-item.h>
28 #include <dali-toolkit/public-api/controls/control-impl.h>
29 #include <dali-toolkit/internal/controls/control/control-data-impl.h>
30 #include <dali-toolkit/third-party/yoga/YGNode.h>
31
32 #if defined(DEBUG_ENABLED)
33 static Debug::Filter* gLogFilter = Debug::Filter::New( Debug::Concise, false, "LOG_LAYOUT" );
34 #endif
35
36 namespace Dali
37 {
38 namespace Toolkit
39 {
40 namespace Internal
41 {
42
43 FlexLayoutPtr FlexLayout::New()
44 {
45   FlexLayoutPtr layout( new FlexLayout() );
46   return layout;
47 }
48
49 void FlexLayout::SetFlexDirection( Dali::Toolkit::FlexLayout::FlexDirection flexDirection )
50 {
51   YGNodeStyleSetFlexDirection( mRoot, static_cast<YGFlexDirection>(flexDirection) );
52 }
53
54 Dali::Toolkit::FlexLayout::FlexDirection FlexLayout::GetFlexDirection() const
55 {
56   return static_cast<Dali::Toolkit::FlexLayout::FlexDirection>(YGNodeStyleGetFlexDirection( mRoot ));
57 }
58
59 void FlexLayout::SetFlexJustification( Dali::Toolkit::FlexLayout::Justification flexJustification )
60 {
61   YGNodeStyleSetJustifyContent( mRoot, static_cast<YGJustify>(flexJustification) );
62 }
63
64 Dali::Toolkit::FlexLayout::Justification FlexLayout::GetFlexJustification() const
65 {
66   return static_cast<Dali::Toolkit::FlexLayout::Justification>(YGNodeStyleGetJustifyContent( mRoot ));
67 }
68
69 void FlexLayout::SetFlexWrap( Dali::Toolkit::FlexLayout::WrapType wrapType )
70 {
71   YGNodeStyleSetFlexWrap( mRoot, static_cast<YGWrap>(wrapType) );
72 }
73
74 Dali::Toolkit::FlexLayout::WrapType FlexLayout::GetFlexWrap() const
75 {
76   return static_cast<Dali::Toolkit::FlexLayout::WrapType>(YGNodeStyleGetFlexWrap( mRoot ));
77 }
78
79 void FlexLayout::SetFlexAlignment( Dali::Toolkit::FlexLayout::Alignment::Type flexAlignment )
80 {
81   YGNodeStyleSetAlignContent( mRoot, static_cast<YGAlign>(flexAlignment) );
82 }
83
84 Dali::Toolkit::FlexLayout::Alignment::Type FlexLayout::GetFlexAlignment() const
85 {
86   return static_cast<Dali::Toolkit::FlexLayout::Alignment::Type>(YGNodeStyleGetAlignContent( mRoot ));
87 }
88
89 void FlexLayout::SetFlexItemsAlignment( Dali::Toolkit::FlexLayout::Alignment::Type flexAlignment )
90 {
91   YGNodeStyleSetAlignItems( mRoot, static_cast<YGAlign>(flexAlignment) );
92 }
93
94 Dali::Toolkit::FlexLayout::Alignment::Type FlexLayout::GetFlexItemsAlignment() const
95 {
96   return static_cast<Dali::Toolkit::FlexLayout::Alignment::Type>(YGNodeStyleGetAlignItems( mRoot ));
97 }
98
99 FlexLayout::FlexLayout()
100 : LayoutGroup(),
101   mRoot( nullptr )
102 {
103   mRoot = YGNodeNew();
104   YGNodeSetContext( mRoot, this );
105
106   // Set default style
107   YGNodeStyleSetFlexDirection( mRoot, YGFlexDirectionColumn );
108   YGNodeStyleSetFlexWrap( mRoot, YGWrapNoWrap );
109   YGNodeStyleSetJustifyContent( mRoot, YGJustifyFlexStart );
110   YGNodeStyleSetAlignContent( mRoot, YGAlignFlexStart );
111   YGNodeStyleSetAlignItems( mRoot, YGAlignFlexStart );
112 }
113
114 FlexLayout::~FlexLayout()
115 {
116   if( mRoot )
117   {
118     YGNodeFreeRecursive( mRoot );
119   }
120 }
121
122 void FlexLayout::DoInitialize()
123 {
124 }
125
126 void FlexLayout::DoRegisterChildProperties( const std::string& containerType )
127 {
128   auto typeInfo = Dali::TypeRegistry::Get().GetTypeInfo( containerType );
129   if( typeInfo )
130   {
131     Property::IndexContainer indices;
132     typeInfo.GetChildPropertyIndices( indices );
133
134     if( std::find( indices.Begin(), indices.End(), Toolkit::FlexLayout::ChildProperty::FLEX ) ==
135         indices.End() )
136     {
137       ChildPropertyRegistration( typeInfo.GetName(), "flex", Toolkit::FlexLayout::ChildProperty::FLEX, Property::FLOAT );
138     }
139
140     if( std::find( indices.Begin(), indices.End(), Toolkit::FlexLayout::ChildProperty::ALIGN_SELF ) ==
141         indices.End() )
142     {
143       ChildPropertyRegistration( typeInfo.GetName(), "alignSelf", Toolkit::FlexLayout::ChildProperty::ALIGN_SELF, Property::INTEGER );
144     }
145   }
146 }
147
148 void FlexLayout::OnChildAdd( LayoutItem& child )
149 {
150   auto owner = child.GetOwner();
151   if(!DevelHandle::DoesCustomPropertyExist(owner, Toolkit::FlexLayout::ChildProperty::FLEX ))
152   {
153     owner.SetProperty( Toolkit::FlexLayout::ChildProperty::FLEX, 0 );
154   }
155   if(!DevelHandle::DoesCustomPropertyExist(owner, Toolkit::FlexLayout::ChildProperty::ALIGN_SELF ))
156   {
157     owner.SetProperty( Toolkit::FlexLayout::ChildProperty::ALIGN_SELF, YGAlignAuto );
158   }
159
160   YGNodeRef node = YGNodeNew();
161   YGNodeSetContext( node, &child );
162   YGNodeSetMeasureFunc( node, OnChildMeasure );
163   YGNodeMarkDirty( node );
164   YGNodeInsertChild( mRoot, node, GetChildCount()-1 );
165 }
166
167 void FlexLayout::OnChildRemove( LayoutItem& child )
168 {
169   auto count = GetChildCount();
170   for( unsigned int childIndex = 0; childIndex < count; childIndex++)
171   {
172     LayoutItemPtr childLayout = GetChildAt( childIndex );
173     if( &child == childLayout.Get() )
174     {
175       YGNodeRef node = YGNodeGetChild( mRoot, childIndex );
176       YGNodeRemoveChild( mRoot, node );
177       break;
178     }
179   }
180 }
181
182 void FlexLayout::OnMeasure( MeasureSpec widthMeasureSpec, MeasureSpec heightMeasureSpec )
183 {
184   auto actor = Actor::DownCast(GetOwner());
185   bool isLayoutRtl = actor ? actor.GetProperty<int>( Actor::Property::LAYOUT_DIRECTION ) == LayoutDirection::RIGHT_TO_LEFT: false;
186   Extents padding = GetPadding();
187   Extents margin = GetMargin();
188
189 #if defined(DEBUG_ENABLED)
190   std::ostringstream oss;
191   oss << "FlexLayout::OnMeasure  ";
192   if( actor )
193   {
194         oss << "Actor Id:" << actor.GetId() << " Name:" << actor.GetName() << " Layout direction:" << actor.GetProperty( Actor::Property::LAYOUT_DIRECTION ).Get<int>() << " ";
195   }
196   oss << "widthMeasureSpec:" << widthMeasureSpec << " heightMeasureSpec:" << heightMeasureSpec << std::endl;
197   DALI_LOG_INFO( gLogFilter, Debug::Concise, oss.str().c_str() );
198 #endif
199
200   YGNodeStyleSetMargin( mRoot, YGEdgeLeft, margin.start );
201   YGNodeStyleSetMargin( mRoot, YGEdgeTop, margin.top );
202   YGNodeStyleSetMargin( mRoot, YGEdgeRight, margin.end );
203   YGNodeStyleSetMargin( mRoot, YGEdgeBottom, margin.bottom );
204   YGNodeStyleSetPadding( mRoot, YGEdgeLeft, padding.start );
205   YGNodeStyleSetPadding( mRoot, YGEdgeTop, padding.top );
206   YGNodeStyleSetPadding( mRoot, YGEdgeRight, padding.end );
207   YGNodeStyleSetPadding( mRoot, YGEdgeBottom, padding.bottom );
208
209   float width = YGUndefined;
210   float height = YGUndefined;
211
212   YGNodeStyleSetWidth( mRoot, YGUndefined );
213   YGNodeStyleSetHeight( mRoot, YGUndefined );
214   YGNodeStyleSetMinWidth( mRoot, YGUndefined );
215   YGNodeStyleSetMinHeight( mRoot, YGUndefined );
216   YGNodeStyleSetMaxWidth( mRoot, YGUndefined );
217   YGNodeStyleSetMaxHeight( mRoot, YGUndefined );
218
219   if( widthMeasureSpec.GetMode() == MeasureSpec::Mode::EXACTLY )
220   {
221     width = widthMeasureSpec.GetSize();
222     YGNodeStyleSetWidth( mRoot, width );
223   }
224   else if( widthMeasureSpec.GetMode() == MeasureSpec::Mode::AT_MOST )
225   {
226     width = widthMeasureSpec.GetSize();
227     YGNodeStyleSetMaxWidth( mRoot, width );
228   }
229
230   if (heightMeasureSpec.GetMode() == MeasureSpec::Mode::EXACTLY)
231   {
232     height = heightMeasureSpec.GetSize();
233     YGNodeStyleSetHeight( mRoot, height );
234   }
235   else if (widthMeasureSpec.GetMode() == MeasureSpec::Mode::AT_MOST)
236   {
237     height = heightMeasureSpec.GetSize();
238     YGNodeStyleSetMaxHeight( mRoot, height );
239   }
240
241   SetChildrenStyle();
242   YGNodeCalculateLayout( mRoot, width, height, isLayoutRtl ? YGDirectionRTL : YGDirectionLTR );
243   SetMeasuredDimensions( GetDefaultSize( YGNodeLayoutGetWidth(mRoot), widthMeasureSpec ),
244                          GetDefaultSize( YGNodeLayoutGetHeight(mRoot), heightMeasureSpec ) );
245 }
246
247 void FlexLayout::OnLayout( bool changed, LayoutLength left, LayoutLength top, LayoutLength right, LayoutLength bottom )
248 {
249   auto owner = GetOwner();
250   auto actor = Actor::DownCast(owner);
251   bool isLayoutRtl = actor ? actor.GetProperty( Actor::Property::LAYOUT_DIRECTION ).Get<int>() == LayoutDirection::RIGHT_TO_LEFT: false;
252   auto width = right - left;
253   auto height = bottom - top;
254
255 #if defined(DEBUG_ENABLED)
256   std::ostringstream oss;
257   oss << "FlexLayout::OnLayout  ";
258   if( actor )
259   {
260     oss << "Actor Id:" << actor.GetId() << " Name:" << actor.GetName() << " Layout direction:" << actor.GetProperty( Actor::Property::LAYOUT_DIRECTION ).Get<int>() << " ";
261   }
262   oss << "changed:" << (int)changed << " left:" << left << " top:" << top << " right:" << right << " bottom:" << bottom << " isLayoutRtl:" << (int)isLayoutRtl << std::endl;
263   DALI_LOG_INFO( gLogFilter, Debug::Concise, oss.str().c_str() );
264 #endif
265
266   YGNodeCalculateLayout( mRoot, width, height, isLayoutRtl ? YGDirectionRTL : YGDirectionLTR );
267
268   auto count = GetChildCount();
269   for( unsigned int childIndex = 0; childIndex < count; childIndex++)
270   {
271     LayoutItemPtr childLayout = GetChildAt( childIndex );
272     if( childLayout != nullptr )
273     {
274       YGNodeRef node = YGNodeGetChild(mRoot, childIndex);
275       auto childLeft = YGNodeLayoutGetLeft( node ) + left;
276       auto childTop = YGNodeLayoutGetTop( node ) + top;
277       auto childWidth = YGNodeLayoutGetWidth( node );
278       auto childHeight = YGNodeLayoutGetHeight( node );
279       childLayout->Layout( childLeft, childTop, childLeft + childWidth, childTop + childHeight );
280     }
281   }
282 }
283
284 YGSize FlexLayout::OnChildMeasure( YGNodeRef node,
285                               float innerWidth,
286                               YGMeasureMode widthMode,
287                               float innerHeight,
288                               YGMeasureMode heightMode ) {
289   LayoutItem* childLayout = static_cast<LayoutItem*>(node->getContext());
290   auto childOwner = childLayout->GetOwner();
291   auto desiredWidth = childOwner.GetProperty<int>( Toolkit::LayoutItem::ChildProperty::WIDTH_SPECIFICATION );
292   auto desiredHeight = childOwner.GetProperty<int>( Toolkit::LayoutItem::ChildProperty::HEIGHT_SPECIFICATION );
293
294   MeasureSpec::Mode measureWidthMode = MeasureSpec::Mode::AT_MOST;
295   MeasureSpec::Mode measureHeightMode = MeasureSpec::Mode::AT_MOST;
296   if( desiredWidth == Toolkit::ChildLayoutData::MATCH_PARENT )
297   {
298     if( innerWidth != YGUndefined)
299     {
300       desiredWidth = innerWidth;
301     }
302     measureWidthMode = MeasureSpec::Mode::EXACTLY;
303   }
304
305   if( desiredHeight == Toolkit::ChildLayoutData::MATCH_PARENT )
306   {
307     if( innerWidth != YGUndefined)
308     {
309       desiredHeight = innerHeight;
310     }
311     measureHeightMode = MeasureSpec::Mode::EXACTLY;
312   }
313
314   if( desiredWidth == Toolkit::ChildLayoutData::WRAP_CONTENT )
315   {
316     measureWidthMode = MeasureSpec::Mode::UNSPECIFIED;
317   }
318
319   if( desiredHeight == Toolkit::ChildLayoutData::WRAP_CONTENT )
320   {
321     measureHeightMode = MeasureSpec::Mode::UNSPECIFIED;
322   }
323
324   MeasureSpec widthMeasureSpec = MeasureSpec( desiredWidth, measureWidthMode );
325   MeasureSpec heightMeasureSpec = MeasureSpec( desiredHeight, measureHeightMode );
326   if( measureWidthMode == MeasureSpec::Mode::UNSPECIFIED ||
327       measureHeightMode == MeasureSpec::Mode::UNSPECIFIED )
328   {
329     // A measure just to get the size if the wrapped content
330     childLayout->Measure( widthMeasureSpec, heightMeasureSpec );
331     desiredWidth = childLayout->GetMeasuredWidth();
332     desiredHeight = childLayout->GetMeasuredHeight();
333     // Remove padding here since the second measure will add it back
334     Extents padding = childLayout->GetPadding();
335     desiredWidth = desiredWidth - padding.end - padding.start;
336     desiredHeight = desiredHeight - padding.bottom - padding.top;
337   }
338
339   // Safety check to avoid going out of boundary
340   if( (innerWidth != YGUndefined && innerWidth != 0) && innerWidth < desiredWidth )
341   {
342     desiredWidth = innerWidth;
343   }
344
345   if( (innerHeight != YGUndefined && innerHeight != 0) && innerHeight < desiredHeight )
346   {
347     desiredHeight = innerHeight;
348   }
349
350   // Measure for Yoga
351   MeasureSpec ygWidthMeasureSpec = MeasureSpec( desiredWidth, static_cast<MeasureSpec::Mode>(widthMode) );
352   MeasureSpec ygHeightMeasureSpec = MeasureSpec( desiredHeight, static_cast<MeasureSpec::Mode>(heightMode) );
353 #if defined(DEBUG_ENABLED)
354   auto actor = Actor::DownCast(childOwner);
355   std::ostringstream oss;
356   oss << "FlexLayout::OnChildMeasure  ";
357   if( actor )
358   {
359     oss << "Actor Id:" << actor.GetId() << " Name:" << actor.GetName() << " ";
360   }
361   oss << "innerWidth:" << ((innerWidth == YGUndefined) ? "YGUndefined " : "") << innerWidth <<
362          " innerHeight:" << ((innerHeight == YGUndefined) ? "YGUndefined " : "") << innerHeight <<
363          " desiredWidth:" << desiredWidth << " desiredHeight:" << desiredHeight <<
364          " widthMeasureSpec:" << widthMeasureSpec << " heightMeasureSpec:" << heightMeasureSpec <<
365          " ygWidthMeasureSpec:" << ygWidthMeasureSpec << " ygHeightMeasureSpec:" << ygHeightMeasureSpec << std::endl;
366   DALI_LOG_INFO( gLogFilter, Debug::Concise, oss.str().c_str() );
367 #endif
368
369   if( measureWidthMode == MeasureSpec::Mode::UNSPECIFIED ||
370       measureHeightMode == MeasureSpec::Mode::UNSPECIFIED )
371   {
372     if( ygWidthMeasureSpec == widthMeasureSpec && ygHeightMeasureSpec == heightMeasureSpec )
373     {
374       return YGSize{
375         .width = childLayout->GetMeasuredWidth(),
376         .height = childLayout->GetMeasuredHeight(),
377       };
378     }
379   }
380
381   childLayout->Measure( ygWidthMeasureSpec, ygHeightMeasureSpec );
382   return YGSize{
383     .width = childLayout->GetMeasuredWidth(),
384     .height = childLayout->GetMeasuredHeight(),
385   };
386 }
387
388 void FlexLayout::SetChildrenStyle()
389 {
390   if( mRoot )
391   {
392     auto count = GetChildCount();
393     for( unsigned int childIndex = 0; childIndex < count; childIndex++)
394     {
395       LayoutItemPtr childLayout = GetChildAt( childIndex );
396       if( childLayout != nullptr )
397       {
398         Extents padding = childLayout->GetPadding();
399         Extents margin = childLayout->GetMargin();
400         auto childOwner = childLayout->GetOwner();
401         auto childActor = Actor::DownCast(childOwner);
402         auto flex = childOwner.GetProperty<float>( Toolkit::FlexLayout::ChildProperty::FLEX );
403         auto alignSelf = static_cast<YGAlign>( childOwner.GetProperty<int>( Toolkit::FlexLayout::ChildProperty::ALIGN_SELF ));
404
405         YGNodeRef childNode = YGNodeGetChild( mRoot, childIndex );
406         // Initialise the style of the child.
407         YGNodeStyleSetMargin( childNode, YGEdgeLeft, margin.start );
408         YGNodeStyleSetMargin( childNode, YGEdgeTop, margin.top );
409         YGNodeStyleSetMargin( childNode, YGEdgeRight, margin.end );
410         YGNodeStyleSetMargin( childNode, YGEdgeBottom, margin.bottom );
411
412         YGNodeStyleSetPadding( childNode, YGEdgeLeft, padding.start );
413         YGNodeStyleSetPadding( childNode, YGEdgeTop, padding.top );
414         YGNodeStyleSetPadding( childNode, YGEdgeRight, padding.end );
415         YGNodeStyleSetPadding( childNode, YGEdgeBottom, padding.bottom );
416
417         YGNodeStyleSetWidth( childNode, YGUndefined );
418         YGNodeStyleSetHeight( childNode, YGUndefined );
419         // TODO: check if we are supposed to use actor properties here, max/min is needed for stretch
420         YGNodeStyleSetMinWidth( childNode, childActor.GetMinimumSize().x );
421         YGNodeStyleSetMinHeight( childNode, childActor.GetMinimumSize().y );
422         if( childActor.GetMaximumSize().x == FLT_MAX )
423         {
424           YGNodeStyleSetMaxWidth( childNode, YGUndefined );
425         }
426         else
427         {
428           YGNodeStyleSetMaxWidth( childNode, childActor.GetMaximumSize().x );
429         }
430         if( childActor.GetMaximumSize().y == FLT_MAX )
431         {
432           YGNodeStyleSetMaxHeight( childNode, YGUndefined );
433         }
434         else
435         {
436           YGNodeStyleSetMaxHeight( childNode, childActor.GetMaximumSize().y );
437         }
438
439         YGNodeStyleSetFlex( childNode, flex );
440         YGNodeStyleSetAlignSelf( childNode, alignSelf );
441
442         // Have to do manually for nodes with custom measure function
443         // TODO: check the style is changed before marking the node
444         YGNodeMarkDirty( childNode );
445       }
446     }
447   }
448 }
449
450 } // namespace Internal
451 } // namespace Toolkit
452 } // namespace Dali