Merge "DALi C# binding - Generic Delegates support for EventHandlers" into devel...
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / table-view / table-view.h
1 #ifndef __DALI_TOOLKIT_TABLE_VIEW_H__
2 #define __DALI_TOOLKIT_TABLE_VIEW_H__
3
4 /*
5  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/common/vector-wrapper.h>
23 #include <dali/public-api/actors/actor-enumerations.h>
24
25 // INTERNAL INCLUDES
26 #include <dali-toolkit/public-api/controls/control.h>
27
28 namespace Dali
29 {
30
31 namespace Toolkit
32 {
33
34 namespace Internal DALI_INTERNAL
35 {
36 class TableView;
37 }
38 /**
39  * @addtogroup dali_toolkit_controls_table_view
40  * @{
41  */
42
43 /**
44  * @brief TableView is a layout container for aligning child actors in a grid like layout.
45  *
46  * TableView constrains the x and y position and width and height of the child actors.
47  * z position and depth are left intact so that 3D model actors can also be laid out
48  * in a grid without loosing their depth scaling.
49  *
50  * @nosubgrouping
51  * <h3>Per-child Custom properties for script supporting:</h3>
52  *
53  * When an actor is add to the tableView through Actor::Add() instead of TableView::AddChild,
54  * the following custom properties of the actor are checked to decide the actor position inside the table.
55  *
56  * These properties are registered dynamically to the child and is non-animatable.
57  *
58  * | %Property Name          | Type        |
59  * |-------------------------|-------------|
60  * | cellIndex               | Vector2     |
61  * | rowSpan                 | float       |
62  * | columnSpan              | float       |
63  * | cellHorizontalAlignment | string      |
64  * | cellVerticalAlignment   | string      |
65  *
66  * The rowSpan or columnSpan has integer value, but its type is float here due to the limitation of the builder's ability to differentiate integer and float from Json string.
67  * The available values for cellHorizontalAlignment are: left, center, right.
68  * The available values for cellVerticalAlignment are: top, center, bottom.
69  *
70  * @code
71  * "name":"gallery1",
72  * "type":"ImageView",
73  * "image": {
74  *    "url": "{DALI_IMAGE_DIR}gallery-small-1.jpg"
75  *  },
76  *  "properties": {
77  *     "cellIndex":[1,1],  // property to specify the top-left cell this child occupies, if not set, the first available cell is used
78  *     "rowSpan":3,        // property to specify how many rows this child occupies, if not set, default value is 1
79  *     "columnSpan": 2,    // property to specify how many columns this child occupies, if nor set, default value is 1
80  *     "cellHorizontalAlignment": "left", // property to specify how to align horizontally inside the cells, if not set, default value is 'left'
81  *     "cellVerticalAlignment": "center"  // property to specify how to align vertically inside the cells, if not set, default value is 'top'
82  *   }
83  * @endcode
84  * @SINCE_1_0.0
85  */
86 class DALI_IMPORT_API TableView : public Control
87 {
88 public:
89
90   /**
91    * @brief The start and end property ranges for this control.
92    * @SINCE_1_0.0
93    */
94   enum PropertyRange
95   {
96     PROPERTY_START_INDEX = Control::CONTROL_PROPERTY_END_INDEX + 1, ///< @SINCE_1_0.0
97     PROPERTY_END_INDEX =   PROPERTY_START_INDEX + 1000,             ///< Reserve property indices @SINCE_1_0.0
98
99     CHILD_PROPERTY_START_INDEX = CHILD_PROPERTY_REGISTRATION_START_INDEX,         ///< @SINCE_1_1.36
100     CHILD_PROPERTY_END_INDEX =   CHILD_PROPERTY_REGISTRATION_START_INDEX + 1000   ///< Reserve child property indices @SINCE_1_1.36
101   };
102
103   /**
104    * @brief An enumeration of properties belonging to the TableView class.
105    *
106    * LayoutRows: set the height of the rows.
107    * It has the format as follows in script:
108    * @code
109    * "layoutRows":
110    *       {
111    *         "0": { "policy": "fixed", "value": 40 },       //@see SetFixedHight
112    *         "2": { "policy": "relative", "value": 0.33 },  //@see SetRelativeHeight
113    *         "3": { "policy": "fit", "value":0.0 }          //@see SetFitHeight, the value is not used, its height is decided by the children in this row
114    *       }
115    * @endcode
116    *
117    * LayoutColumns: set the width of the columns.
118    * It has the format as follows in script:
119    * @code
120    * "layoutColumns":
121    *       {
122    *         "0": { "policy": "fixed", "value": 40 },       //@see SetFixedWidth
123    *         "1": { "policy": "fit", "value":0.0 }          //@see SetFitHeight, the value is not used, its width is decided by the children in this column
124    *         "2": { "policy": "relative", "value": 0.33 }   //@see SetRelativeWidth
125    *       }
126    * @endcode
127    * @SINCE_1_0.0
128    */
129   struct Property
130   {
131     enum
132     {
133       ROWS = PROPERTY_START_INDEX, ///< name "rows",           type unsigned int @SINCE_1_0.0
134       COLUMNS,                     ///< name "columns",        type unsigned int @SINCE_1_0.0
135       CELL_PADDING,                ///< name "cellPadding",    type Vector2 @SINCE_1_0.0
136       LAYOUT_ROWS,                 ///< name "layoutRows",     type Map @SINCE_1_0.0
137       LAYOUT_COLUMNS,              ///< name "layoutColumns",  type Map @SINCE_1_0.0
138     };
139   };
140
141   /**
142    * @brief An enumeration of child properties belonging to the TableView class.
143    * @SINCE_1_1.36
144    */
145   struct ChildProperty
146   {
147     enum
148     {
149       CELL_INDEX = CHILD_PROPERTY_START_INDEX,  ///< name "cellIndex",                The top-left cell this child occupies, if not set, the first available cell is used,           type VECTOR2 @SINCE_1_1.36
150       ROW_SPAN,                                 ///< name "rowSpan",                  The number of rows this child occupies, if not set, default value is 1,                        type FLOAT @SINCE_1_1.36
151       COLUMN_SPAN,                              ///< name "columnSpan",               The number of columns this child occupies, if not set, default value is 1,                     type FLOAT @SINCE_1_1.36
152       CELL_HORIZONTAL_ALIGNMENT,                ///< name "cellHorizontalAlignment",  The horizontal alignment of this child inside the cells, if not set, default value is 'left',  type STRING @SINCE_1_1.36
153       CELL_VERTICAL_ALIGNMENT                   ///< name "cellVerticalAlignment",    The vertical alignment of this child inside the cells, if not set, default value is 'top',     type STRING @SINCE_1_1.36
154     };
155   };
156
157   /**
158    * @brief Describes how the size of a row / column been set
159    * @SINCE_1_0.0
160    */
161   enum LayoutPolicy
162   {
163     FIXED,      ///< Fixed with the given value. @SINCE_1_0.0
164     RELATIVE,   ///< Calculated as percentage of the remainder after subtracting Padding and Fixed height/width @SINCE_1_0.0
165     FILL,       ///< Default policy, get the remainder of the 100% (after subtracting Fixed, Fit and Relative height/ width) divided evenly between 'fill' rows/columns @SINCE_1_0.0
166     FIT         ///< Fit around its children. @SINCE_1_0.0
167   };
168
169   /**
170    * @brief Structure to specify layout position for child actor
171    * @SINCE_1_0.0
172    */
173   struct CellPosition
174   {
175     /**
176      * @brief Constructor to initialise values to defaults for convenience
177      * @SINCE_1_0.0
178      * @param[in] rowIndex The row index initialized
179      * @param[in] columnIndex The column index initialized
180      * @param[in] rowSpan The row span initialized
181      * @param[in] columnSpan The column span initialized
182      */
183     CellPosition( unsigned int rowIndex = 0, unsigned int columnIndex = 0,
184                     unsigned int rowSpan = 1, unsigned int columnSpan = 1 )
185     : rowIndex( rowIndex ), columnIndex( columnIndex ),
186       rowSpan( rowSpan ), columnSpan( columnSpan )
187     { }
188
189     unsigned int rowIndex;
190     unsigned int columnIndex;
191     unsigned int rowSpan;
192     unsigned int columnSpan;
193   };
194
195   /**
196    * @brief Create a TableView handle; this can be initialised with TableView::New()
197    * Calling member functions with an uninitialised handle is not allowed.
198    * @SINCE_1_0.0
199    */
200   TableView();
201
202   /**
203    * @brief Copy constructor. Creates another handle that points to the same real object
204    * @SINCE_1_0.0
205    * @param[in] handle to copy from
206    */
207   TableView( const TableView& handle );
208
209   /**
210    * @brief Assignment operator. Changes this handle to point to another real object
211    * @SINCE_1_0.0
212    * @param[in] handle Handle to an object
213    * @return A reference to this
214    */
215   TableView& operator=( const TableView& handle );
216
217   /**
218    * @brief Destructor
219    *
220    * This is non-virtual since derived Handle types must not contain data or virtual methods.
221    * @SINCE_1_0.0
222    */
223   ~TableView();
224
225   /**
226    * @brief Create the TableView control.
227    * @SINCE_1_0.0
228    * @param[in] initialRows for the table
229    * @param[in] initialColumns for the table
230    * @return A handle to the TableView control.
231    */
232   static TableView New( unsigned int initialRows, unsigned int initialColumns );
233
234   /**
235    * @brief Downcast a handle to TableView handle.
236    *
237    * If handle points to a TableView the
238    * downcast produces valid handle. If not the returned handle is left uninitialized.
239    * @SINCE_1_0.0
240    * @param[in] handle Handle to an object
241    * @return handle to a TableView or an uninitialized handle
242    */
243   static TableView DownCast( BaseHandle handle );
244
245   /**
246    * @brief Adds a child to the table
247    * If the row or column index is outside the table, the table gets resized bigger
248    * @SINCE_1_0.0
249    * @param[in] child to add
250    * @param[in] position for the child
251    * @return true if the addition succeeded, false if the cell is already occupied
252    * @pre The child actor has been initialized.
253    */
254   bool AddChild( Actor child, CellPosition position );
255
256   /**
257    * @brief Returns a child from the given layout position
258    * @SINCE_1_0.0
259    * @param[in] position in the table
260    * @return child that was in the cell or an uninitialized handle
261    * @note If there is no child in this position this method returns an uninitialized.
262    * Actor handle
263    */
264   Actor GetChildAt( CellPosition position );
265
266   /**
267    * @brief Removes a child from the given layout position
268    * @SINCE_1_0.0
269    * @param[in] position for the child to remove
270    * @return child that was removed or an uninitialized handle
271    * @note If there is no child in this position this method does nothing.
272    */
273   Actor RemoveChildAt( CellPosition position );
274
275   /**
276    * @brief Finds the childs layout position
277    * @SINCE_1_0.0
278    * @param[in] child to search for
279    * @param[out] position for the child
280    * @return true if the child was included in this TableView
281    */
282   bool FindChildPosition( Actor child, CellPosition& position );
283
284   /**
285    * @brief Insert a new row to given index
286    * @SINCE_1_0.0
287    * @param [in] rowIndex of the new row
288    */
289   void InsertRow( unsigned int rowIndex );
290
291   /**
292    * @brief Delete a row from given index
293    * Removed elements are deleted
294    * @SINCE_1_0.0
295    * @param [in] rowIndex of the row to delete
296    */
297   void DeleteRow( unsigned int rowIndex );
298
299   /**
300    * @brief Delete a row from given index
301    * @SINCE_1_0.0
302    * @param [in] rowIndex of the row to delete
303    * @param [out] removed elements
304    */
305   void DeleteRow( unsigned int rowIndex, std::vector<Actor>& removed );
306
307   /**
308    * @brief Insert a new column to given index
309    * @SINCE_1_0.0
310    * @param [in] columnIndex of the new column
311    */
312   void InsertColumn( unsigned int columnIndex );
313
314   /**
315    * @brief Delete a column from given index.
316    * Removed elements are deleted
317    * @SINCE_1_0.0
318    * @param [in] columnIndex of the column to delete
319    */
320   void DeleteColumn( unsigned int columnIndex );
321
322   /**
323    * @brief Delete a column from given index
324    * @SINCE_1_0.0
325    * @param [in] columnIndex of the column to delete
326    * @param [out] removed elements
327    */
328   void DeleteColumn( unsigned int columnIndex, std::vector<Actor>& removed );
329
330   /**
331    * @brief Resize the TableView.
332    * @SINCE_1_0.0
333    * @param[in] rows for the table
334    * @param[in] columns for the table
335    * @note If the new size is smaller than old,
336    * superfluous actors get removed. If you want to relayout removed children,
337    * use the variant that returns the removed Actors and reinsert them into the table.
338    * If an actor spans to a removed row or column it gets removed from the table.
339    */
340   void Resize( unsigned int rows, unsigned int columns );
341
342   /**
343    * @brief Resize the TableView.
344    * @SINCE_1_0.0
345    * @param[in] rows for the table
346    * @param[in] columns for the table
347    * @param[out] removed actor handles
348    * @note If the new size is smaller than old,
349    * superfluous actors get removed.
350    * If an actor spans to a removed row or column it gets removed from the table.
351    */
352   void Resize( unsigned int rows, unsigned int columns, std::vector<Actor>& removed );
353
354   /**
355    * @brief Set horizontal and vertical padding between cells
356    * @SINCE_1_0.0
357    * @param[in] padding width and height
358    */
359   void SetCellPadding( Size padding );
360
361   /**
362    * @brief Get the current padding as width and height.
363    * @SINCE_1_0.0
364    * @return the current padding as width and height
365    */
366   Size GetCellPadding();
367
368   /**
369    * @brief Specify this row as fitting its height to its children
370    *
371    * @SINCE_1_0.0
372    * @param[in] rowIndex The row to set
373    */
374   void SetFitHeight( unsigned int rowIndex );
375
376   /**
377    * @brief Is the row a fit row
378    *
379    * @SINCE_1_0.0
380    * @param[in] rowIndex The row to check
381    * @return Return true if the row is fit
382    */
383   bool IsFitHeight( unsigned int rowIndex ) const;
384
385   /**
386    * @brief Specify this column as fitting its width to its children
387    *
388    * @SINCE_1_0.0
389    * @param[in] columnIndex The column to set
390    */
391   void SetFitWidth( unsigned int columnIndex );
392
393   /**
394    * @brief Is the column a fit column
395    *
396    * @SINCE_1_0.0
397    * @param[in] columnIndex The column to check
398    * @return Return true if the column is fit
399    */
400   bool IsFitWidth( unsigned int columnIndex ) const;
401
402   /**
403    * @brief Sets a row to have fixed height
404    * Setting a fixed height of 0 has no effect
405    * @SINCE_1_0.0
406    * @param rowIndex for row with fixed height
407    * @param height in world coordinate units
408    * @pre The row rowIndex must exist.
409    */
410   void SetFixedHeight( unsigned int rowIndex, float height );
411
412   /**
413    * @brief Gets a row's fixed height.
414    * @SINCE_1_0.0
415    * @param[in] rowIndex The row index with fixed height
416    * @return height in world coordinate units.
417    * @pre The row rowIndex must exist.
418    * @note The returned value is valid if it has been set before.
419    */
420   float GetFixedHeight( unsigned int rowIndex ) const;
421
422   /**
423    * @brief Sets a row to have relative height. Relative height means percentage of
424    * the remainder of the table height after subtracting Padding and Fixed height rows
425    * Setting a relative height of 0 has no effect
426    * @SINCE_1_0.0
427    * @param rowIndex for row with relative height
428    * @param heightPercentage between 0.0f and 1.0f
429    * @pre The row rowIndex must exist.
430    */
431   void SetRelativeHeight( unsigned int rowIndex, float heightPercentage );
432
433   /**
434    * @brief Gets a row's relative height.
435    * @SINCE_1_0.0
436    * @param[in] rowIndex The row index with relative height
437    * @return height in percentage units, between 0.0f and 1.0f.
438    * @pre The row rowIndex must exist.
439    * @note The returned value is valid if it has been set before.
440    */
441   float GetRelativeHeight( unsigned int rowIndex ) const;
442
443   /**
444    * @brief Sets a column to have fixed width
445    * Setting a fixed width of 0 has no effect
446    * @SINCE_1_0.0
447    * @param columnIndex for column with fixed width
448    * @param width in world coordinate units
449    * @pre The column columnIndex must exist.
450    */
451   void SetFixedWidth( unsigned int columnIndex, float width );
452
453   /**
454    * @brief Gets a column's fixed width.
455    * @SINCE_1_0.0
456    * @param[in] columnIndex The column index with fixed width
457    * @return width in world coordinate units.
458    * @pre The column columnIndex must exist.
459    * @note The returned value is valid if it has been set before.
460    */
461   float GetFixedWidth( unsigned int columnIndex ) const;
462
463   /**
464    * @brief Sets a column to have relative width. Relative width means percentage of
465    * the remainder of table width after subtracting Padding and Fixed width columns
466    * Setting a relative width of 0 has no effect
467    * @SINCE_1_0.0
468    * @param columnIndex for column with fixed width
469    * @param widthPercentage between 0.0f and 1.0f
470    * @pre The column columnIndex must exist.
471    */
472   void SetRelativeWidth( unsigned int columnIndex, float widthPercentage );
473
474   /**
475    * @brief Gets a column's relative width.
476    * @SINCE_1_0.0
477    * @param[in] columnIndex The column index with relative width
478    * @return width in percentage units, between 0.0f and 1.0f.
479    * @pre The column columnIndex must exist.
480    * @note The returned value is valid if it has been set before.
481    */
482   float GetRelativeWidth( unsigned int columnIndex ) const;
483
484   /**
485    * @brief Gets the amount of rows in the table.
486    * @SINCE_1_0.0
487    * @return the amount of rows in the table
488    */
489   unsigned int GetRows();
490
491   /**
492    * @brief Gets the amount of columns in the table.
493    * @SINCE_1_0.0
494    * @return the amount of columns in the table
495    */
496   unsigned int GetColumns();
497
498   /**
499    * @brief Set the alignment on a cell.
500    *
501    * Cells without calling this function have the default values of LEFT and TOP respectively.
502    *
503    * @SINCE_1_0.0
504    * @param[in] position The cell to set alignment on.
505    * @param[in] horizontal The horizontal alignment.
506    * @param[in] vertical The vertical alignment.
507    */
508   void SetCellAlignment( CellPosition position, HorizontalAlignment::Type horizontal, VerticalAlignment::Type vertical );
509
510 public: // Not intended for application developers
511
512   /// @cond internal
513   /**
514    * @brief Creates a handle using the Toolkit::Internal implementation.
515    * @SINCE_1_0.0
516    * @param[in]  implementation  The Control implementation.
517    */
518   DALI_INTERNAL TableView(Internal::TableView& implementation);
519
520   /**
521    * @brief Allows the creation of this Control from an Internal::CustomActor pointer.
522    * @SINCE_1_0.0
523    * @param[in]  internal  A pointer to the internal CustomActor.
524    */
525   explicit DALI_INTERNAL TableView( Dali::Internal::CustomActor* internal );
526   /// @endcond
527 };
528
529 /**
530  * @}
531  */
532 } // namespace Toolkit
533
534 } // namespace Dali
535
536 #endif // __DALI_TOOLKIT_TABLE_VIEW_H__