Change the API macros of layout
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / layouting / layout-item-impl.h
1 #ifndef DALI_TOOLKIT_INTERNAL_LAYOUTING_LAYOUT_ITEM_H
2 #define DALI_TOOLKIT_INTERNAL_LAYOUTING_LAYOUT_ITEM_H
3 /*
4  * Copyright (c) 2018 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #include <memory>
20
21 #include <dali/public-api/common/intrusive-ptr.h>
22 #include <dali/public-api/object/base-object.h>
23 #include <dali/public-api/object/type-registry.h>
24 #include <dali/public-api/actors/actor-enumerations.h>
25 #include <dali-toolkit/devel-api/layouting/child-layout-data.h>
26 #include <dali-toolkit/devel-api/layouting/layout-item.h>
27 #include <dali-toolkit/devel-api/layouting/layout-parent-impl.h>
28 #include <dali-toolkit/devel-api/layouting/layout-controller.h>
29 #include <dali-toolkit/devel-api/layouting/layout-size.h>
30 #include <dali-toolkit/devel-api/layouting/measure-spec.h>
31 #include <dali-toolkit/devel-api/layouting/measured-size.h>
32
33 namespace Dali
34 {
35 namespace Toolkit
36 {
37 namespace Internal
38 {
39
40 class LayoutItem;
41 using LayoutItemPtr = IntrusivePtr<LayoutItem>;
42
43
44 /**
45  * Base class for layouts.
46  */
47 class DALI_TOOLKIT_API LayoutItem : public BaseObject,
48                                     public LayoutParent
49 {
50 public:
51   /**
52    * Constructor.
53    */
54   LayoutItem();
55
56 protected:
57   /**
58    * A reference counted object may only be deleted by calling Unreference()
59    */
60   virtual ~LayoutItem();
61
62 public:
63
64 /**
65    * @brief Construct
66    *
67    * @param[in] owner The owner (container view / child view / visual ) of this layout
68    * @return a new LayoutItem object
69    */
70   static LayoutItemPtr New( Handle& owner );
71
72   /**
73    * @brief Remove the default copy constructor
74    */
75   LayoutItem(const LayoutItem& copy)=delete;
76
77   /**
78    * @brief Remove the default assignment operator
79    */
80   LayoutItem& operator=(const LayoutItem& rhs)=delete;
81
82   /**
83    * @brief Initialize the layout with it's owner and owner's type name
84    * @param[in] owner a handle to the owner container
85    * @param[in] containerType the type name of the owner container
86    */
87   void Initialize( Handle& owner, const std::string& containerType );
88
89   /**
90    * @brief Get a handle to the owner of this layout
91    *
92    * @return a handle to the owner of this layout
93    */
94   Handle GetOwner() const;
95
96   /**
97    * @brief Unparent this layout from it's owner, and remove any layout children in derived types
98    */
99   void Unparent();
100
101   /**
102    * @brief Set whether this layout should be animated or not
103    *
104    * @param[in] animateLayout True if the layout should be animated when applied
105    */
106   void SetAnimateLayout( bool animateLayout );
107
108   /**
109    * @brief Get whether this layout should be animated or not
110    *
111    * @return True if the layout should be animated when applied
112    */
113   bool IsLayoutAnimated() const;
114
115   /**
116    * @brief Register child properties of layout with owner type.
117    *
118    * The Actor hierarchy uses these registered properties in the type
119    * system to ensure child custom properties are properly initialized.
120    *
121    * @param[in] containerType The type of the containing view (owner)
122    */
123   void RegisterChildProperties( const std::string& containerType );
124
125   /**
126    * @brief  This is called to find out how big a layout should be.
127    *
128    * The parent supplies constraint information in the width and height parameters.
129    *
130    * The actual measurement work of a layout is performed in
131    * {@link #OnMeasure(MeasureSpec, MeasureSpec)}, called by this method. Therefore, only
132    * {@link #OnMeasure(MeasureSpec, MeasureSpec)} can and must be overridden by subclasses.
133    *
134    * @param[in] widthMeasureSpec Horizontal space requirements as imposed by the parent
135    * @param[in] heightMeasureSpec Vertical space requirements as imposed by the parent
136    *
137    * @see #OnMeasure(MeasureSpec, MeasureSpec)
138    */
139   void Measure( MeasureSpec widthMeasureSpec, MeasureSpec heightMeasureSpec );
140
141   /**
142    * @brief Assign a size and position to a layout and all of its descendants.
143    *
144    * This is the second phase of the layout mechanism.  (The first is measuring). In this phase, each parent
145    * calls layout on all of its children to position them.  This is typically done using the child
146    * measurements that were stored in the measure pass.
147    *
148    * Derived classes with children should override OnLayout. In that method, they should call Layout on each
149    * of their children.
150    *
151    * @param[in] left position, relative to parent
152    * @param[in] top position, relative to parent
153    * @param[in] right position, relative to parent
154    * @param[in] bottom position, relative to parent
155    */
156   void Layout( LayoutLength left, LayoutLength top, LayoutLength right, LayoutLength bottom );
157
158   /**
159    * @brief Utility to return a default size.
160    *
161    * Uses the supplied size if the MeasureSpec imposed no constraints. Will get larger if allowed by the
162    * MeasureSpec.
163    *
164    * @param[in] size Default size for this layout
165    * @param[in] measureSpec Constraints imposed by the parent
166    * @return The size this layout should be.
167    */
168   static LayoutLength GetDefaultSize( LayoutLength size, MeasureSpec measureSpec );
169
170   /**
171    * @copydoc LayoutParent::GetParent
172    */
173   virtual LayoutParent* GetParent() override;
174
175   /**
176    * @brief Request that this layout is re-laid out.
177    *
178    * This will make this layout and all it's parent layouts dirty.
179    */
180   void RequestLayout();
181
182   /**
183    * @brief Predicate to determine if this layout has been requested to re-layout
184    *
185    * @return True if a layout request has occured on this layout
186    */
187   bool IsLayoutRequested() const;
188
189   /**
190    * @brief Set layout requested flag (mark the layout dirty).
191    */
192   void SetLayoutRequested();
193
194   /**
195    * @brief Get the measured width (without any measurement flags).
196    *
197    * This method should be used only during measurement and layout calculations.
198    *
199    * Use {@link Dali::Actor::GetTargetSize()} to see how wide a control is after layout
200    */
201   LayoutLength GetMeasuredWidth() const;
202
203   /**
204    * @brief Get the measured height (without any measurement flags).
205    *
206    * This method should be used only during measurement and layout calculations.
207    *
208    * Use {@link Dali::Actor::GetTargetSize()} to see how high a control is after layout
209    */
210   LayoutLength GetMeasuredHeight() const;
211
212   /**
213    * @brief Get the measured width and state.
214    *
215    * This method should be used only during measurement and layout calculations.
216    *
217    * Use {@link Dali::Actor::GetTargetSize()} to see how wide a view is after layout
218    */
219   MeasuredSize GetMeasuredWidthAndState() const;
220
221   /**
222    * @brief Get the measured height and state.
223    *
224    * This method should be used only during measurement and layout calculations.
225    *
226    * Use {@link Dali::Actor::GetTargetSize()} to see how high a view is after layout
227    */
228   MeasuredSize GetMeasuredHeightAndState() const;
229
230   /**
231    * @brief Returns the suggested minimum width that the layout should use.
232    *
233    * This returns the maximum of the layout's minimum width and the background's minimum width
234    *
235    * When being used in {@link #OnMeasure()}, the caller should still
236    * ensure the returned width is within the requirements of the parent.
237    *
238    * @return The suggested minimum width of the layout.
239    */
240   LayoutLength GetSuggestedMinimumWidth() const;
241
242   /**
243    * @brief Returns the suggested minimum height that the layout should use.
244    *
245    * This returns the maximum of the layout's minimum height and the background's minimum height
246    *
247    * When being used in {@link #OnMeasure()}, the caller should still
248    * ensure the returned height is within the requirements of the parent.
249    *
250    * @return The suggested minimum height of the layout.
251    */
252   LayoutLength GetSuggestedMinimumHeight() const;
253
254   /**
255    * @brief Sets the minimum width of the layout.
256    *
257    * It is not guaranteed the layout will be able to achieve this minimum width (for example, if its parent
258    * layout constrains it with less available width).
259    *
260    * @param[in] minWidth The minimum width the layout will try to be, in pixels
261    *
262    * @see #GetMinimumWidth()
263    */
264   void SetMinimumWidth( LayoutLength minWidth );
265
266   /**
267    * @brief Sets the minimum height of the layout.
268    *
269    * It is not guaranteed the layout will be able to achieve this minimum height (for example, if its parent
270    * layout constrains it with less available height).
271    *
272    * @param[in] minHeight The minimum height the layout will try to be, in pixels
273    *
274    * @see #GetMinimumHeight()
275    */
276   void SetMinimumHeight( LayoutLength minHeight );
277
278   /**
279    * @brief Returns the minimum width of the layout.
280    *
281    * @return the minimum width the layout will try to be, in pixels
282    *
283    * @see #SetMinimumWidth(LayoutLength)
284    */
285   LayoutLength GetMinimumWidth() const;
286
287   /**
288    * @brief Returns the minimum height of the layout.
289    *
290    * @return the minimum height the layout will try to be, in pixels
291    *
292    * @see #SetMinimumHeight(LayoutLength)
293    */
294   LayoutLength GetMinimumHeight() const;
295
296   /**
297    * Get the padding information.
298    * @return The padding information
299    */
300   Extents GetPadding() const;
301
302   /**
303    * Get the margin information.
304    * @return The margin information
305    */
306   Extents GetMargin() const;
307
308 protected:
309   /**
310    * @brief Allow directly deriving classes to remove layout children when unparented
311    */
312   virtual void OnUnparent(){};
313
314   /**
315    * @brief Ensure direct derived types register their child properties with the owner
316    *
317    * @param[in] containerType The type name of the owner container
318    */
319   virtual void OnRegisterChildProperties( const std::string& containerType );
320
321   /**
322    * @brief Measure the layout and its content to determine the measured width and the
323    * measured height.
324    *
325    * This method is invoked by {@link #Measure(MeasureSpec, MeasureSpec)} and
326    * should be overridden by subclasses to provide accurate and efficient
327    * measurement of their contents.
328    *
329    * <strong>CONTRACT:</strong> When overriding this method, you
330    * <em>must</em> call {@link #SetMeasuredDimensions(MeasuredSize,MeasuredSize)} to store the
331    * measured width and height of this layout. Failure to do so will trigger an
332    * <code>IllegalStateException</code>, thrown by
333    * {@link #Measure(MeasureSpec,MeasureSpec)}. Calling the superclass'
334    * {@link #OnMeasure(MeasureSpec,MeasureSpec)} is a valid use.
335    *
336    * The base class implementation of measure defaults to the background size,
337    * unless a larger size is allowed by the MeasureSpec. Subclasses should
338    * override {@link #OnMeasure(MeasureSpec,MeasureSpec)} to provide better measurements of
339    * their content.
340    *
341    * If this method is overridden, it is the subclass's responsibility to make
342    * sure the measured height and width are at least the layout's minimum height
343    * and width ({@link #GetSuggestedMinimumHeight()} and
344    * {@link #GetSuggestedMinimumWidth()}).
345    *
346    * @param[in] widthMeasureSpec horizontal space requirements as imposed by the parent.
347    *                             The requirements are encoded with
348    *                             {@link MeasureSpec}.
349    * @param[in] heightMeasureSpec vertical space requirements as imposed by the parent.
350    *                              The requirements are encoded with
351    *                              {@link MeasureSpec}.
352    *
353    * @see #GetMeasuredWidth()
354    * @see #GetMeasuredHeight()
355    * @see #GetSuggestedMinimumHeight()
356    * @see #GetSuggestedMinimumWidth()
357    * @see MeasureSpec#GetMode(int)
358    * @see MeasureSpec#GetSize(int)
359    */
360   virtual void OnMeasure( MeasureSpec widthMeasureSpec, MeasureSpec heightMeasureSpec );
361
362   /**
363    * @brief Called from Layout() when this layout should assign a size and position to each of its children.
364    *
365    * Derived classes with children should override this method and call Layout() on each of their children.
366    *
367    * @param[in] changed This is a new size or position for this layout
368    * @param[in] left Left position, relative to parent
369    * @param[in] top Top position, relative to parent
370    * @param[in] right Right position, relative to parent
371    * @param[in] bottom Bottom position, relative to parent
372    */
373   virtual void OnLayout( bool changed, LayoutLength left, LayoutLength top, LayoutLength right, LayoutLength bottom );
374
375
376   /**
377    * @brief This method must be called by {@link #OnMeasure(MeasureSpec,MeasureSpec)} to store the
378    * measured width and measured height.
379    *
380    * Failing to do so will trigger an exception at measurement time.
381    *
382    * @param[in] measuredWidth The measured width of this layout. This may have a state of
383    * {@link MeasuredSize::MEASURED_SIZE_TOO_SMALL}
384    *
385    * @param[in] measuredHeight The measured height of this layout. This may have a state of
386    * {@link MeasuredSize::MEASURED_SIZE_TOO_SMALL}
387    */
388   void SetMeasuredDimensions( MeasuredSize measuredWidth, MeasuredSize measuredHeight );
389
390   /**
391    * @brief Utility to reconcile a desired size and state, with constraints imposed by a MeasureSpec.
392    *
393    * @param[in] size How big the layout wants to be.
394    * @param[in] measureSpec Constraints imposed by the parent.
395    * @param[in] childMeasuredState Size information bit mask for the layout's children.
396    *
397    * @return A measured size, which may indicate that it is too small.
398    */
399   static MeasuredSize ResolveSizeAndState( LayoutLength size, MeasureSpec measureSpec,
400                                            MeasuredSize::State childMeasuredState );
401
402   /**
403    * @brief Sets the frame (the size and position) of the layout onto it's owner
404    *
405    * @todo Consider instead, collating properties into LayoutCollector in order to set/animate them all
406    * in one block.
407    * @param[in] left The horizontal position of the left edge of this frame within the parent layout
408    * @param[in] top The vertical position of the top edge of this frame within the parent layout
409    * @param[in] right The horizontal position of the right edge of this frame within the parent layout
410    * @param[in] bottom The vertical position of the bottom edge of this frame within the parent layout
411    */
412   bool SetFrame( LayoutLength left, LayoutLength top, LayoutLength right, LayoutLength bottom );
413
414   /**
415    * Virtual method to inform derived classes when the layout size changed
416    * @param[in] newSize The new size of the layout
417    * @param[in] oldSize The old size of the layout
418    */
419   virtual void OnSizeChanged( LayoutSize newSize, LayoutSize oldSize );
420
421
422   /**
423    * @brief Initialization method for LayoutGroup to override
424    */
425   virtual void OnInitialize();
426
427 private:
428   /**
429    * @brief Called to change the size of the layout.
430    *
431    * @param[in] newSize The new size of the layout
432    * @param[in] oldSize The old size of the layout
433    */
434   void SizeChange( LayoutSize newSize, LayoutSize oldSize );
435
436   /**
437    * @brief Triggered when a layout animation finished.
438    *
439    * @param[in] animation  A handle to the layout animation
440    */
441   void OnLayoutAnimationFinished( Animation& animation );
442
443 public:
444   class Impl; // Class declaration is public so we can add devel API's in the future
445
446
447 private:
448   std::unique_ptr<Impl> mImpl; ///< Implementation class holds all the data
449   SlotDelegate<LayoutItem> mSlotDelegate;
450 };
451
452 } //namespace Internal
453
454 inline Internal::LayoutItem& GetImplementation( Dali::Toolkit::LayoutItem& handle )
455 {
456   DALI_ASSERT_ALWAYS( handle && "LayoutItem handle is empty" );
457   BaseObject& object = handle.GetBaseObject();
458   return static_cast< Internal::LayoutItem& >( object );
459 }
460
461 inline const Internal::LayoutItem& GetImplementation( const Dali::Toolkit::LayoutItem& handle )
462 {
463   DALI_ASSERT_ALWAYS( handle && "LayoutItem handle is empty" );
464   const BaseObject& object = handle.GetBaseObject();
465   return static_cast< const Internal::LayoutItem& >( object );
466 }
467
468 } //namespace Toolkit
469 } //namespace Dali
470
471 #endif // DALI_TOOLKIT_INTERNAL_LAYOUTING_LAYOUT_ITEM_H