[NUI] Update MeasureCallback interface for latest Dali::Toolkit (#2043)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / Layouting / FlexLayout.cs
1 /* Copyright (c) 2019 Samsung Electronics Co., Ltd.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  *
15  */
16
17 using System;
18 using System.ComponentModel;
19 using Tizen.NUI.BaseComponents;
20 using System.Runtime.InteropServices;
21 using System.Diagnostics;
22 using Tizen.NUI.Binding;
23
24 namespace Tizen.NUI
25 {
26     /// <summary>
27     /// This class implements a flex layout.
28     /// The flex layout implementation is based on open source Facebook Yoga layout engine.
29     /// For more information about the flex layout API and how to use it please refer to https://yogalayout.com/docs/
30     /// We implement the subset of the API in the class below.
31     /// </summary>
32     public class FlexLayout : LayoutGroup, global::System.IDisposable
33     {
34         /// <summary>
35         /// FlexItemProperty
36         /// </summary>
37         [EditorBrowsable(EditorBrowsableState.Never)]
38         internal static readonly BindableProperty FlexItemProperty = BindableProperty.CreateAttached("FlexItem", typeof(HandleRef), typeof(FlexLayout), default(HandleRef));
39
40         /// <summary>
41         /// FlexAlignmentSelfProperty
42         /// </summary>
43         [EditorBrowsable(EditorBrowsableState.Never)]
44         public static readonly BindableProperty FlexAlignmentSelfProperty = BindableProperty.CreateAttached("FlexAlignmentSelf", typeof(AlignmentType), typeof(FlexLayout), AlignmentType.Auto, propertyChanged: OnChildPropertyChanged);
45
46         /// <summary>
47         /// FlexPositionTypeProperty
48         /// </summary>
49         [EditorBrowsable(EditorBrowsableState.Never)]
50         public static readonly BindableProperty FlexPositionTypeProperty = BindableProperty.CreateAttached("FlexPositionType", typeof(PositionType), typeof(FlexLayout), PositionType.Relative, propertyChanged: OnChildPropertyChanged);
51
52         /// <summary>
53         /// AspectRatioProperty
54         /// </summary>
55         [EditorBrowsable(EditorBrowsableState.Never)]
56         public static readonly BindableProperty FlexAspectRatioProperty = BindableProperty.CreateAttached("FlexAspectRatio", typeof(float), typeof(FlexLayout), FlexUndefined, validateValue: (bindable, value) => (float)value > 0, propertyChanged: OnChildPropertyChanged);
57
58         /// <summary>
59         /// FlexBasisProperty
60         /// </summary>
61         [EditorBrowsable(EditorBrowsableState.Never)]
62         public static readonly BindableProperty FlexBasisProperty = BindableProperty.CreateAttached("FlexBasis", typeof(float), typeof(FlexLayout), FlexUndefined, validateValue: (bindable, value) => (float)value >= 0, propertyChanged: OnChildPropertyChanged);
63
64         /// <summary>
65         /// FlexShrinkProperty
66         /// </summary>
67         [EditorBrowsable(EditorBrowsableState.Never)]
68         public static readonly BindableProperty FlexShrinkProperty = BindableProperty.CreateAttached("FlexShrink", typeof(float), typeof(FlexLayout), 1.0f, validateValue: (bindable, value) => (float)value >= 0, propertyChanged: OnChildPropertyChanged);
69
70         /// <summary>
71         /// FlexGrowProperty
72         /// </summary>
73         [EditorBrowsable(EditorBrowsableState.Never)]
74         public static readonly BindableProperty FlexGrowProperty = BindableProperty.CreateAttached("FlexGrow", typeof(float), typeof(FlexLayout), FlexUndefined, validateValue: (bindable, value) => (float)value >= 0, propertyChanged: OnChildPropertyChanged);
75
76         private static bool LayoutDebugFlex = false; // Debug flag
77
78         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
79         private bool swigCMemOwn;
80         private bool disposed;
81         private bool isDisposeQueued = false;
82
83         private MeasureSpecification parentMeasureSpecificationWidth;
84         private MeasureSpecification parentMeasureSpecificationHeight;
85
86         private IntPtr _rootFlex;  // Pointer to the unmanged flex layout class.
87
88         internal const float FlexUndefined = 10E20F; // Auto setting which is equivalent to WrapContent.
89
90         internal struct MeasuredSize
91         {
92             public MeasuredSize(float x, float y)
93             {
94                 width = x;
95                 height = y;
96             }
97             public float width;
98             public float height;
99         };
100
101         /// <summary>
102         /// Gets the alignment self of the child view.
103         /// </summary>
104         /// <seealso cref="SetFlexAlignmentSelf(View, AlignmentType)"/>
105         /// <param name="view">The child view.</param>
106         /// <returns> The value of alignment self.</returns>
107         /// <since_tizen> 8 </since_tizen>
108         public static AlignmentType GetFlexAlignmentSelf(View view) => GetAttachedValue<AlignmentType>(view, FlexAlignmentSelfProperty);
109
110         /// <summary>
111         /// Gets the position type of the child view.
112         /// </summary>
113         /// <seealso cref="SetFlexPositionType(View, PositionType)"/>
114         /// <param name="view">The child view.</param>
115         /// <returns> The value of position type</returns>
116         /// <since_tizen> 8 </since_tizen>
117         public static PositionType GetFlexPositionType(View view) => GetAttachedValue<PositionType>(view, FlexPositionTypeProperty);
118
119         /// <summary>
120         /// Gets the aspect ratio of the child view.
121         /// </summary>
122         /// <seealso cref="SetFlexAspectRatio(View, float)"/>
123         /// <param name="view">The child view.</param>
124         /// <returns> The value of aspect ratio</returns>
125         /// <since_tizen> 8 </since_tizen>
126         public static float GetFlexAspectRatio(View view) => GetAttachedValue<float>(view, FlexAspectRatioProperty);
127
128         /// <summary>
129         /// Gets the basis of the child view.
130         /// </summary>
131         /// <seealso cref="SetFlexBasis(View, float)"/>
132         /// <param name="view">The child view.</param>
133         /// <returns> The value of basis</returns>
134         /// <since_tizen> 8 </since_tizen>
135         public static float GetFlexBasis(View view) => GetAttachedValue<float>(view, FlexBasisProperty);
136
137         /// <summary>
138         /// Gets the shrink of the child view.
139         /// </summary>
140         /// <seealso cref="SetFlexShrink(View, float)"/>
141         /// <param name="view">The child view.</param>
142         /// <returns> The value of shrink</returns>
143         /// <since_tizen> 8 </since_tizen>
144         public static float GetFlexShrink(View view) => GetAttachedValue<float>(view, FlexShrinkProperty);
145
146         /// <summary>
147         /// Gets the grow of the child view.
148         /// </summary>
149         /// <seealso cref="SetFlexGrow(View, float)"/>
150         /// <param name="view">The child view.</param>
151         /// <returns> The value of grow</returns>
152         /// <since_tizen> 8 </since_tizen>
153         public static float GetFlexGrow(View view) => GetAttachedValue<float>(view, FlexGrowProperty);
154
155         /// <summary>
156         /// Sets the alignment self of the child view.<br/>
157         /// Alignment self has the same options and effect as <see cref="ItemsAlignment"/> but instead of affecting the children within a container,
158         /// you can apply this property to a single child to change its alignment within its parent.<br/>
159         /// Alignment self overrides any option set by the parent with <see cref="ItemsAlignment"/>.
160         /// </summary>
161         /// <param name="view">The child view.</param>
162         /// <param name="value">The value of alignment self.</param>
163         /// <since_tizen> 8 </since_tizen>
164         public static void SetFlexAlignmentSelf(View view, AlignmentType value) => SetAttachedValue(view, FlexAlignmentSelfProperty, value);
165
166         /// <summary>
167         /// Sets the position type of the child view.<br/>
168         /// The position type of an element defines how it is positioned within its parent.
169         /// By default a child is positioned relatively. This means a child is positioned according to the normal flow of the layout,
170         /// and then offset relative to that position based on the values of <see cref="View.Margin"/>.<br/>
171         /// When positioned absolutely an element doesn't take part in the normal layout flow.
172         /// It is instead laid out independent of its siblings. The position is determined based on the <see cref="View.Margin"/>.
173         /// </summary>
174         /// <param name="view">The child view.</param>
175         /// <param name="value">The value of position type.</param>
176         /// <since_tizen> 8 </since_tizen>
177         public static void SetFlexPositionType(View view, PositionType value) => SetAttachedValue(view, FlexPositionTypeProperty, value);
178
179         /// <summary>
180         /// Sets the aspect ratio of the child view.
181         /// Aspect ratio Defines as the ratio between the width and the height of a node
182         /// e.g. if a node has an aspect ratio of 2 then its width is twice the size of its height.<br/>
183         /// Aspect ratio accepts any floating point value > 0. this has higher priority than flex grow.
184         /// </summary>
185         /// <param name="view">The child view.</param>
186         /// <param name="value">The value of aspect ratio</param>
187         /// <since_tizen> 8 </since_tizen>
188         public static void SetFlexAspectRatio(View view, float value) => SetAttachedValue(view, FlexAspectRatioProperty, value);
189
190         /// <summary>
191         /// Sets the flex basis of the child view.
192         /// Flex basis is an axis-independent way of providing the default size of an item along the main axis.<br/>
193         /// Setting the flex basis of a child is similar to setting the width of that child if its parent is a container with <see cref="FlexDirection.Row"/>
194         /// or setting the height of a child if its parent is a container with <see cref="FlexDirection.Column"/>.<br/>
195         /// The flex basis of an item is the default size of that item, the size of the item before any flex grow and flex shrink calculations are performed.
196         /// </summary>
197         /// <param name="view">The child view.</param>
198         /// <param name="value">The value of basis</param>
199         /// <since_tizen> 8 </since_tizen>
200         public static void SetFlexBasis(View view, float value) => SetAttachedValue(view, FlexBasisProperty, value);
201
202         /// <summary>
203         /// Sets the flex shrink of the child view.
204         /// Flex shrink describes how to shrink children along the main axis in the case that the total size of the children overflow the size of the container on the main axis.<br/>
205         /// Flex shrink is very similar to flex grow and can be thought of in the same way if any overflowing size is considered to be negative remaining space.
206         /// These two properties also work well together by allowing children to grow and shrink as needed.<br/>
207         /// Flex shrink accepts any floating point value >= 0, with 1 being the default value. A container will shrink its children weighted by the child’s flex shrink value.
208         /// </summary>
209         /// <param name="view">The child view.</param>
210         /// <param name="value">The value of shrink</param>
211         /// <since_tizen> 8 </since_tizen>
212         public static void SetFlexShrink(View view, float value) => SetAttachedValue(view, FlexShrinkProperty, value);
213
214         /// <summary>
215         /// Sets the grow of the child view.
216         /// Flex grow describes how any space within a container should be distributed among its children along the main axis.
217         /// After laying out its children, a container will distribute any remaining space according to the flex grow values specified by its children.<br/>
218         /// Flex grow accepts any floating point value >= 0, with 0 being the default value.<br/>
219         /// A container will distribute any remaining space among its children weighted by the child’s flex grow value.
220         /// </summary>
221         /// <param name="view">The child view.</param>
222         /// <param name="value">The value of flex</param>
223         /// <since_tizen> 8 </since_tizen>
224         public static void SetFlexGrow(View view, float value) => SetAttachedValue(view, FlexGrowProperty, value);
225
226         [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
227         internal delegate void ChildMeasureCallback( global::System.IntPtr child, float width, int measureModeWidth, float height, int measureModeHeight, out MeasuredSize measureSize );
228
229         event ChildMeasureCallback measureChildDelegate; // Stores a delegate to the child measure callback. Used for all children of this FlexLayout.
230
231         internal FlexLayout(global::System.IntPtr cPtr, bool cMemoryOwn)
232         {
233             swigCMemOwn = cMemoryOwn;
234             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
235             _rootFlex = Interop.FlexLayout.FlexLayout_New();
236             measureChildDelegate = new ChildMeasureCallback(measureChild);
237         }
238
239         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FlexLayout obj)
240         {
241             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
242         }
243
244         /// <inheritdoc/>
245         /// <since_tizen> 6 </since_tizen>
246         public void Dispose()
247         {
248             // Throw exception if Dispose() is called in separate thread.
249             if (!Window.IsInstalled())
250             {
251                 throw new System.InvalidOperationException("This API called from separate thread. This API must be called from MainThread.");
252             }
253
254             if (isDisposeQueued)
255             {
256                 Dispose(DisposeTypes.Implicit);
257             }
258             else
259             {
260                 Dispose(DisposeTypes.Explicit);
261                 System.GC.SuppressFinalize(this);
262             }
263         }
264
265         /// <inheritdoc/>
266         /// <since_tizen> 6 </since_tizen>
267         protected virtual void Dispose(DisposeTypes type)
268         {
269             if (disposed)
270             {
271                 return;
272             }
273
274             if (type == DisposeTypes.Explicit)
275             {
276                 // Called by User
277                 // Release your own managed resources here.
278                 // You should release all of your own disposable objects here.
279
280             }
281
282             // Release your own unmanaged resources here.
283             // You should not access any managed member here except static instance.
284             // because the execution order of Finalizes is non-deterministic.
285             if (swigCPtr.Handle != global::System.IntPtr.Zero)
286             {
287                 if (swigCMemOwn)
288                 {
289                     swigCMemOwn = false;
290                     Interop.FlexLayout.delete_FlexLayout(swigCPtr);
291                 }
292                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
293             }
294             disposed = true;
295         }
296
297         /// <summary>
298         /// Creates a FlexLayout object.
299         /// </summary>
300         /// <since_tizen> 6 </since_tizen>
301         public FlexLayout() : this(Interop.FlexLayout.FlexLayout_New(), true)
302         {
303             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
304         }
305
306         internal static FlexLayout DownCast(BaseHandle handle)
307         {
308             FlexLayout ret = new FlexLayout(Interop.FlexLayout.FlexLayout_DownCast(BaseHandle.getCPtr(handle)), true);
309             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
310             return ret;
311         }
312
313         internal FlexLayout(FlexLayout other) : this(Interop.FlexLayout.new_FlexLayout__SWIG_1(FlexLayout.getCPtr(other)), true)
314         {
315             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
316         }
317
318         internal FlexLayout.AlignmentType GetFlexAlignment()
319         {
320             FlexLayout.AlignmentType ret = (FlexLayout.AlignmentType)Interop.FlexLayout.FlexLayout_GetFlexAlignment(swigCPtr);
321             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
322             return ret;
323         }
324
325         internal FlexLayout.AlignmentType GetFlexItemsAlignment()
326         {
327             FlexLayout.AlignmentType ret = (FlexLayout.AlignmentType)Interop.FlexLayout.FlexLayout_GetFlexItemsAlignment(swigCPtr);
328             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
329             return ret;
330         }
331
332         /// <summary>
333         /// Gets/Sets the flex direction in the layout.
334         /// The direction of the main-axis which determines the direction that flex items are laid out.
335         /// </summary>
336         /// <since_tizen> 6 </since_tizen>
337         public FlexDirection Direction
338         {
339             get => (FlexDirection)Interop.FlexLayout.FlexLayout_GetFlexDirection(swigCPtr);
340             set
341             {
342                 Interop.FlexLayout.FlexLayout_SetFlexDirection(swigCPtr, (int)value);
343                 RequestLayout();
344             }
345         }
346
347         /// <summary>
348         /// Gets/Sets the justification in the layout.
349         /// Justify content describes how to align children within the main axis of their container.<br/>
350         /// For example, you can use this property to center a child horizontally within a container with <see cref="Direction"/> set to <see cref="FlexDirection.Row"/>
351         /// or vertically within a container with <see cref="Direction"/> set to <see cref="FlexDirection.Column"/>.
352         /// </summary>
353         /// <since_tizen> 6 </since_tizen>
354         public FlexJustification Justification
355         {
356             get => (FlexJustification)Interop.FlexLayout.FlexLayout_GetFlexJustification(swigCPtr);
357             set
358             {
359                 Interop.FlexLayout.FlexLayout_SetFlexJustification(swigCPtr, (int)value);
360                 RequestLayout();
361             }
362         }
363
364         /// <summary>
365         /// Gets/Sets the wrap in the layout.
366         /// The flex wrap property is set on containers and controls what happens when children overflow the size of the container along the main axis.<br/>
367         /// By default children are forced into a single line (which can shrink elements).<br/>
368         /// If wrapping is allowed items are wrapped into multiple lines along the main axis if needed. wrap reverse behaves the same, but the order of the lines is reversed.<br/>
369         /// When wrapping lines <see cref="Alignment"/> can be used to specify how the lines are placed in the container.
370         /// </summary>
371         /// <since_tizen> 6 </since_tizen>
372         public FlexWrapType WrapType
373         {
374             get => (FlexWrapType)Interop.FlexLayout.FlexLayout_GetFlexWrap(swigCPtr);
375             set
376             {
377                 Interop.FlexLayout.FlexLayout_SetFlexWrap(swigCPtr, (int)value);
378                 RequestLayout();
379             }
380         }
381
382         /// <summary>
383         /// Gets/Sets the alignment of the layout content.
384         /// Alignment defines the distribution of lines along the cross-axis.<br/>
385         /// This only has effect when items are wrapped to multiple lines using flex wrap.
386         /// </summary>
387         /// <since_tizen> 6 </since_tizen>
388         public AlignmentType Alignment
389         {
390             get => GetFlexAlignment();
391             set
392             {
393                 Interop.FlexLayout.FlexLayout_SetFlexAlignment(swigCPtr, (int)value);
394                 RequestLayout();
395             }
396         }
397
398         /// <summary>
399         /// Gets/Sets the alignment of the layout items.
400         /// Items alignment describes how to align children along the cross axis of their container.<br/>
401         /// Align items is very similar to <see cref="Justification"/> but instead of applying to the main axis, align items applies to the cross axis.
402         /// </summary>
403         /// <since_tizen> 6 </since_tizen>
404         public AlignmentType ItemsAlignment
405         {
406             get => GetFlexItemsAlignment();
407             set
408             {
409                 Interop.FlexLayout.FlexLayout_SetFlexItemsAlignment(swigCPtr, (int)value);
410                 RequestLayout();
411             }
412         }
413
414         /// <summary>
415         /// Enumeration for the direction of the main axis in the flex container.
416         /// This determines the direction that flex items are laid out in the flex container.
417         /// </summary>
418         /// <since_tizen> 6 </since_tizen>
419         public enum FlexDirection
420         {
421             /// <summary>
422             /// The flexible items are displayed vertically as a column
423             /// </summary>
424             Column,
425             /// <summary>
426             /// The flexible items are displayed vertically as a column, but in reverse order
427             /// </summary>
428             ColumnReverse,
429             /// <summary>
430             /// The flexible items are displayed horizontally as a row
431             /// </summary>
432             Row,
433             /// <summary>
434             /// The flexible items are displayed horizontally as a row, but in reverse order
435             /// </summary>
436             RowReverse
437         }
438
439         /// <summary>
440         /// Enumeration for the alignment of the flex items when the items do not use all available space on the main-axis.
441         /// </summary>
442         /// <since_tizen> 6 </since_tizen>
443         public enum FlexJustification
444         {
445             /// <summary>
446             /// Items are positioned at the beginning of the container.
447             /// </summary>
448             FlexStart,
449             /// <summary>
450             /// Items are positioned at the center of the container.
451             /// </summary>
452             Center,
453             /// <summary>
454             /// Items are positioned at the end of the container.
455             /// </summary>
456             FlexEnd,
457             /// <summary>
458             /// Items are positioned with equal space between the lines.
459             /// </summary>
460             SpaceBetween,
461             /// <summary>
462             /// Items are positioned with equal space before, between, and after the lines.<br/>
463             /// Compared to <see cref="FlexJustification.SpaceBetween"/> using <see cref="FlexJustification.SpaceAround"/>
464             /// will result in space being distributed to the beginning of the first child and end of the last child.
465             /// </summary>
466             SpaceAround
467         }
468
469         /// <summary>
470         /// Enumeration for the wrap type of the flex container when there is no enough room for all the items on one flex line.
471         /// </summary>
472         /// <since_tizen> 6 </since_tizen>
473         public enum FlexWrapType
474         {
475             /// <summary>
476             /// Flex items laid out in single line (shrunk to fit the flex container along the main axis)
477             /// </summary>
478             NoWrap,
479             /// <summary>
480             /// Flex items laid out in multiple lines if needed
481             /// </summary>
482             Wrap
483         }
484
485         /// <summary>
486         /// Enumeration for the alignment of the flex items or lines when the items or lines do not use all the available space on the cross-axis.
487         /// </summary>
488         /// <since_tizen> 6 </since_tizen>
489         public enum AlignmentType
490         {
491             /// <summary>
492             /// Inherits the same alignment from the parent
493             /// </summary>
494             Auto,
495             /// <summary>
496             /// At the beginning of the container
497             /// </summary>
498             FlexStart,
499             /// <summary>
500             /// At the center of the container
501             /// </summary>
502             Center,
503             /// <summary>
504             /// At the end of the container
505             /// </summary>
506             FlexEnd,
507             /// <summary>
508             /// Stretch to fit the container
509             /// </summary>
510             Stretch
511         }
512
513         /// <summary>
514         /// Enumeration for the position type of the flex item how it is positioned within its parent.
515         /// </summary>
516         /// <since_tizen> 8 </since_tizen>
517         public enum PositionType
518         {
519             /// <summary>
520             /// Flex items laid out relatively.
521             /// </summary>
522             Relative,
523             /// <summary>
524             /// Flex items laid out absolutely.
525             /// </summary>
526             Absolute
527         }
528
529         private void measureChild(global::System.IntPtr childPtr, float width, int measureModeWidth, float height, int measureModeHeight, out MeasuredSize measureSize)
530         {
531             // We need to measure child layout
532             View child = Registry.GetManagedBaseHandleFromNativePtr(childPtr) as View;
533
534             LayoutItem childLayout = child.Layout;
535
536             MeasureSpecification childWidthMeasureSpec = GetChildMeasureSpecification(
537                                     new MeasureSpecification(
538                                         new LayoutLength(parentMeasureSpecificationWidth.Size - (child.Margin.Start + child.Margin.End)),
539                                         parentMeasureSpecificationWidth.Mode),
540                                     new LayoutLength(Padding.Start + Padding.End),
541                                     new LayoutLength(child.WidthSpecification));
542
543             MeasureSpecification childHeightMeasureSpec = GetChildMeasureSpecification(
544                                     new MeasureSpecification(
545                                         new LayoutLength(parentMeasureSpecificationHeight.Size - (child.Margin.Top + child.Margin.Bottom)),
546                                         parentMeasureSpecificationHeight.Mode),
547                                     new LayoutLength(Padding.Top + Padding.Bottom),
548                                     new LayoutLength(child.HeightSpecification));
549
550             childLayout.Measure(childWidthMeasureSpec, childHeightMeasureSpec);
551
552             measureSize.width = childLayout.MeasuredWidth.Size.AsRoundedValue();
553             measureSize.height = childLayout.MeasuredHeight.Size.AsRoundedValue();
554         }
555
556         void InsertChild(LayoutItem child)
557         {
558             // Store created node for child
559             IntPtr childPtr = Interop.FlexLayout.FlexLayout_AddChildWithMargin(swigCPtr, View.getCPtr(child.Owner), Extents.getCPtr(child.Owner.Margin), measureChildDelegate, LayoutChildren.Count - 1);
560             HandleRef childHandleRef = new HandleRef(child.Owner, childPtr);
561             SetAttachedValue(child.Owner, FlexItemProperty, childHandleRef);
562         }
563
564         /// <summary>
565         /// Callback when child is added to container.<br />
566         /// Derived classes can use this to set their own child properties on the child layout's owner.<br />
567         /// </summary>
568         /// <param name="child">The Layout child.</param>
569         /// <since_tizen> 6 </since_tizen>
570         protected override void OnChildAdd(LayoutItem child)
571         {
572             InsertChild(child);
573         }
574
575         /// <summary>
576         /// Callback when child is removed from container.<br />
577         /// </summary>
578         /// <param name="child">The Layout child.</param>
579         /// <since_tizen> 6 </since_tizen>
580         protected override void OnChildRemove(LayoutItem child)
581         {
582             // When child View is removed from it's parent View (that is a Layout) then remove it from the layout too.
583             // FlexLayout refers to the child as a View not LayoutItem.
584             Interop.FlexLayout.FlexLayout_RemoveChild(swigCPtr, child);
585         }
586
587         /// <summary>
588         /// Measure the layout and its content to determine the measured width and the measured height.<br />
589         /// </summary>
590         /// <param name="widthMeasureSpec">horizontal space requirements as imposed by the parent.</param>
591         /// <param name="heightMeasureSpec">vertical space requirements as imposed by the parent.</param>
592         /// <since_tizen> 6 </since_tizen>
593         protected override void OnMeasure(MeasureSpecification widthMeasureSpec, MeasureSpecification heightMeasureSpec)
594         {
595             bool isLayoutRtl = Owner.LayoutDirection == ViewLayoutDirectionType.RTL;
596             Extents padding = Owner.Padding;
597             Extents margin = Owner.Margin;
598
599             Interop.FlexLayout.FlexLayout_SetMargin(swigCPtr, Extents.getCPtr(margin));
600             Interop.FlexLayout.FlexLayout_SetPadding(swigCPtr, Extents.getCPtr(padding));
601
602             float width = FlexUndefined; // Behaves as WrapContent (Flex Auto)
603             float height = FlexUndefined; // Behaves as WrapContent (Flex Auto)
604
605             if (widthMeasureSpec.Mode == MeasureSpecification.ModeType.Exactly || widthMeasureSpec.Mode == MeasureSpecification.ModeType.AtMost)
606             {
607                 width = widthMeasureSpec.Size.AsDecimal();
608             }
609
610             if (heightMeasureSpec.Mode == MeasureSpecification.ModeType.Exactly || heightMeasureSpec.Mode == MeasureSpecification.ModeType.AtMost)
611             {
612                 height = heightMeasureSpec.Size.AsDecimal();
613             }
614
615             // Save measureSpec to measure children.
616             // In other Layout, we can pass it as parameter to measuring child but in FlexLayout we can't
617             // because measurChild function is called by native callback.
618             parentMeasureSpecificationWidth = widthMeasureSpec;
619             parentMeasureSpecificationHeight = heightMeasureSpec;
620
621             // Assign child properties
622             for (int i = 0; i < LayoutChildren.Count; i++)
623             {
624                 LayoutItem layoutItem = LayoutChildren[i];
625                 View Child = layoutItem?.Owner;
626                 HandleRef childHandleRef = (HandleRef)Child.GetValue(FlexItemProperty);
627                 if (childHandleRef.Handle == IntPtr.Zero || Child == null)
628                     continue;
629
630                 AlignmentType flexAlignemnt = GetFlexAlignmentSelf(Child);
631                 PositionType flexPosition = GetFlexPositionType(Child);
632                 float flexAspectRatio = GetFlexAspectRatio(Child);
633                 float flexBasis = GetFlexBasis(Child);
634                 float flexShrink = GetFlexShrink(Child);
635                 float flexGrow = GetFlexGrow(Child);
636
637                 Interop.FlexLayout.FlexLayout_SetFlexAlignmentSelf(childHandleRef, (int)flexAlignemnt);
638                 Interop.FlexLayout.FlexLayout_SetFlexPositionType(childHandleRef, (int)flexPosition);
639                 Interop.FlexLayout.FlexLayout_SetFlexAspectRatio(childHandleRef, flexAspectRatio);
640                 Interop.FlexLayout.FlexLayout_SetFlexBasis(childHandleRef, flexBasis);
641                 Interop.FlexLayout.FlexLayout_SetFlexShrink(childHandleRef, flexShrink);
642                 Interop.FlexLayout.FlexLayout_SetFlexGrow(childHandleRef, flexGrow);
643             }
644
645             Interop.FlexLayout.FlexLayout_CalculateLayout(swigCPtr, width, height, isLayoutRtl);
646
647             LayoutLength flexLayoutWidth = new LayoutLength(Interop.FlexLayout.FlexLayout_GetWidth(swigCPtr));
648             LayoutLength flexLayoutHeight = new LayoutLength(Interop.FlexLayout.FlexLayout_GetHeight(swigCPtr));
649
650             Debug.WriteLineIf(LayoutDebugFlex, "FlexLayout OnMeasure width:" + flexLayoutWidth.AsRoundedValue()
651                                                 + " height:" + flexLayoutHeight.AsRoundedValue());
652
653             SetMeasuredDimensions(GetDefaultSize(flexLayoutWidth, widthMeasureSpec),
654                                    GetDefaultSize(flexLayoutHeight, heightMeasureSpec));
655         }
656
657         /// <summary>
658         /// Assign a size and position to each of its children.<br />
659         /// </summary>
660         /// <param name="changed">This is a new size or position for this layout.</param>
661         /// <param name="left">Left position, relative to parent.</param>
662         /// <param name="top"> Top position, relative to parent.</param>
663         /// <param name="right">Right position, relative to parent.</param>
664         /// <param name="bottom">Bottom position, relative to parent.</param>
665         /// <since_tizen> 6 </since_tizen>
666         protected override void OnLayout(bool changed, LayoutLength left, LayoutLength top, LayoutLength right, LayoutLength bottom)
667         {
668
669             bool isLayoutRtl = Owner.LayoutDirection == ViewLayoutDirectionType.RTL;
670             LayoutLength width = right - left;
671             LayoutLength height = bottom - top;
672
673             // Call to FlexLayout implementation to calculate layout values for later retrieval.
674             Interop.FlexLayout.FlexLayout_CalculateLayout(swigCPtr, width.AsDecimal(), height.AsDecimal(), isLayoutRtl);
675
676             int count = LayoutChildren.Count;
677             for (int childIndex = 0; childIndex < count; childIndex++)
678             {
679                 LayoutItem childLayout = LayoutChildren[childIndex];
680                 if (childLayout != null)
681                 {
682                     // Get the frame for the child, start, top, end, bottom.
683                     Vector4 frame = new Vector4(Interop.FlexLayout.FlexLayout_GetNodeFrame(swigCPtr, childIndex), true);
684                     childLayout.Layout(new LayoutLength(frame.X), new LayoutLength(frame.Y), new LayoutLength(frame.Z), new LayoutLength(frame.W));
685                 }
686             }
687         }
688
689     } // FLexlayout
690 } // namesspace Tizen.NUI