[NUI] Public some apis of TableView,Animation,NUIApplication (#483)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / BaseComponents / TableView.cs
1 /*
2  * Copyright(c) 2017 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
18 using System;
19 using System.ComponentModel;
20 using System.Runtime.InteropServices;
21 using Tizen.NUI.Binding;
22
23 namespace Tizen.NUI.BaseComponents
24 {
25
26     /// <summary>
27     /// TableView is a layout container for aligning child actors in a grid like layout.<br />
28     /// TableView constraints the X and the Y position and the width and the height of the child actors.<br />
29     /// The Z position and depth are left intact so that the 3D model actors can also be laid out
30     /// in a grid without loosing their depth scaling.<br />
31     /// </summary>
32     /// <since_tizen> 3 </since_tizen>
33     public class TableView : View
34     {
35         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
36         [EditorBrowsable(EditorBrowsableState.Never)]
37         public static readonly BindableProperty RowsProperty = BindableProperty.Create("Rows", typeof(int), typeof(TableView), default(int), propertyChanged: (bindable, oldValue, newValue) =>
38         {
39             var tableView = (TableView)bindable;
40             if (newValue != null)
41             {
42                 Tizen.NUI.Object.SetProperty(tableView.swigCPtr, TableView.Property.ROWS, new Tizen.NUI.PropertyValue((int)newValue));
43             }
44         },
45         defaultValueCreator:(bindable) =>
46         {
47             var tableView = (TableView)bindable;
48             int temp = 0;
49             Tizen.NUI.Object.GetProperty(tableView.swigCPtr, TableView.Property.ROWS).Get(out temp);
50             return temp;
51         });
52         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
53         [EditorBrowsable(EditorBrowsableState.Never)]
54         public static readonly BindableProperty ColumnsProperty = BindableProperty.Create("Columns", typeof(int), typeof(TableView), default(int), propertyChanged: (bindable, oldValue, newValue) =>
55         {
56             var tableView = (TableView)bindable;
57             if (newValue != null)
58             {
59                 Tizen.NUI.Object.SetProperty(tableView.swigCPtr, TableView.Property.COLUMNS, new Tizen.NUI.PropertyValue((int)newValue));
60             }
61         },
62         defaultValueCreator:(bindable) =>
63         {
64             var tableView = (TableView)bindable;
65             int temp = 0;
66             Tizen.NUI.Object.GetProperty(tableView.swigCPtr, TableView.Property.COLUMNS).Get(out temp);
67             return temp;
68         });
69         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
70         [EditorBrowsable(EditorBrowsableState.Never)]
71         public static readonly BindableProperty CellPaddingProperty = BindableProperty.Create("CellPadding", typeof(Vector2), typeof(TableView), Vector2.Zero, propertyChanged: (bindable, oldValue, newValue) =>
72         {
73             var tableView = (TableView)bindable;
74             if (newValue != null)
75             {
76                 Tizen.NUI.Object.SetProperty(tableView.swigCPtr, TableView.Property.CELL_PADDING, new Tizen.NUI.PropertyValue((Vector2)newValue));
77             }
78         },
79         defaultValueCreator:(bindable) =>
80         {
81             var tableView = (TableView)bindable;
82             Vector2 temp = new Vector2(0.0f, 0.0f);
83             Tizen.NUI.Object.GetProperty(tableView.swigCPtr, TableView.Property.CELL_PADDING).Get(temp);
84             return temp;
85         });
86         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
87         [EditorBrowsable(EditorBrowsableState.Never)]
88         public static readonly BindableProperty LayoutRowsProperty = BindableProperty.Create("LayoutRows", typeof(PropertyMap), typeof(TableView), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
89         {
90             var tableView = (TableView)bindable;
91             if (newValue != null)
92             {
93                 Tizen.NUI.Object.SetProperty(tableView.swigCPtr, TableView.Property.LAYOUT_ROWS, new Tizen.NUI.PropertyValue((PropertyMap)newValue));
94             }
95         },
96         defaultValueCreator:(bindable) =>
97         {
98             var tableView = (TableView)bindable;
99             PropertyMap temp = new PropertyMap();
100             Tizen.NUI.Object.GetProperty(tableView.swigCPtr, TableView.Property.LAYOUT_ROWS).Get(temp);
101             return temp;
102         });
103         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
104         [EditorBrowsable(EditorBrowsableState.Never)]
105         public static readonly BindableProperty LayoutColumnsProperty = BindableProperty.Create("LayoutColumns", typeof(PropertyMap), typeof(TableView), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
106         {
107             var tableView = (TableView)bindable;
108             if (newValue != null)
109             {
110                 Tizen.NUI.Object.SetProperty(tableView.swigCPtr, TableView.Property.LAYOUT_COLUMNS, new Tizen.NUI.PropertyValue((PropertyMap)newValue));
111             }
112         },
113         defaultValueCreator:(bindable) =>
114         {
115             var tableView = (TableView)bindable;
116             PropertyMap temp = new PropertyMap();
117             Tizen.NUI.Object.GetProperty(tableView.swigCPtr, TableView.Property.LAYOUT_COLUMNS).Get(temp);
118             return temp;
119         });
120
121
122         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
123
124         internal TableView(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.TableView_SWIGUpcast(cPtr), cMemoryOwn)
125         {
126             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
127         }
128
129         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(TableView obj)
130         {
131             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
132         }
133
134         /// <summary>
135         /// Dispose
136         /// </summary>
137         /// <param name="type">The dispose type</param>
138         /// <since_tizen> 3 </since_tizen>
139         protected override void Dispose(DisposeTypes type)
140         {
141             if (disposed)
142             {
143                 return;
144             }
145
146             if (type == DisposeTypes.Explicit)
147             {
148                 //Called by User
149                 //Release your own managed resources here.
150                 //You should release all of your own disposable objects here.
151             }
152
153             //Release your own unmanaged resources here.
154             //You should not access any managed member here except static instance.
155             //because the execution order of Finalizes is non-deterministic.
156
157             if (swigCPtr.Handle != global::System.IntPtr.Zero)
158             {
159                 if (swigCMemOwn)
160                 {
161                     swigCMemOwn = false;
162                     NDalicPINVOKE.delete_TableView(swigCPtr);
163                 }
164                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
165             }
166
167             base.Dispose(type);
168         }
169
170
171         internal new class Property
172         {
173             internal static readonly int ROWS = NDalicPINVOKE.TableView_Property_ROWS_get();
174             internal static readonly int COLUMNS = NDalicPINVOKE.TableView_Property_COLUMNS_get();
175             internal static readonly int CELL_PADDING = NDalicPINVOKE.TableView_Property_CELL_PADDING_get();
176             internal static readonly int LAYOUT_ROWS = NDalicPINVOKE.TableView_Property_LAYOUT_ROWS_get();
177             internal static readonly int LAYOUT_COLUMNS = NDalicPINVOKE.TableView_Property_LAYOUT_COLUMNS_get();
178         }
179
180         internal class ChildProperty
181         {
182             internal static readonly int CELL_INDEX = NDalicPINVOKE.TableView_ChildProperty_CELL_INDEX_get();
183             internal static readonly int ROW_SPAN = NDalicPINVOKE.TableView_ChildProperty_ROW_SPAN_get();
184             internal static readonly int COLUMN_SPAN = NDalicPINVOKE.TableView_ChildProperty_COLUMN_SPAN_get();
185             internal static readonly int CELL_HORIZONTAL_ALIGNMENT = NDalicPINVOKE.TableView_ChildProperty_CELL_HORIZONTAL_ALIGNMENT_get();
186             internal static readonly int CELL_VERTICAL_ALIGNMENT = NDalicPINVOKE.TableView_ChildProperty_CELL_VERTICAL_ALIGNMENT_get();
187         }
188
189         /// <summary>
190         /// Class to specify the layout position for the child view.
191         /// </summary>
192         /// <since_tizen> 3 </since_tizen>
193         public class CellPosition : global::System.IDisposable
194         {
195             private global::System.Runtime.InteropServices.HandleRef swigCPtr;
196             /// <summary>
197             /// swigCMemOwn
198             /// </summary>
199             /// <since_tizen> 3 </since_tizen>
200             protected bool swigCMemOwn;
201
202             internal CellPosition(global::System.IntPtr cPtr, bool cMemoryOwn)
203             {
204                 swigCMemOwn = cMemoryOwn;
205                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
206             }
207
208             internal static global::System.Runtime.InteropServices.HandleRef getCPtr(CellPosition obj)
209             {
210                 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
211             }
212
213             //A Flag to check who called Dispose(). (By User or DisposeQueue)
214             private bool isDisposeQueued = false;
215             /// <summary>
216             /// A Flat to check if it is already disposed.
217             /// </summary>
218             /// <since_tizen> 3 </since_tizen>
219             protected bool disposed = false;
220
221             /// <summary>
222             /// Dispose.
223             /// </summary>
224             /// <since_tizen> 3 </since_tizen>
225             ~CellPosition()
226             {
227                 if (!isDisposeQueued)
228                 {
229                     isDisposeQueued = true;
230                     DisposeQueue.Instance.Add(this);
231                 }
232             }
233
234             /// <summary>
235             /// Dispose.
236             /// </summary>
237             /// <since_tizen> 3 </since_tizen>
238             public void Dispose()
239             {
240                 //Throw excpetion if Dispose() is called in separate thread.
241                 if (!Window.IsInstalled())
242                 {
243                     throw new System.InvalidOperationException("This API called from separate thread. This API must be called from MainThread.");
244                 }
245
246                 if (isDisposeQueued)
247                 {
248                     Dispose(DisposeTypes.Implicit);
249                 }
250                 else
251                 {
252                     Dispose(DisposeTypes.Explicit);
253                     System.GC.SuppressFinalize(this);
254                 }
255             }
256
257             /// <summary>
258             /// Dispose.
259             /// </summary>
260             /// <param name="type">DisposeTypes</param>
261             /// <since_tizen> 3 </since_tizen>
262             protected virtual void Dispose(DisposeTypes type)
263             {
264                 if (disposed)
265                 {
266                     return;
267                 }
268
269                 if (type == DisposeTypes.Explicit)
270                 {
271                     //Called by User
272                     //Release your own managed resources here.
273                     //You should release all of your own disposable objects here.
274                 }
275
276                 //Release your own unmanaged resources here.
277                 //You should not access any managed member here except static instance.
278                 //because the execution order of Finalizes is non-deterministic.
279
280                 if (swigCPtr.Handle != global::System.IntPtr.Zero)
281                 {
282                     if (swigCMemOwn)
283                     {
284                         swigCMemOwn = false;
285                         NDalicPINVOKE.delete_TableView_CellPosition(swigCPtr);
286                     }
287                     swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
288                 }
289                 disposed = true;
290             }
291
292             /// <summary>
293             /// The constructor.
294             /// </summary>
295             /// <param name="rowIndex">The row index initialized.</param>
296             /// <param name="columnIndex">The column index initialized.</param>
297             /// <param name="rowSpan">The row span initialized.</param>
298             /// <param name="columnSpan">The column span initialized.</param>
299             /// <since_tizen> 3 </since_tizen>
300             public CellPosition(uint rowIndex, uint columnIndex, uint rowSpan, uint columnSpan) : this(NDalicPINVOKE.new_TableView_CellPosition__SWIG_0(rowIndex, columnIndex, rowSpan, columnSpan), true)
301             {
302                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
303             }
304
305             /// <summary>
306             /// The constructor to initialize values to defaults for convenience.
307             /// </summary>
308             /// <param name="rowIndex">The row index initialized.</param>
309             /// <param name="columnIndex">The column index initialized.</param>
310             /// <param name="rowSpan">The row span initialized.</param>
311             /// <since_tizen> 3 </since_tizen>
312             public CellPosition(uint rowIndex, uint columnIndex, uint rowSpan) : this(NDalicPINVOKE.new_TableView_CellPosition__SWIG_1(rowIndex, columnIndex, rowSpan), true)
313             {
314                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
315             }
316
317             /// <summary>
318             /// The constructor to initialize values to defaults for convenience.
319             /// </summary>
320             /// <param name="rowIndex">The row index initialized.</param>
321             /// <param name="columnIndex">The column index initialized.</param>
322             /// <since_tizen> 3 </since_tizen>
323             public CellPosition(uint rowIndex, uint columnIndex) : this(NDalicPINVOKE.new_TableView_CellPosition__SWIG_2(rowIndex, columnIndex), true)
324             {
325                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
326             }
327
328             /// <summary>
329             /// The constructor to initialize values to default for convenience.
330             /// </summary>
331             /// <param name="rowIndex">The row index initialized.</param>
332             /// <since_tizen> 3 </since_tizen>
333             public CellPosition(uint rowIndex) : this(NDalicPINVOKE.new_TableView_CellPosition__SWIG_3(rowIndex), true)
334             {
335                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
336             }
337
338             /// <summary>
339             /// The default constructor.
340             /// </summary>
341             /// <since_tizen> 3 </since_tizen>
342             public CellPosition() : this(NDalicPINVOKE.new_TableView_CellPosition__SWIG_4(), true)
343             {
344                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
345             }
346
347             /// <summary>
348             /// The index of a row.
349             /// </summary>
350             /// <since_tizen> 3 </since_tizen>
351             [Obsolete("Please do not use! This will be deprecated! Please use RowIndex instead!")]
352             [EditorBrowsable(EditorBrowsableState.Never)]
353             public uint rowIndex
354             {
355                 set
356                 {
357                     NDalicPINVOKE.TableView_CellPosition_rowIndex_set(swigCPtr, value);
358                     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
359                 }
360                 get
361                 {
362                     uint ret = NDalicPINVOKE.TableView_CellPosition_rowIndex_get(swigCPtr);
363                     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
364                     return ret;
365                 }
366             }
367
368             /// <summary>
369             /// The index or position of a row.
370             /// </summary>
371             /// <since_tizen> 5 </since_tizen>
372             public uint RowIndex
373             {
374                 get
375                 {
376                     uint ret = NDalicPINVOKE.TableView_CellPosition_rowIndex_get(swigCPtr);
377                     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
378                     return ret;
379                 }
380             }
381
382
383             /// <summary>
384             /// The index of a column.
385             /// </summary>
386             /// <since_tizen> 3 </since_tizen>
387             [Obsolete("Please do not use! This will be deprecated! Please use ColumnIndex instead!")]
388             [EditorBrowsable(EditorBrowsableState.Never)]
389             public uint columnIndex
390             {
391                 set
392                 {
393                     NDalicPINVOKE.TableView_CellPosition_columnIndex_set(swigCPtr, value);
394                     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
395                 }
396                 get
397                 {
398                     uint ret = NDalicPINVOKE.TableView_CellPosition_columnIndex_get(swigCPtr);
399                     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
400                     return ret;
401                 }
402             }
403
404             /// <summary>
405             /// The index or position of a column.
406             /// </summary>
407             /// <since_tizen> 5 </since_tizen>
408             public uint ColumnIndex
409             {
410                 get
411                 {
412                     uint ret = NDalicPINVOKE.TableView_CellPosition_columnIndex_get(swigCPtr);
413                     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
414                     return ret;
415                 }
416             }
417
418             /// <summary>
419             /// The span of a row.
420             /// </summary>
421             /// <since_tizen> 3 </since_tizen>
422             [Obsolete("Please do not use! This will be deprecated! Please use RowSpan instead!")]
423             [EditorBrowsable(EditorBrowsableState.Never)]
424             public uint rowSpan
425             {
426                 set
427                 {
428                     NDalicPINVOKE.TableView_CellPosition_rowSpan_set(swigCPtr, value);
429                     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
430                 }
431                 get
432                 {
433                     uint ret = NDalicPINVOKE.TableView_CellPosition_rowSpan_get(swigCPtr);
434                     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
435                     return ret;
436                 }
437             }
438
439             /// <summary>
440             /// The span of a row.
441             /// </summary>
442             /// <since_tizen> 5 </since_tizen>
443             public uint RowSpan
444             {
445                 get
446                 {
447                     uint ret = NDalicPINVOKE.TableView_CellPosition_rowSpan_get(swigCPtr);
448                     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
449                     return ret;
450                 }
451             }
452
453             /// <summary>
454             /// The span of a column.
455             /// </summary>
456             /// <since_tizen> 3 </since_tizen>
457             [Obsolete("Please do not use! This will be deprecated! Please use ColumnSpan instead!")]
458             [EditorBrowsable(EditorBrowsableState.Never)]
459             public uint columnSpan
460             {
461                 set
462                 {
463                     NDalicPINVOKE.TableView_CellPosition_columnSpan_set(swigCPtr, value);
464                     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
465                 }
466                 get
467                 {
468                     uint ret = NDalicPINVOKE.TableView_CellPosition_columnSpan_get(swigCPtr);
469                     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
470                     return ret;
471                 }
472             }
473
474             /// <summary>
475             /// The span of a column.
476             /// </summary>
477             /// <since_tizen> 5 </since_tizen>
478             public uint ColumnSpan
479             {
480                 get
481                 {
482                     uint ret = NDalicPINVOKE.TableView_CellPosition_columnSpan_get(swigCPtr);
483                     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
484                     return ret;
485                 }
486             }
487
488
489         }
490
491         /// <summary>
492         /// Creates the default TableView view.
493         /// </summary>
494         public TableView() : this(NDalicPINVOKE.TableView_New(1, 1), true)
495         {
496             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
497         }
498
499         /// <summary>
500         /// Creates the TableView view.
501         /// </summary>
502         /// <param name="initialRows">Initial rows for the table.</param>
503         /// <param name="initialColumns">Initial columns for the table.</param>
504         /// <since_tizen> 3 </since_tizen>
505         public TableView(uint initialRows, uint initialColumns) : this(NDalicPINVOKE.TableView_New(initialRows, initialColumns), true)
506         {
507             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
508
509         }
510
511         /// <summary>
512         /// The Copy constructor. Creates another handle that points to the same real object.
513         /// </summary>
514         /// <param name="handle">Handle to copy from.</param>
515         /// <since_tizen> 3 </since_tizen>
516         public TableView(TableView handle) : this(NDalicPINVOKE.new_TableView__SWIG_1(TableView.getCPtr(handle)), true)
517         {
518             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
519         }
520
521         /// <summary>
522         /// Adds a child to the table.<br />
523         /// If the row or column index is outside the table, the table gets resized bigger.<br />
524         /// </summary>
525         /// <param name="child">The child to add.</param>
526         /// <param name="position">The position for the child.</param>
527         /// <returns>True if the addition succeeded, and false if the cell is already occupied.</returns>
528         /// <since_tizen> 3 </since_tizen>
529         public bool AddChild(View child, TableView.CellPosition position)
530         {
531             bool ret = NDalicPINVOKE.TableView_AddChild(swigCPtr, View.getCPtr(child), TableView.CellPosition.getCPtr(position));
532             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
533             return ret;
534         }
535
536         /// <summary>
537         /// Returns a child from the given layout position.
538         /// </summary>
539         /// <param name="position">The position in the table.</param>
540         /// <returns>Child that was in the cell or an uninitialized handle.</returns>
541         /// <since_tizen> 3 </since_tizen>
542         public View GetChildAt(TableView.CellPosition position)
543         {
544             //to fix memory leak issue, match the handle count with native side.
545             IntPtr cPtr = NDalicPINVOKE.TableView_GetChildAt(swigCPtr, TableView.CellPosition.getCPtr(position));
546             HandleRef CPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
547             View ret = Registry.GetManagedBaseHandleFromNativePtr(CPtr.Handle) as View;
548             NDalicPINVOKE.delete_BaseHandle(CPtr);
549             CPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
550
551             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
552             return ret;
553         }
554
555         /// <summary>
556         /// Removes a child from the given layout position.
557         /// </summary>
558         /// <param name="position">The position for the child to remove.</param>
559         /// <returns>Child that was removed or an uninitialized handle.</returns>
560         /// <since_tizen> 3 </since_tizen>
561         public View RemoveChildAt(TableView.CellPosition position)
562         {
563             //to fix memory leak issue, match the handle count with native side.
564             IntPtr cPtr = NDalicPINVOKE.TableView_RemoveChildAt(swigCPtr, TableView.CellPosition.getCPtr(position));
565             HandleRef CPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
566             View ret = Registry.GetManagedBaseHandleFromNativePtr(CPtr.Handle) as View;
567             NDalicPINVOKE.delete_BaseHandle(CPtr);
568             CPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
569
570             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
571             return ret;
572         }
573
574         /// <summary>
575         /// Finds the child's layout position.
576         /// </summary>
577         /// <param name="child">The child to search for.</param>
578         /// <param name="position">The position for the child.</param>
579         /// <returns>True if the child was included in this TableView.</returns>
580         /// <since_tizen> 3 </since_tizen>
581         public bool FindChildPosition(View child, TableView.CellPosition position)
582         {
583             bool ret = NDalicPINVOKE.TableView_FindChildPosition(swigCPtr, View.getCPtr(child), TableView.CellPosition.getCPtr(position));
584             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
585             return ret;
586         }
587
588         /// <summary>
589         /// Inserts a new row to the given index.
590         /// </summary>
591         /// <param name="rowIndex">The rowIndex of the new row.</param>
592         /// <since_tizen> 3 </since_tizen>
593         public void InsertRow(uint rowIndex)
594         {
595             NDalicPINVOKE.TableView_InsertRow(swigCPtr, rowIndex);
596             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
597         }
598
599         /// <summary>
600         /// Deletes a row from the given index.<br />
601         /// Removed elements are deleted.<br />
602         /// </summary>
603         /// <param name="rowIndex">The rowIndex of the row to delete.</param>
604         /// <since_tizen> 3 </since_tizen>
605         public void DeleteRow(uint rowIndex)
606         {
607             NDalicPINVOKE.TableView_DeleteRow__SWIG_0(swigCPtr, rowIndex);
608             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
609         }
610
611         /// <summary>
612         /// Inserts a new column to the given index.
613         /// </summary>
614         /// <param name="columnIndex">The columnIndex of the new column.</param>
615         /// <since_tizen> 3 </since_tizen>
616         public void InsertColumn(uint columnIndex)
617         {
618             NDalicPINVOKE.TableView_InsertColumn(swigCPtr, columnIndex);
619             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
620         }
621
622         /// <summary>
623         /// Deletes a column from the given index.<br />
624         /// Removed elements are deleted.<br />
625         /// </summary>
626         /// <param name="columnIndex">The columnIndex of the column to delete.</param>
627         /// <since_tizen> 3 </since_tizen>
628         public void DeleteColumn(uint columnIndex)
629         {
630             NDalicPINVOKE.TableView_DeleteColumn__SWIG_0(swigCPtr, columnIndex);
631             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
632         }
633
634         /// <summary>
635         /// Resizes the TableView.
636         /// </summary>
637         /// <param name="rows">The rows for the table.</param>
638         /// <param name="columns">The columns for the table.</param>
639         /// <since_tizen> 3 </since_tizen>
640         public void Resize(uint rows, uint columns)
641         {
642             NDalicPINVOKE.TableView_Resize__SWIG_0(swigCPtr, rows, columns);
643             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
644         }
645
646         /// <summary>
647         /// Sets the horizontal and the vertical padding between cells.
648         /// </summary>
649         /// <param name="padding">Width and height.</param>
650         /// <since_tizen> 3 </since_tizen>
651         public void SetCellPadding(Size2D padding)
652         {
653             NDalicPINVOKE.TableView_SetCellPadding(swigCPtr, Size2D.getCPtr(padding));
654             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
655         }
656
657         /// <summary>
658         /// Gets the current padding as width and height.
659         /// </summary>
660         /// <returns>The current padding as width and height.</returns>
661         /// <since_tizen> 3 </since_tizen>
662         public Vector2 GetCellPadding()
663         {
664             Vector2 ret = new Vector2(NDalicPINVOKE.TableView_GetCellPadding(swigCPtr), true);
665             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
666             return ret;
667         }
668
669         /// <summary>
670         /// Specifies this row as fitting its height to its children.
671         /// </summary>
672         /// <param name="rowIndex">The row to set.</param>
673         /// <since_tizen> 3 </since_tizen>
674         public void SetFitHeight(uint rowIndex)
675         {
676             NDalicPINVOKE.TableView_SetFitHeight(swigCPtr, rowIndex);
677             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
678         }
679
680         /// <summary>
681         /// Checks if the row is a fit row.
682         /// </summary>
683         /// <param name="rowIndex">The row to check.</param>
684         /// <returns>True if the row is fit.</returns>
685         /// <since_tizen> 3 </since_tizen>
686         public bool IsFitHeight(uint rowIndex)
687         {
688             bool ret = NDalicPINVOKE.TableView_IsFitHeight(swigCPtr, rowIndex);
689             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
690             return ret;
691         }
692
693         /// <summary>
694         /// Specifies this column as fitting its width to its children.
695         /// </summary>
696         /// <param name="columnIndex">The column to set.</param>
697         /// <since_tizen> 3 </since_tizen>
698         public void SetFitWidth(uint columnIndex)
699         {
700             NDalicPINVOKE.TableView_SetFitWidth(swigCPtr, columnIndex);
701             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
702         }
703
704         /// <summary>
705         /// Checks if the column is a fit column.
706         /// </summary>
707         /// <param name="columnIndex">The column to check.</param>
708         /// <returns>True if the column is fit.</returns>
709         /// <since_tizen> 3 </since_tizen>
710         public bool IsFitWidth(uint columnIndex)
711         {
712             bool ret = NDalicPINVOKE.TableView_IsFitWidth(swigCPtr, columnIndex);
713             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
714             return ret;
715         }
716
717         /// <summary>
718         /// Sets a row to have a fixed height.<br />
719         /// Setting a fixed height of 0 has no effect.<br />
720         /// </summary>
721         /// <param name="rowIndex">The rowIndex for row with a fixed height.</param>
722         /// <param name="height">The height in world coordinate units.</param>
723         /// <since_tizen> 3 </since_tizen>
724         public void SetFixedHeight(uint rowIndex, float height)
725         {
726             NDalicPINVOKE.TableView_SetFixedHeight(swigCPtr, rowIndex, height);
727             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
728         }
729
730         /// <summary>
731         /// Gets a row's fixed height.
732         /// </summary>
733         /// <param name="rowIndex">The row index with a fixed height.</param>
734         /// <returns>height The height in world coordinate units.</returns>
735         /// <since_tizen> 3 </since_tizen>
736         public float GetFixedHeight(uint rowIndex)
737         {
738             float ret = NDalicPINVOKE.TableView_GetFixedHeight(swigCPtr, rowIndex);
739             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
740             return ret;
741         }
742
743         /// <summary>
744         /// Sets a row to have a relative height. Relative height means percentage of
745         /// the remainder of the table height after subtracting padding and fixed height rows.<br />
746         /// Setting a relative height of 0 has no effect.<br />
747         /// </summary>
748         /// <param name="rowIndex">The rowIndex for row with a relative height.</param>
749         /// <param name="heightPercentage">The height percentage between 0.0f and 1.0f.</param>
750         /// <since_tizen> 3 </since_tizen>
751         public void SetRelativeHeight(uint rowIndex, float heightPercentage)
752         {
753             NDalicPINVOKE.TableView_SetRelativeHeight(swigCPtr, rowIndex, heightPercentage);
754             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
755         }
756
757         /// <summary>
758         /// Gets a row's relative height.
759         /// </summary>
760         /// <param name="rowIndex">The row index with a relative height.</param>
761         /// <returns>Height in percentage units, between 0.0f and 1.0f.</returns>
762         /// <since_tizen> 3 </since_tizen>
763         public float GetRelativeHeight(uint rowIndex)
764         {
765             float ret = NDalicPINVOKE.TableView_GetRelativeHeight(swigCPtr, rowIndex);
766             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
767             return ret;
768         }
769
770         /// <summary>
771         /// Sets a column to have a fixed width.<br />
772         /// Setting a fixed width of 0 has no effect.<br />
773         /// </summary>
774         /// <param name="columnIndex">The columnIndex for column with a fixed width.</param>
775         /// <param name="width">The width in world coordinate units.</param>
776         /// <since_tizen> 3 </since_tizen>
777         public void SetFixedWidth(uint columnIndex, float width)
778         {
779             NDalicPINVOKE.TableView_SetFixedWidth(swigCPtr, columnIndex, width);
780             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
781         }
782
783         /// <summary>
784         /// Gets a column's fixed width.
785         /// </summary>
786         /// <param name="columnIndex">The column index with a fixed width.</param>
787         /// <returns>Width in world coordinate units.</returns>
788         /// <since_tizen> 3 </since_tizen>
789         public float GetFixedWidth(uint columnIndex)
790         {
791             float ret = NDalicPINVOKE.TableView_GetFixedWidth(swigCPtr, columnIndex);
792             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
793             return ret;
794         }
795
796         /// <summary>
797         /// Sets a column to have a relative width. Relative width means percentage of
798         /// the remainder of the table width after subtracting padding and fixed width columns.<br />
799         /// Setting a relative width of 0 has no effect.<br />
800         /// </summary>
801         /// <param name="columnIndex">The columnIndex for column with a fixed width.</param>
802         /// <param name="widthPercentage">The widthPercentage between 0.0f and 1.0f.</param>
803         /// <since_tizen> 3 </since_tizen>
804         public void SetRelativeWidth(uint columnIndex, float widthPercentage)
805         {
806             NDalicPINVOKE.TableView_SetRelativeWidth(swigCPtr, columnIndex, widthPercentage);
807             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
808         }
809
810         /// <summary>
811         /// Gets a column's relative width.
812         /// </summary>
813         /// <param name="columnIndex">The column index with a relative width.</param>
814         /// <returns>Width in percentage units, between 0.0f and 1.0f.</returns>
815         /// <since_tizen> 3 </since_tizen>
816         public float GetRelativeWidth(uint columnIndex)
817         {
818             float ret = NDalicPINVOKE.TableView_GetRelativeWidth(swigCPtr, columnIndex);
819             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
820             return ret;
821         }
822
823         /// <summary>
824         /// Sets the alignment on a cell.<br />
825         /// Cells without calling this function have the default values of left and top respectively.<br />
826         /// </summary>
827         /// <param name="position">The cell to set alignment on.</param>
828         /// <param name="horizontal">The horizontal alignment.</param>
829         /// <param name="vertical">The vertical alignment.</param>
830         /// <since_tizen> 3 </since_tizen>
831         public void SetCellAlignment(TableView.CellPosition position, HorizontalAlignmentType horizontal, VerticalAlignmentType vertical)
832         {
833             NDalicPINVOKE.TableView_SetCellAlignment(swigCPtr, TableView.CellPosition.getCPtr(position), (int)horizontal, (int)vertical);
834             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
835         }
836
837         /// <summary>
838         /// Enumeration for describing how the size of a row or column has been set.
839         /// </summary>
840         /// <since_tizen> 3 </since_tizen>
841         public enum LayoutPolicy
842         {
843             /// <summary>
844             /// Fixed with the given value.
845             /// </summary>
846             /// <since_tizen> 3 </since_tizen>
847             Fixed,
848             /// <summary>
849             /// Calculated as percentage of the remainder after subtracting Padding and Fixed height/width.
850             /// </summary>
851             /// <since_tizen> 3 </since_tizen>
852             Relative,
853             /// <summary>
854             ///  Default policy, get the remainder of the 100% (after subtracting Fixed, Fit and Relative height/ width) divided evenly between 'fill' rows/columns.
855             /// </summary>
856             /// <since_tizen> 3 </since_tizen>
857             Fill,
858             /// <summary>
859             /// Fit around its children.
860             /// </summary>
861             /// <since_tizen> 3 </since_tizen>
862             Fit
863         }
864
865         /// <summary>
866         /// The amount of rows in the table.
867         /// </summary>
868         /// <since_tizen> 3 </since_tizen>
869         public int Rows
870         {
871             get
872             {
873                 return (int)GetValue(RowsProperty);
874             }
875             set
876             {
877                 SetValue(RowsProperty, value);
878                 NotifyPropertyChanged();
879             }
880         }
881         /// <summary>
882         /// The amount of columns in the table.
883         /// </summary>
884         /// <since_tizen> 3 </since_tizen>
885         public int Columns
886         {
887             get
888             {
889                 return (int)GetValue(ColumnsProperty);
890             }
891             set
892             {
893                 SetValue(ColumnsProperty, value);
894                 NotifyPropertyChanged();
895             }
896         }
897         /// <summary>
898         /// Padding between cells.
899         /// </summary>
900         /// <since_tizen> 3 </since_tizen>
901         public Vector2 CellPadding
902         {
903             get
904             {
905                 return (Vector2)GetValue(CellPaddingProperty);
906             }
907             set
908             {
909                 SetValue(CellPaddingProperty, value);
910                 NotifyPropertyChanged();
911             }
912         }
913
914         /// <summary>
915         /// The number of layout rows.
916         /// </summary>
917         /// <since_tizen> 3 </since_tizen>
918         public PropertyMap LayoutRows
919         {
920             get
921             {
922                 return (PropertyMap)GetValue(LayoutRowsProperty);
923             }
924             set
925             {
926                 SetValue(LayoutRowsProperty, value);
927                 NotifyPropertyChanged();
928             }
929         }
930
931         /// <summary>
932         /// The number of layout columns.
933         /// </summary>
934         /// <since_tizen> 3 </since_tizen>
935         public PropertyMap LayoutColumns
936         {
937             get
938             {
939                 return (PropertyMap)GetValue(LayoutColumnsProperty);
940             }
941             set
942             {
943                 SetValue(LayoutColumnsProperty, value);
944                 NotifyPropertyChanged();
945             }
946         }
947
948     }
949 }