[NUI] Make Size and NaturalSize as public API (#423)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / BaseComponents / View.cs
1 /*
2  * Copyright(c) 2018 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17 using System;
18 using System.ComponentModel;
19 using System.Runtime.InteropServices;
20 using Tizen.NUI.Binding;
21
22 namespace Tizen.NUI.BaseComponents
23 {
24     /// <summary>
25     /// View is the base class for all views.
26     /// </summary>
27     /// <since_tizen> 3 </since_tizen>
28     public class View : Container, IResourcesProvider
29     {
30         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
31         [EditorBrowsable(EditorBrowsableState.Never)]
32         public bool IsResourcesCreated
33         {
34             get
35             {
36                 return Application.Current.IsResourcesCreated;
37             }
38         }
39
40         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
41         [EditorBrowsable(EditorBrowsableState.Never)]
42         public ResourceDictionary XamlResources
43         {
44             get
45             {
46                 return Application.Current.XamlResources;
47             }
48             set
49             {
50                 Application.Current.XamlResources = value;
51             }
52         }
53
54         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
55         [EditorBrowsable(EditorBrowsableState.Never)]
56         public static readonly BindableProperty StyleNameProperty = BindableProperty.Create("StyleName", typeof(string), typeof(View), string.Empty, propertyChanged: (bindable, oldValue, newValue) =>
57         {
58             var view = (View)bindable;
59             if (newValue != null)
60             {
61                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.STYLE_NAME, new Tizen.NUI.PropertyValue((string)newValue));
62             }
63         },
64         defaultValueCreator:(bindable) =>
65         {
66             var view = (View)bindable;
67             string temp;
68             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.STYLE_NAME).Get(out temp);
69             return temp;
70         });
71         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
72         [EditorBrowsable(EditorBrowsableState.Never)]
73         public static readonly BindableProperty BackgroundColorProperty = BindableProperty.Create("BackgroundColor", typeof(Color), typeof(View), Color.Transparent, propertyChanged: (bindable, oldValue, newValue) =>
74         {
75             var view = (View)bindable;
76             if (newValue != null)
77             {
78                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.BACKGROUND, new Tizen.NUI.PropertyValue((Color)newValue));
79             }
80         },
81         defaultValueCreator:(bindable) =>
82         {
83             var view = (View)bindable;
84             Color backgroundColor = new Color(0.0f, 0.0f, 0.0f, 0.0f);
85
86             Tizen.NUI.PropertyMap background = view.Background;
87             int visualType = 0;
88             background.Find(Visual.Property.Type)?.Get(out visualType);
89             if (visualType == (int)Visual.Type.Color)
90             {
91                 background.Find(ColorVisualProperty.MixColor)?.Get(backgroundColor);
92             }
93
94             return backgroundColor;
95         });
96         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
97         [EditorBrowsable(EditorBrowsableState.Never)]
98         public static readonly BindableProperty BackgroundImageProperty = BindableProperty.Create("BackgroundImage", typeof(string), typeof(View), default(string), propertyChanged: (bindable, oldValue, newValue) =>
99         {
100             var view = (View)bindable;
101             if (newValue != null)
102             {
103                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.BACKGROUND, new Tizen.NUI.PropertyValue((string)newValue));
104             }
105         },
106         defaultValueCreator:(bindable) =>
107         {
108             var view = (View)bindable;
109             string backgroundImage = "";
110
111             Tizen.NUI.PropertyMap background = view.Background;
112             int visualType = 0;
113             background.Find(Visual.Property.Type)?.Get(out visualType);
114             if (visualType == (int)Visual.Type.Image)
115             {
116                 background.Find(ImageVisualProperty.URL)?.Get(out backgroundImage);
117             }
118
119             return backgroundImage;
120         });
121         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
122         [EditorBrowsable(EditorBrowsableState.Never)]
123         public static readonly BindableProperty BackgroundProperty = BindableProperty.Create("Background", typeof(PropertyMap), typeof(View), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
124         {
125             var view = (View)bindable;
126             if (newValue != null)
127             {
128                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.BACKGROUND, new Tizen.NUI.PropertyValue((PropertyMap)newValue));
129             }
130         },
131         defaultValueCreator:(bindable) =>
132         {
133             var view = (View)bindable;
134             Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
135             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.BACKGROUND).Get(temp);
136             return temp;
137         });
138         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
139         [EditorBrowsable(EditorBrowsableState.Never)]
140         public static readonly BindableProperty StateProperty = BindableProperty.Create("State", typeof(States), typeof(View), States.Normal, propertyChanged: (bindable, oldValue, newValue) =>
141         {
142             var view = (View)bindable;
143             if (newValue != null)
144             {
145                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.STATE, new Tizen.NUI.PropertyValue((int)newValue));
146             }
147         },
148         defaultValueCreator:(bindable) =>
149         {
150             var view = (View)bindable;
151             int temp = 0;
152             if (Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.STATE).Get(out temp) == false)
153             {
154                 NUILog.Error("State get error!");
155             }
156             switch (temp)
157             {
158                 case 0: return States.Normal;
159                 case 1: return States.Focused;
160                 case 2: return States.Disabled;
161                 default: return States.Normal;
162             }
163         });
164         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
165         [EditorBrowsable(EditorBrowsableState.Never)]
166         public static readonly BindableProperty SubStateProperty = BindableProperty.Create("SubState", typeof(States), typeof(View), States.Normal, propertyChanged: (bindable, oldValue, newValue) =>
167         {
168             var view = (View)bindable;
169             string valueToString = "";
170             if (newValue != null)
171             {
172                 switch ((States)newValue)
173                 {
174                     case States.Normal: { valueToString = "NORMAL"; break; }
175                     case States.Focused: { valueToString = "FOCUSED"; break; }
176                     case States.Disabled:   { valueToString = "DISABLED"; break; }
177                     default: { valueToString = "NORMAL"; break; }
178                 }
179                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.SUB_STATE, new Tizen.NUI.PropertyValue(valueToString));
180             }
181         },
182         defaultValueCreator:(bindable) =>
183         {
184             var view = (View)bindable;
185             string temp;
186             if (Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.SUB_STATE).Get(out temp) == false)
187             {
188                 NUILog.Error("subState get error!");
189             }
190             switch (temp)
191             {
192                 case "NORMAL": return States.Normal;
193                 case "FOCUSED": return States.Focused;
194                 case "DISABLED": return States.Disabled;
195                 default: return States.Normal;
196             }
197         });
198         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
199         [EditorBrowsable(EditorBrowsableState.Never)]
200         public static readonly BindableProperty TooltipProperty = BindableProperty.Create("Tooltip", typeof(PropertyMap), typeof(View), new PropertyMap(), propertyChanged: (bindable, oldValue, newValue) =>
201         {
202             var view = (View)bindable;
203             if (newValue != null)
204             {
205                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.TOOLTIP, new Tizen.NUI.PropertyValue((PropertyMap)newValue));
206             }
207         },
208         defaultValueCreator:(bindable) =>
209         {
210             var view = (View)bindable;
211             Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
212             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.TOOLTIP).Get(temp);
213             return temp;
214         });
215         // public static readonly BindableProperty TooltipTextProperty = BindableProperty.Create("TooltipText", typeof(string), typeof(View), default(string), propertyChanged: (bindable, oldValue, newValue) =>
216         // {
217         //     var view = (View)bindable;
218         //     if (newValue != null)
219         //     {
220         //         Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.TOOLTIP, new Tizen.NUI.PropertyValue((string)newValue));
221         //     }
222         // });
223         public static readonly BindableProperty FlexProperty = BindableProperty.Create("Flex", typeof(float), typeof(View), default(float), propertyChanged: (bindable, oldValue, newValue) =>
224         {
225             var view = (View)bindable;
226             if (newValue != null)
227             {
228                 Tizen.NUI.Object.SetProperty(view.swigCPtr, FlexContainer.ChildProperty.FLEX, new Tizen.NUI.PropertyValue((float)newValue));
229             }
230         },
231         defaultValueCreator:(bindable) =>
232         {
233             var view = (View)bindable;
234             float temp = 0.0f;
235             Tizen.NUI.Object.GetProperty(view.swigCPtr, FlexContainer.ChildProperty.FLEX).Get(out temp);
236             return temp;
237         });
238         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
239         [EditorBrowsable(EditorBrowsableState.Never)]
240         public static readonly BindableProperty AlignSelfProperty = BindableProperty.Create("AlignSelf", typeof(int), typeof(View), default(int), propertyChanged: (bindable, oldValue, newValue) =>
241         {
242             var view = (View)bindable;
243             if (newValue != null)
244             {
245                 Tizen.NUI.Object.SetProperty(view.swigCPtr, FlexContainer.ChildProperty.ALIGN_SELF, new Tizen.NUI.PropertyValue((int)newValue));
246             }
247         },
248         defaultValueCreator:(bindable) =>
249         {
250             var view = (View)bindable;
251             int temp = 0;
252             Tizen.NUI.Object.GetProperty(view.swigCPtr, FlexContainer.ChildProperty.ALIGN_SELF).Get(out temp);
253             return temp;
254         });
255         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
256         [EditorBrowsable(EditorBrowsableState.Never)]
257         public static readonly BindableProperty FlexMarginProperty = BindableProperty.Create("FlexMargin", typeof(Vector4), typeof(View), Vector4.Zero, propertyChanged: (bindable, oldValue, newValue) =>
258         {
259             var view = (View)bindable;
260             if (newValue != null)
261             {
262                 Tizen.NUI.Object.SetProperty(view.swigCPtr, FlexContainer.ChildProperty.FLEX_MARGIN, new Tizen.NUI.PropertyValue((Vector4)newValue));
263             }
264         },
265         defaultValueCreator:(bindable) =>
266         {
267             var view = (View)bindable;
268             Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
269             Tizen.NUI.Object.GetProperty(view.swigCPtr, FlexContainer.ChildProperty.FLEX_MARGIN).Get(temp);
270             return temp;
271         });
272         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
273         [EditorBrowsable(EditorBrowsableState.Never)]
274         public static readonly BindableProperty CellIndexProperty = BindableProperty.Create("CellIndex", typeof(Vector2), typeof(View), Vector2.Zero, propertyChanged: (bindable, oldValue, newValue) =>
275         {
276             var view = (View)bindable;
277             if (newValue != null)
278             {
279                 Tizen.NUI.Object.SetProperty(view.swigCPtr, TableView.ChildProperty.CELL_INDEX, new Tizen.NUI.PropertyValue((Vector2)newValue));
280             }
281         },
282         defaultValueCreator:(bindable) =>
283         {
284             var view = (View)bindable;
285             Vector2 temp = new Vector2(0.0f, 0.0f);
286             Tizen.NUI.Object.GetProperty(view.swigCPtr, TableView.ChildProperty.CELL_INDEX).Get(temp);
287             return temp;
288         });
289         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
290         [EditorBrowsable(EditorBrowsableState.Never)]
291         public static readonly BindableProperty RowSpanProperty = BindableProperty.Create("RowSpan", typeof(float), typeof(View), default(float), propertyChanged: (bindable, oldValue, newValue) =>
292         {
293             var view = (View)bindable;
294             if (newValue != null)
295             {
296                 Tizen.NUI.Object.SetProperty(view.swigCPtr, TableView.ChildProperty.ROW_SPAN, new Tizen.NUI.PropertyValue((float)newValue));
297             }
298         },
299         defaultValueCreator:(bindable) =>
300         {
301             var view = (View)bindable;
302             float temp = 0.0f;
303             Tizen.NUI.Object.GetProperty(view.swigCPtr, TableView.ChildProperty.ROW_SPAN).Get(out temp);
304             return temp;
305         });
306         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
307         [EditorBrowsable(EditorBrowsableState.Never)]
308         public static readonly BindableProperty ColumnSpanProperty = BindableProperty.Create("ColumnSpan", typeof(float), typeof(View), default(float), propertyChanged: (bindable, oldValue, newValue) =>
309         {
310             var view = (View)bindable;
311             if (newValue != null)
312             {
313                 Tizen.NUI.Object.SetProperty(view.swigCPtr, TableView.ChildProperty.COLUMN_SPAN, new Tizen.NUI.PropertyValue((float)newValue));
314             }
315         },
316         defaultValueCreator:(bindable) =>
317         {
318             var view = (View)bindable;
319             float temp = 0.0f;
320             Tizen.NUI.Object.GetProperty(view.swigCPtr, TableView.ChildProperty.COLUMN_SPAN).Get(out temp);
321             return temp;
322         });
323         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
324         [EditorBrowsable(EditorBrowsableState.Never)]
325         public static readonly BindableProperty CellHorizontalAlignmentProperty = BindableProperty.Create("CellHorizontalAlignment", typeof(HorizontalAlignmentType), typeof(View), HorizontalAlignmentType.Left, propertyChanged: (bindable, oldValue, newValue) =>
326         {
327             var view = (View)bindable;
328             string valueToString = "";
329
330             if (newValue != null)
331             {
332                 switch ((HorizontalAlignmentType)newValue)
333                 {
334                     case Tizen.NUI.HorizontalAlignmentType.Left: { valueToString = "left"; break; }
335                     case Tizen.NUI.HorizontalAlignmentType.Center: { valueToString = "center"; break; }
336                     case Tizen.NUI.HorizontalAlignmentType.Right: { valueToString = "right"; break; }
337                     default: { valueToString = "left"; break; }
338                 }
339                 Tizen.NUI.Object.SetProperty(view.swigCPtr, TableView.ChildProperty.CELL_HORIZONTAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
340             }
341         },
342         defaultValueCreator:(bindable) =>
343         {
344             var view = (View)bindable;
345             string temp;
346             if (Tizen.NUI.Object.GetProperty(view.swigCPtr, TableView.ChildProperty.CELL_HORIZONTAL_ALIGNMENT).Get(out temp) == false)
347             {
348                 NUILog.Error("CellHorizontalAlignment get error!");
349             }
350
351             switch (temp)
352             {
353                 case "left": return Tizen.NUI.HorizontalAlignmentType.Left;
354                 case "center": return Tizen.NUI.HorizontalAlignmentType.Center;
355                 case "right": return Tizen.NUI.HorizontalAlignmentType.Right;
356                 default: return Tizen.NUI.HorizontalAlignmentType.Left;
357             }
358         });
359         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
360         [EditorBrowsable(EditorBrowsableState.Never)]
361         public static readonly BindableProperty CellVerticalAlignmentProperty = BindableProperty.Create("CellVerticalAlignment", typeof(VerticalAlignmentType), typeof(View), VerticalAlignmentType.Top, propertyChanged: (bindable, oldValue, newValue) =>
362         {
363             var view = (View)bindable;
364             string valueToString = "";
365
366             if (newValue != null)
367             {
368                 switch ((VerticalAlignmentType)newValue)
369                 {
370                     case Tizen.NUI.VerticalAlignmentType.Top: { valueToString = "top"; break; }
371                     case Tizen.NUI.VerticalAlignmentType.Center: { valueToString = "center"; break; }
372                     case Tizen.NUI.VerticalAlignmentType.Bottom: { valueToString = "bottom"; break; }
373                     default: { valueToString = "top"; break; }
374                 }
375                 Tizen.NUI.Object.SetProperty(view.swigCPtr, TableView.ChildProperty.CELL_VERTICAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
376             }
377         },
378         defaultValueCreator:(bindable) =>
379         {
380             var view = (View)bindable;
381             string temp;
382             Tizen.NUI.Object.GetProperty(view.swigCPtr, TableView.ChildProperty.CELL_VERTICAL_ALIGNMENT).Get(out temp);
383             {
384                 NUILog.Error("CellVerticalAlignment get error!");
385             }
386
387             switch (temp)
388             {
389                 case "top": return Tizen.NUI.VerticalAlignmentType.Top;
390                 case "center": return Tizen.NUI.VerticalAlignmentType.Center;
391                 case "bottom":  return Tizen.NUI.VerticalAlignmentType.Bottom;
392                 default: return Tizen.NUI.VerticalAlignmentType.Top;
393             }
394         });
395         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
396         [EditorBrowsable(EditorBrowsableState.Never)]
397         public static readonly BindableProperty LeftFocusableViewProperty = BindableProperty.Create("LeftFocusableView", typeof(View), typeof(View), default(View), propertyChanged: (bindable, oldValue, newValue) =>
398         {
399             var view = (View)bindable;
400             if (newValue != null) { view.LeftFocusableViewId = (int)(newValue as View).GetId(); }
401             else { view.LeftFocusableViewId = -1; }
402         },
403         defaultValueCreator:(bindable) =>
404         {
405             var view = (View)bindable;
406             if (view.LeftFocusableViewId >= 0) { return view.ConvertIdToView((uint)view.LeftFocusableViewId); }
407             return null;
408         });
409         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
410         [EditorBrowsable(EditorBrowsableState.Never)]
411         public static readonly BindableProperty RightFocusableViewProperty = BindableProperty.Create("RightFocusableView", typeof(View), typeof(View), default(View), propertyChanged: (bindable, oldValue, newValue) =>
412         {
413             var view = (View)bindable;
414             if (newValue != null) { view.RightFocusableViewId = (int)(newValue as View).GetId(); }
415             else { view.RightFocusableViewId = -1; }
416         },
417         defaultValueCreator:(bindable) =>
418         {
419             var view = (View)bindable;
420             if (view.RightFocusableViewId >= 0) { return view.ConvertIdToView((uint)view.RightFocusableViewId);  }
421             return null;
422         });
423         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
424         [EditorBrowsable(EditorBrowsableState.Never)]
425         public static readonly BindableProperty UpFocusableViewProperty = BindableProperty.Create("UpFocusableView", typeof(View), typeof(View), default(View), propertyChanged: (bindable, oldValue, newValue) =>
426         {
427             var view = (View)bindable;
428             if (newValue != null) { view.UpFocusableViewId = (int)(newValue as View).GetId(); }
429             else  { view.UpFocusableViewId = -1; }
430         },
431         defaultValueCreator:(bindable) =>
432         {
433             var view = (View)bindable;
434             if (view.UpFocusableViewId >= 0) { return view.ConvertIdToView((uint)view.UpFocusableViewId); }
435             return null;
436         });
437         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
438         [EditorBrowsable(EditorBrowsableState.Never)]
439         public static readonly BindableProperty DownFocusableViewProperty = BindableProperty.Create("DownFocusableView", typeof(View), typeof(View), default(View), propertyChanged: (bindable, oldValue, newValue) =>
440         {
441             var view = (View)bindable;
442             if (newValue != null) { view.DownFocusableViewId = (int)(newValue as View).GetId(); }
443             else { view.DownFocusableViewId = -1; }
444         },
445         defaultValueCreator:(bindable) =>
446         {
447             var view = (View)bindable;
448             if (view.DownFocusableViewId >= 0) { return view.ConvertIdToView((uint)view.DownFocusableViewId); }
449             return null;
450         });
451         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
452         [EditorBrowsable(EditorBrowsableState.Never)]
453         public static readonly BindableProperty FocusableProperty = BindableProperty.Create("Focusable", typeof(bool), typeof(View), false, propertyChanged: (bindable, oldValue, newValue) =>
454         {
455             var view = (View)bindable;
456             if (newValue != null)  { view.SetKeyboardFocusable((bool)newValue); }
457         },
458         defaultValueCreator:(bindable) =>
459         {
460             var view = (View)bindable;
461             return view.IsKeyboardFocusable();
462         });
463         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
464         [EditorBrowsable(EditorBrowsableState.Never)]
465         public static readonly BindableProperty Size2DProperty = BindableProperty.Create("Size2D", typeof(Size2D), typeof(View), new Size2D(0,0), propertyChanged: (bindable, oldValue, newValue) =>
466         {
467             var view = (View)bindable;
468             if (newValue != null)
469             {
470                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.SIZE, new Tizen.NUI.PropertyValue( new Size((Size2D)newValue)));
471             }
472         },
473         defaultValueCreator:(bindable) =>
474         {
475             var view = (View)bindable;
476             Size temp = new Size(0.0f, 0.0f, 0.0f);
477             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.SIZE).Get(temp);
478             Size2D size = new Size2D((int)temp.Width, (int)temp.Height);
479             return size;
480         });
481         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
482         [EditorBrowsable(EditorBrowsableState.Never)]
483         public static readonly BindableProperty OpacityProperty = BindableProperty.Create("Opacity", typeof(float), typeof(View), default(float), propertyChanged: (bindable, oldValue, newValue) =>
484         {
485             var view = (View)bindable;
486             if (newValue != null)
487             {
488                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.OPACITY, new Tizen.NUI.PropertyValue((float)newValue));
489             }
490         },
491         defaultValueCreator:(bindable) =>
492         {
493             var view = (View)bindable;
494             float temp = 0.0f;
495             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.OPACITY).Get(out temp);
496             return temp;
497         });
498         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
499         [EditorBrowsable(EditorBrowsableState.Never)]
500         public static readonly BindableProperty Position2DProperty = BindableProperty.Create("Position2D", typeof(Position2D), typeof(View), new Position2D(0,0), propertyChanged: (bindable, oldValue, newValue) =>
501         {
502             var view = (View)bindable;
503             if (newValue != null)
504             {
505                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.POSITION, new Tizen.NUI.PropertyValue( new Position((Position2D)newValue) ));
506             }
507         },
508         defaultValueCreator:(bindable) =>
509         {
510             var view = (View)bindable;
511             Position temp = new Position(0.0f, 0.0f, 0.0f);
512             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.POSITION).Get(temp);
513             return new Position2D(temp);
514         });
515         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
516         [EditorBrowsable(EditorBrowsableState.Never)]
517         public static readonly BindableProperty PositionUsesPivotPointProperty = BindableProperty.Create("PositionUsesPivotPoint", typeof(bool), typeof(View), true, propertyChanged: (bindable, oldValue, newValue) =>
518         {
519             var view = (View)bindable;
520             if (newValue != null)
521             {
522                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.POSITION_USES_ANCHOR_POINT, new Tizen.NUI.PropertyValue((bool)newValue));
523             }
524         },
525         defaultValueCreator:(bindable) =>
526         {
527             var view = (View)bindable;
528             bool temp = false;
529             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.POSITION_USES_ANCHOR_POINT).Get(out temp);
530             return temp;
531         });
532         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
533         [EditorBrowsable(EditorBrowsableState.Never)]
534         public static readonly BindableProperty SiblingOrderProperty = BindableProperty.Create("SiblingOrder", typeof(int), typeof(View), default(int), propertyChanged: (bindable, oldValue, newValue) =>
535         {
536             var view = (View)bindable;
537             int value;
538             if (newValue != null)
539             {
540                 value = (int)newValue;
541                 if(value < 0)
542                 {
543                     NUILog.Error("SiblingOrder should be bigger than 0 or equal to 0.");
544                     return;
545                 }
546                 var siblings = view.GetParent()?.Children;
547                 if (siblings != null)
548                 {
549                     int currentOrder = siblings.IndexOf(view);
550                     if (value != currentOrder)
551                     {
552                         if (value == 0) { view.LowerToBottom(); }
553                         else if (value < siblings.Count - 1)
554                         {
555                             if (value > currentOrder) { view.RaiseAbove(siblings[value]); }
556                             else { view.LowerBelow(siblings[value]); }
557                         }
558                         else { view.RaiseToTop(); }
559                     }
560                 }
561             }
562         },
563         defaultValueCreator:(bindable) =>
564         {
565             var view = (View)bindable;
566             var parentChildren = view.GetParent()?.Children;
567             int currentOrder = 0;
568             if (parentChildren != null)
569             {
570                 currentOrder = parentChildren.IndexOf(view);
571
572                 if (currentOrder < 0) { return 0; }
573                 else if (currentOrder < parentChildren.Count) { return currentOrder; }
574             }
575
576             return 0;
577         });
578         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
579         [EditorBrowsable(EditorBrowsableState.Never)]
580         public static readonly BindableProperty ParentOriginProperty = BindableProperty.Create("ParentOrigin", typeof(Position), typeof(View), Position.ParentOriginTopLeft, propertyChanged: (bindable, oldValue, newValue) =>
581         {
582             var view = (View)bindable;
583             if (newValue != null)
584             {
585                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.PARENT_ORIGIN, new Tizen.NUI.PropertyValue((Position)newValue));
586             }
587         },
588         defaultValueCreator:(bindable) =>
589         {
590             var view = (View)bindable;
591             Position temp = new Position(0.0f, 0.0f, 0.0f);
592             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.PARENT_ORIGIN).Get(temp);
593             return temp;
594         }
595         );
596         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
597         [EditorBrowsable(EditorBrowsableState.Never)]
598         public static readonly BindableProperty PivotPointProperty = BindableProperty.Create("PivotPoint", typeof(Position), typeof(View), Position.PivotPointTopLeft, propertyChanged: (bindable, oldValue, newValue) =>
599         {
600             var view = (View)bindable;
601             if (newValue != null)
602             {
603                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.ANCHOR_POINT, new Tizen.NUI.PropertyValue((Position)newValue));
604             }
605         },
606         defaultValueCreator:(bindable) =>
607         {
608             var view = (View)bindable;
609             Position temp = new Position(0.0f, 0.0f, 0.0f);
610             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.ANCHOR_POINT).Get(temp);
611             return temp;
612         });
613         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
614         [EditorBrowsable(EditorBrowsableState.Never)]
615         public static readonly BindableProperty SizeWidthProperty = BindableProperty.Create("SizeWidth", typeof(float), typeof(View), default(float), propertyChanged: (bindable, oldValue, newValue) =>
616         {
617             var view = (View)bindable;
618             if (newValue != null)
619             {
620                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.SIZE_WIDTH, new Tizen.NUI.PropertyValue((float)newValue));
621             }
622         },
623         defaultValueCreator:(bindable) =>
624         {
625             var view = (View)bindable;
626             float temp = 0.0f;
627             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.SIZE_WIDTH).Get(out temp);
628             return temp;
629         });
630         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
631         [EditorBrowsable(EditorBrowsableState.Never)]
632         public static readonly BindableProperty SizeHeightProperty = BindableProperty.Create("SizeHeight", typeof(float), typeof(View), default(float), propertyChanged: (bindable, oldValue, newValue) =>
633         {
634             var view = (View)bindable;
635             if (newValue != null)
636             {
637                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.SIZE_HEIGHT, new Tizen.NUI.PropertyValue((float)newValue));
638             }
639         },
640         defaultValueCreator:(bindable) =>
641         {
642             var view = (View)bindable;
643             float temp = 0.0f;
644             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.SIZE_HEIGHT).Get(out temp);
645             return temp;
646         });
647         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
648         [EditorBrowsable(EditorBrowsableState.Never)]
649         public static readonly BindableProperty PositionProperty = BindableProperty.Create("Position", typeof(Position), typeof(View), Position.Zero, propertyChanged: (bindable, oldValue, newValue) =>
650         {
651             var view = (View)bindable;
652             if (newValue != null)
653             {
654                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.POSITION, new Tizen.NUI.PropertyValue((Position)newValue));
655             }
656         },
657         defaultValueCreator:(bindable) =>
658         {
659             var view = (View)bindable;
660             Position temp = new Position(0.0f, 0.0f, 0.0f);
661             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.POSITION).Get(temp);
662             return temp;
663         });
664         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
665         [EditorBrowsable(EditorBrowsableState.Never)]
666         public static readonly BindableProperty PositionXProperty = BindableProperty.Create("PositionX", typeof(float), typeof(View), default(float), propertyChanged: (bindable, oldValue, newValue) =>
667         {
668             var view = (View)bindable;
669             if (newValue != null)
670             {
671                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.POSITION_X, new Tizen.NUI.PropertyValue((float)newValue));
672             }
673         },
674         defaultValueCreator:(bindable) =>
675         {
676             var view = (View)bindable;
677             float temp = 0.0f;
678             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.POSITION_X).Get(out temp);
679             return temp;
680         });
681         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
682         [EditorBrowsable(EditorBrowsableState.Never)]
683         public static readonly BindableProperty PositionYProperty = BindableProperty.Create("PositionY", typeof(float), typeof(View), default(float), propertyChanged: (bindable, oldValue, newValue) =>
684         {
685             var view = (View)bindable;
686             if (newValue != null)
687             {
688                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.POSITION_Y, new Tizen.NUI.PropertyValue((float)newValue));
689             }
690         },
691         defaultValueCreator:(bindable) =>
692         {
693             var view = (View)bindable;
694             float temp = 0.0f;
695             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.POSITION_Y).Get(out temp);
696             return temp;
697         });
698         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
699         [EditorBrowsable(EditorBrowsableState.Never)]
700         public static readonly BindableProperty PositionZProperty = BindableProperty.Create("PositionZ", typeof(float), typeof(View), default(float), propertyChanged: (bindable, oldValue, newValue) =>
701         {
702             var view = (View)bindable;
703             if (newValue != null)
704             {
705                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.POSITION_Z, new Tizen.NUI.PropertyValue((float)newValue));
706             }
707         },
708         defaultValueCreator:(bindable) =>
709         {
710             var view = (View)bindable;
711             float temp = 0.0f;
712             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.POSITION_Z).Get(out temp);
713             return temp;
714         });
715         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
716         [EditorBrowsable(EditorBrowsableState.Never)]
717         public static readonly BindableProperty OrientationProperty = BindableProperty.Create("Orientation", typeof(Rotation), typeof(View), new Rotation(new Radian(0), Vector3.ZAxis), propertyChanged: (bindable, oldValue, newValue) =>
718         {
719             var view = (View)bindable;
720             if (newValue != null)
721             {
722                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.ORIENTATION, new Tizen.NUI.PropertyValue((Rotation)newValue));
723             }
724         },
725         defaultValueCreator:(bindable) =>
726         {
727             var view = (View)bindable;
728             Rotation temp = new Rotation();
729             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.ORIENTATION).Get(temp);
730             return temp;
731         });
732         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
733         [EditorBrowsable(EditorBrowsableState.Never)]
734         public static readonly BindableProperty ScaleProperty = BindableProperty.Create("Scale", typeof(Vector3), typeof(View), Vector3.Zero, propertyChanged: (bindable, oldValue, newValue) =>
735         {
736             var view = (View)bindable;
737             if (newValue != null)
738             {
739                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.SCALE, new Tizen.NUI.PropertyValue((Vector3)newValue));
740             }
741         },
742         defaultValueCreator:(bindable) =>
743         {
744             var view = (View)bindable;
745             Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
746             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.SCALE).Get(temp);
747             return temp;
748         });
749         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
750         [EditorBrowsable(EditorBrowsableState.Never)]
751         public static readonly BindableProperty ScaleXProperty = BindableProperty.Create("ScaleX", typeof(float), typeof(View), default(float), propertyChanged: (bindable, oldValue, newValue) =>
752         {
753             var view = (View)bindable;
754             if (newValue != null)
755             {
756                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.SCALE_X, new Tizen.NUI.PropertyValue((float)newValue));
757             }
758         },
759         defaultValueCreator:(bindable) =>
760         {
761             var view = (View)bindable;
762             float temp = 0.0f;
763             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.SCALE_X).Get(out temp);
764             return temp;
765         });
766         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
767         [EditorBrowsable(EditorBrowsableState.Never)]
768         public static readonly BindableProperty ScaleYProperty = BindableProperty.Create("ScaleY", typeof(float), typeof(View), default(float), propertyChanged: (bindable, oldValue, newValue) =>
769         {
770             var view = (View)bindable;
771             if (newValue != null)
772             {
773                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.SCALE_Y, new Tizen.NUI.PropertyValue((float)newValue));
774             }
775         },
776         defaultValueCreator:(bindable) =>
777         {
778             var view = (View)bindable;
779             float temp = 0.0f;
780             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.SCALE_Y).Get(out temp);
781             return temp;
782         });
783         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
784         [EditorBrowsable(EditorBrowsableState.Never)]
785         public static readonly BindableProperty ScaleZProperty = BindableProperty.Create("ScaleZ", typeof(float), typeof(View), default(float), propertyChanged: (bindable, oldValue, newValue) =>
786         {
787             var view = (View)bindable;
788             if (newValue != null)
789             {
790                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.SCALE_Z, new Tizen.NUI.PropertyValue((float)newValue));
791             }
792         },
793         defaultValueCreator:(bindable) =>
794         {
795             var view = (View)bindable;
796             float temp = 0.0f;
797             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.SCALE_Z).Get(out temp);
798             return temp;
799         });
800         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
801         [EditorBrowsable(EditorBrowsableState.Never)]
802         public static readonly BindableProperty NameProperty = BindableProperty.Create("Name", typeof(string), typeof(View), string.Empty, propertyChanged: (bindable, oldValue, newValue) =>
803         {
804             var view = (View)bindable;
805             if (newValue != null)
806             {
807                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.NAME, new Tizen.NUI.PropertyValue((string)newValue));
808             }
809         },
810         defaultValueCreator:(bindable) =>
811         {
812             var view = (View)bindable;
813             string temp;
814             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.NAME).Get(out temp);
815             return temp;
816         });
817         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
818         [EditorBrowsable(EditorBrowsableState.Never)]
819         public static readonly BindableProperty SensitiveProperty = BindableProperty.Create("Sensitive", typeof(bool), typeof(View), false, propertyChanged: (bindable, oldValue, newValue) =>
820         {
821             var view = (View)bindable;
822             if (newValue != null)
823             {
824                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.SENSITIVE, new Tizen.NUI.PropertyValue((bool)newValue));
825             }
826         },
827         defaultValueCreator:(bindable) =>
828         {
829             var view = (View)bindable;
830             bool temp = false;
831             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.SENSITIVE).Get(out temp);
832             return temp;
833         });
834         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
835         [EditorBrowsable(EditorBrowsableState.Never)]
836         public static readonly BindableProperty LeaveRequiredProperty = BindableProperty.Create("LeaveRequired", typeof(bool), typeof(View), false, propertyChanged: (bindable, oldValue, newValue) =>
837         {
838             var view = (View)bindable;
839             if (newValue != null)
840             {
841                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.LEAVE_REQUIRED, new Tizen.NUI.PropertyValue((bool)newValue));
842             }
843         },
844         defaultValueCreator:(bindable) =>
845         {
846             var view = (View)bindable;
847             bool temp = false;
848             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.LEAVE_REQUIRED).Get(out temp);
849             return temp;
850         });
851         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
852         [EditorBrowsable(EditorBrowsableState.Never)]
853         public static readonly BindableProperty InheritOrientationProperty = BindableProperty.Create("InheritOrientation", typeof(bool), typeof(View), false, propertyChanged: (bindable, oldValue, newValue) =>
854         {
855             var view = (View)bindable;
856             if (newValue != null)
857             {
858                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.INHERIT_ORIENTATION, new Tizen.NUI.PropertyValue((bool)newValue));
859             }
860         },
861         defaultValueCreator:(bindable) =>
862         {
863             var view = (View)bindable;
864             bool temp = false;
865             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.INHERIT_ORIENTATION).Get(out temp);
866             return temp;
867         });
868         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
869         [EditorBrowsable(EditorBrowsableState.Never)]
870         public static readonly BindableProperty InheritScaleProperty = BindableProperty.Create("InheritScale", typeof(bool), typeof(View), false, propertyChanged: (bindable, oldValue, newValue) =>
871         {
872             var view = (View)bindable;
873             if (newValue != null)
874             {
875                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.INHERIT_SCALE, new Tizen.NUI.PropertyValue((bool)newValue));
876             }
877         },
878         defaultValueCreator:(bindable) =>
879         {
880             var view = (View)bindable;
881             bool temp = false;
882             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.INHERIT_SCALE).Get(out temp);
883             return temp;
884         });
885         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
886         [EditorBrowsable(EditorBrowsableState.Never)]
887         public static readonly BindableProperty DrawModeProperty = BindableProperty.Create("DrawMode", typeof(DrawModeType), typeof(View), DrawModeType.Normal, propertyChanged: (bindable, oldValue, newValue) =>
888         {
889             var view = (View)bindable;
890             if (newValue != null)
891             {
892                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.DRAW_MODE, new Tizen.NUI.PropertyValue((int)newValue));
893             }
894         },
895         defaultValueCreator:(bindable) =>
896         {
897             var view = (View)bindable;
898             string temp;
899             if (Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.DRAW_MODE).Get(out temp) == false)
900             {
901                 NUILog.Error("DrawMode get error!");
902             }
903             switch (temp)
904             {
905                 case "NORMAL": return DrawModeType.Normal;
906                 case "OVERLAY_2D": return DrawModeType.Overlay2D;
907                 case "STENCIL": return DrawModeType.Stencil;
908                 default: return DrawModeType.Normal;
909             }
910         });
911         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
912         [EditorBrowsable(EditorBrowsableState.Never)]
913         public static readonly BindableProperty SizeModeFactorProperty = BindableProperty.Create("SizeModeFactor", typeof(Vector3), typeof(View), Vector3.Zero, propertyChanged: (bindable, oldValue, newValue) =>
914         {
915             var view = (View)bindable;
916             if (newValue != null)
917             {
918                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.SIZE_MODE_FACTOR, new Tizen.NUI.PropertyValue((Vector3)newValue));
919             }
920         },
921         defaultValueCreator:(bindable) =>
922         {
923             var view = (View)bindable;
924             Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
925             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.SIZE_MODE_FACTOR).Get(temp);
926             return temp;
927         });
928         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
929         [EditorBrowsable(EditorBrowsableState.Never)]
930         public static readonly BindableProperty WidthResizePolicyProperty = BindableProperty.Create("WidthResizePolicy", typeof(ResizePolicyType), typeof(View), ResizePolicyType.Fixed, propertyChanged: (bindable, oldValue, newValue) =>
931         {
932             var view = (View)bindable;
933             if (newValue != null)
934             {
935                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.WIDTH_RESIZE_POLICY, new Tizen.NUI.PropertyValue((int)newValue));
936             }
937         },
938         defaultValueCreator:(bindable) =>
939         {
940             var view = (View)bindable;
941             string temp;
942             if (Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.WIDTH_RESIZE_POLICY).Get(out temp) == false)
943             {
944                 NUILog.Error("WidthResizePolicy get error!");
945             }
946             switch (temp)
947             {
948                 case "FIXED": return ResizePolicyType.Fixed;
949                 case "USE_NATURAL_SIZE": return ResizePolicyType.UseNaturalSize;
950                 case "FILL_TO_PARENT": return ResizePolicyType.FillToParent;
951                 case "SIZE_RELATIVE_TO_PARENT": return ResizePolicyType.SizeRelativeToParent;
952                 case "SIZE_FIXED_OFFSET_FROM_PARENT": return ResizePolicyType.SizeFixedOffsetFromParent;
953                 case "FIT_TO_CHILDREN": return ResizePolicyType.FitToChildren;
954                 case "DIMENSION_DEPENDENCY": return ResizePolicyType.DimensionDependency;
955                 case "USE_ASSIGNED_SIZE": return ResizePolicyType.UseAssignedSize;
956                 default: return ResizePolicyType.Fixed;
957             }
958         });
959         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
960         [EditorBrowsable(EditorBrowsableState.Never)]
961         public static readonly BindableProperty HeightResizePolicyProperty = BindableProperty.Create("HeightResizePolicy", typeof(ResizePolicyType), typeof(View), ResizePolicyType.Fixed, propertyChanged: (bindable, oldValue, newValue) =>
962         {
963             var view = (View)bindable;
964             if (newValue != null)
965             {
966                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.HEIGHT_RESIZE_POLICY, new Tizen.NUI.PropertyValue((int)newValue));
967             }
968         },
969         defaultValueCreator:(bindable) =>
970         {
971             var view = (View)bindable;
972             string temp;
973             if (Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.HEIGHT_RESIZE_POLICY).Get(out temp) == false)
974             {
975                 NUILog.Error("HeightResizePolicy get error!");
976             }
977             switch (temp)
978             {
979                 case "FIXED": return ResizePolicyType.Fixed;
980                 case "USE_NATURAL_SIZE":  return ResizePolicyType.UseNaturalSize;
981                 case "FILL_TO_PARENT": return ResizePolicyType.FillToParent;
982                 case "SIZE_RELATIVE_TO_PARENT": return ResizePolicyType.SizeRelativeToParent;
983                 case "SIZE_FIXED_OFFSET_FROM_PARENT": return ResizePolicyType.SizeFixedOffsetFromParent;
984                 case "FIT_TO_CHILDREN": return ResizePolicyType.FitToChildren;
985                 case "DIMENSION_DEPENDENCY": return ResizePolicyType.DimensionDependency;
986                 case "USE_ASSIGNED_SIZE": return ResizePolicyType.UseAssignedSize;
987                 default: return ResizePolicyType.Fixed;
988             }
989         });
990         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
991         [EditorBrowsable(EditorBrowsableState.Never)]
992         public static readonly BindableProperty SizeScalePolicyProperty = BindableProperty.Create("SizeScalePolicy", typeof(SizeScalePolicyType), typeof(View), SizeScalePolicyType.UseSizeSet, propertyChanged: (bindable, oldValue, newValue) =>
993         {
994             var view = (View)bindable;
995             string valueToString = "";
996             if (newValue != null)
997             {
998                 switch ((SizeScalePolicyType)newValue)
999                 {
1000                     case SizeScalePolicyType.UseSizeSet: { valueToString = "USE_SIZE_SET"; break; }
1001                     case SizeScalePolicyType.FitWithAspectRatio: { valueToString = "FIT_WITH_ASPECT_RATIO"; break; }
1002                     case SizeScalePolicyType.FillWithAspectRatio: { valueToString = "FILL_WITH_ASPECT_RATIO"; break; }
1003                     default: { valueToString = "USE_SIZE_SET"; break; }
1004                 }
1005                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.SIZE_SCALE_POLICY, new Tizen.NUI.PropertyValue(valueToString));
1006             }
1007         },
1008         defaultValueCreator:(bindable) =>
1009         {
1010             var view = (View)bindable;
1011             string temp;
1012             if (Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.SIZE_SCALE_POLICY).Get(out temp) == false)
1013             {
1014                 NUILog.Error("SizeScalePolicy get error!");
1015             }
1016             switch (temp)
1017             {
1018                 case "USE_SIZE_SET": return SizeScalePolicyType.UseSizeSet;
1019                 case "FIT_WITH_ASPECT_RATIO": return SizeScalePolicyType.FitWithAspectRatio;
1020                 case "FILL_WITH_ASPECT_RATIO": return SizeScalePolicyType.FillWithAspectRatio;
1021                 default: return SizeScalePolicyType.UseSizeSet;
1022             }
1023         });
1024         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1025         [EditorBrowsable(EditorBrowsableState.Never)]
1026         public static readonly BindableProperty WidthForHeightProperty = BindableProperty.Create("WidthForHeight", typeof(bool), typeof(View), false, propertyChanged: (bindable, oldValue, newValue) =>
1027         {
1028             var view = (View)bindable;
1029             if (newValue != null)
1030             {
1031                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.WIDTH_FOR_HEIGHT, new Tizen.NUI.PropertyValue((bool)newValue));
1032             }
1033         },
1034         defaultValueCreator:(bindable) =>
1035         {
1036             var view = (View)bindable;
1037             bool temp = false;
1038             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.WIDTH_FOR_HEIGHT).Get(out temp);
1039             return temp;
1040         });
1041         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1042         [EditorBrowsable(EditorBrowsableState.Never)]
1043         public static readonly BindableProperty HeightForWidthProperty = BindableProperty.Create("HeightForWidth", typeof(bool), typeof(View), false, propertyChanged: (bindable, oldValue, newValue) =>
1044         {
1045             var view = (View)bindable;
1046             if (newValue != null)
1047             {
1048                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.HEIGHT_FOR_WIDTH, new Tizen.NUI.PropertyValue((bool)newValue));
1049             }
1050         },
1051         defaultValueCreator:(bindable) =>
1052         {
1053             var view = (View)bindable;
1054             bool temp = false;
1055             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.HEIGHT_FOR_WIDTH).Get(out temp);
1056             return temp;
1057         });
1058         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1059         [EditorBrowsable(EditorBrowsableState.Never)]
1060         public static readonly BindableProperty PaddingProperty = BindableProperty.Create("Padding", typeof(Extents), typeof(View), new Extents(0,0,0,0), propertyChanged: (bindable, oldValue, newValue) =>
1061         {
1062             var view = (View)bindable;
1063             if (newValue != null)
1064             {
1065                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.PADDING, new Tizen.NUI.PropertyValue((Extents)newValue));
1066             }
1067         },
1068         defaultValueCreator:(bindable) =>
1069         {
1070             var view = (View)bindable;
1071             Extents temp = new Extents(0, 0, 0, 0);
1072             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.PADDING).Get(temp);
1073             return temp;
1074         });
1075         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1076         [EditorBrowsable(EditorBrowsableState.Never)]
1077         public static readonly BindableProperty SizeProperty = BindableProperty.Create("Size", typeof(Size), typeof(View), new Size(0,0,0), propertyChanged: (bindable, oldValue, newValue) =>
1078         {
1079             var view = (View)bindable;
1080             if (newValue != null)
1081             {
1082                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.SIZE, new Tizen.NUI.PropertyValue((Size)newValue));
1083             }
1084         },
1085         defaultValueCreator: (bindable) => {
1086             var view = (View)bindable;
1087             Size temp = new Size(0, 0, 0);
1088             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.SIZE).Get(temp);
1089             return temp;
1090         });
1091         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1092         [EditorBrowsable(EditorBrowsableState.Never)]
1093         public static readonly BindableProperty MinimumSizeProperty = BindableProperty.Create("MinimumSize", typeof(Size2D), typeof(View), new Size2D(0,0), propertyChanged: (bindable, oldValue, newValue) =>
1094         {
1095             var view = (View)bindable;
1096             if (newValue != null)
1097             {
1098                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.MINIMUM_SIZE, new Tizen.NUI.PropertyValue((Size2D)newValue));
1099             }
1100         },
1101         defaultValueCreator:(bindable) =>
1102         {
1103             var view = (View)bindable;
1104             Size2D temp = new Size2D(0, 0);
1105             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.MINIMUM_SIZE).Get(temp);
1106             return temp;
1107         });
1108         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1109         [EditorBrowsable(EditorBrowsableState.Never)]
1110         public static readonly BindableProperty MaximumSizeProperty = BindableProperty.Create("MaximumSize", typeof(Size2D), typeof(View), new Size2D(0,0), propertyChanged: (bindable, oldValue, newValue) =>
1111         {
1112             var view = (View)bindable;
1113             if (newValue != null)
1114             {
1115                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.MAXIMUM_SIZE, new Tizen.NUI.PropertyValue((Size2D)newValue));
1116             }
1117         },
1118         defaultValueCreator:(bindable) =>
1119         {
1120             var view = (View)bindable;
1121             Size2D temp = new Size2D(0, 0);
1122             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.MAXIMUM_SIZE).Get(temp);
1123             return temp;
1124         });
1125         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1126         [EditorBrowsable(EditorBrowsableState.Never)]
1127         public static readonly BindableProperty InheritPositionProperty = BindableProperty.Create("InheritPosition", typeof(bool), typeof(View), false, propertyChanged: (bindable, oldValue, newValue) =>
1128         {
1129             var view = (View)bindable;
1130             if (newValue != null)
1131             {
1132                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.INHERIT_POSITION, new Tizen.NUI.PropertyValue((bool)newValue));
1133             }
1134         },
1135         defaultValueCreator:(bindable) =>
1136         {
1137             var view = (View)bindable;
1138             bool temp = false;
1139             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.INHERIT_POSITION).Get(out temp);
1140             return temp;
1141         });
1142         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1143         [EditorBrowsable(EditorBrowsableState.Never)]
1144         public static readonly BindableProperty ClippingModeProperty = BindableProperty.Create("ClippingMode", typeof(ClippingModeType), typeof(View), ClippingModeType.Disabled, propertyChanged: (bindable, oldValue, newValue) =>
1145         {
1146             var view = (View)bindable;
1147             if (newValue != null)
1148             {
1149                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.CLIPPING_MODE, new Tizen.NUI.PropertyValue((int)newValue));
1150             }
1151         },
1152         defaultValueCreator:(bindable) =>
1153         {
1154             var view = (View)bindable;
1155             int temp = 0;
1156             if (Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.CLIPPING_MODE).Get(out temp) == false)
1157             {
1158                 NUILog.Error("ClippingMode get error!");
1159             }
1160             return (ClippingModeType)temp;
1161         });
1162         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1163         [EditorBrowsable(EditorBrowsableState.Never)]
1164         public static readonly BindableProperty InheritLayoutDirectionProperty = BindableProperty.Create("InheritLayoutDirection", typeof(bool), typeof(View), false, propertyChanged: (bindable, oldValue, newValue) =>
1165         {
1166             var view = (View)bindable;
1167             if (newValue != null)
1168             {
1169                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.INHERIT_LAYOUT_DIRECTION, new Tizen.NUI.PropertyValue((bool)newValue));
1170             }
1171         },
1172         defaultValueCreator:(bindable) =>
1173         {
1174             var view = (View)bindable;
1175             bool temp = false;
1176             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.INHERIT_LAYOUT_DIRECTION).Get(out temp);
1177             return temp;
1178         });
1179         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1180         [EditorBrowsable(EditorBrowsableState.Never)]
1181         public static readonly BindableProperty LayoutDirectionProperty = BindableProperty.Create("LayoutDirection", typeof(ViewLayoutDirectionType), typeof(View), ViewLayoutDirectionType.LTR, propertyChanged: (bindable, oldValue, newValue) =>
1182         {
1183             var view = (View)bindable;
1184             if (newValue != null)
1185             {
1186                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.LAYOUT_DIRECTION, new Tizen.NUI.PropertyValue((int)newValue));
1187             }
1188         },
1189         defaultValueCreator:(bindable) =>
1190         {
1191             var view = (View)bindable;
1192             int temp;
1193             if (false == Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.LAYOUT_DIRECTION).Get(out temp))
1194             {
1195                 NUILog.Error("LAYOUT_DIRECTION get error!");
1196             }
1197             return (ViewLayoutDirectionType)temp;
1198         });
1199         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1200         [EditorBrowsable(EditorBrowsableState.Never)]
1201         public static readonly BindableProperty MarginProperty = BindableProperty.Create("Margin", typeof(Extents), typeof(View), new Extents(0,0,0,0), propertyChanged: (bindable, oldValue, newValue) =>
1202         {
1203             var view = (View)bindable;
1204             if (newValue != null)
1205             {
1206                 Tizen.NUI.Object.SetProperty(view.swigCPtr, View.Property.MARGIN, new Tizen.NUI.PropertyValue((Extents)newValue));
1207             }
1208         },
1209         defaultValueCreator:(bindable) =>
1210         {
1211             var view = (View)bindable;
1212             Extents temp = new Extents(0, 0, 0, 0);
1213             Tizen.NUI.Object.GetProperty(view.swigCPtr, View.Property.MARGIN).Get(temp);
1214             return temp;
1215         });
1216         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1217         [EditorBrowsable(EditorBrowsableState.Never)]
1218         public static readonly BindableProperty StyleProperty = BindableProperty.Create("Style", typeof(Style), typeof(View), default(Style),
1219     propertyChanged: (bindable, oldvalue, newvalue) => ((View)bindable)._mergedStyle.Style = (Style)newvalue);
1220
1221
1222         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
1223
1224         private bool layoutSet = false; // Flag to indicate if SetLayout was called or View was automatically given a Layout
1225
1226         internal View(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.View_SWIGUpcast(cPtr), cMemoryOwn)
1227         {
1228             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
1229             if (HasBody())
1230             {
1231                 PositionUsesPivotPoint = false;
1232             }
1233             _mergedStyle = new MergedStyle(GetType(), this);
1234         }
1235
1236         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(View obj)
1237         {
1238             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
1239         }
1240
1241         /// <summary>
1242         /// Event argument passed through the ChildAdded event.
1243         /// </summary>
1244         /// <since_tizen> 5 </since_tizen>
1245         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1246         [EditorBrowsable(EditorBrowsableState.Never)]
1247         public class ChildAddedEventArgs : EventArgs
1248         {
1249             /// <summary>
1250             /// Added child view at moment.
1251             /// </summary>
1252             /// <since_tizen> 5 </since_tizen>
1253             public View Added { get; set; }
1254         }
1255
1256         /// <summary>
1257         /// Event when a child is added.
1258         /// </summary>
1259         /// <since_tizen> 5 </since_tizen>
1260         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1261         [EditorBrowsable(EditorBrowsableState.Never)]
1262         public new event EventHandler<ChildAddedEventArgs> ChildAdded;
1263
1264         // From Container Base class
1265         /// <summary>
1266         /// Adds a child view to this view.
1267         /// </summary>
1268         /// <seealso cref="Container.Add" />
1269         /// <since_tizen> 4 </since_tizen>
1270         public override void Add(View child)
1271         {
1272             if (null == child)
1273             {
1274                 Tizen.Log.Fatal("NUI", "Child is null");
1275                 return;
1276             }
1277
1278             Container oldParent = child.GetParent();
1279             if (oldParent != this)
1280             {
1281                 if (oldParent != null)
1282                 {
1283                     oldParent.Remove(child);
1284                 }
1285                 child.InternalParent = this;
1286
1287                 if (layoutSet == true && child.Layout == null) // Only give children a layout if parent an explicit container
1288                 {
1289                     LayoutItem layoutItem = new LayoutItem();
1290                     child.Layout = layoutItem;
1291                 }
1292
1293                 if (Layout)
1294                 {
1295                     Layout.LayoutChildren.Add(child.Layout);
1296                 }
1297
1298                 NDalicPINVOKE.Actor_Add(swigCPtr, View.getCPtr(child));
1299                 if (NDalicPINVOKE.SWIGPendingException.Pending)
1300                     throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1301                 Children.Add(child);
1302
1303                 if (ChildAdded != null)
1304                 {
1305                     ChildAddedEventArgs e = new ChildAddedEventArgs
1306                     {
1307                         Added = child
1308                     };
1309                     ChildAdded(this, e);
1310                 }
1311             }
1312         }
1313
1314         /// <summary>
1315         /// Event argument passed through the ChildRemoved event.
1316         /// </summary>
1317         /// <since_tizen> 5 </since_tizen>
1318         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1319         [EditorBrowsable(EditorBrowsableState.Never)]
1320         public class ChildRemovedEventArgs : EventArgs
1321         {
1322             /// <summary>
1323             /// Removed child view at moment.
1324             /// </summary>
1325             /// <since_tizen> 5 </since_tizen>
1326             public View Removed { get; set; }
1327         }
1328
1329         /// <summary>
1330         /// Event when a child is removed.
1331         /// </summary>
1332         /// <since_tizen> 5 </since_tizen>
1333         /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.
1334         [EditorBrowsable(EditorBrowsableState.Never)]
1335         public new event EventHandler<ChildRemovedEventArgs> ChildRemoved;
1336
1337
1338         /// <summary>
1339         /// Removes a child view from this View. If the view was not a child of this view, this is a no-op.
1340         /// </summary>
1341         /// <seealso cref="Container.Remove" />
1342         /// <since_tizen> 4 </since_tizen>
1343         public override void Remove(View child)
1344         {
1345             NDalicPINVOKE.Actor_Remove(swigCPtr, View.getCPtr(child));
1346             if (NDalicPINVOKE.SWIGPendingException.Pending)
1347                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1348
1349             Children.Remove(child);
1350             child.InternalParent = null;
1351
1352             if (Layout)
1353             {
1354                 if(child.Layout)
1355                 {
1356                     Layout.LayoutChildren.Remove(child.Layout);
1357                 }
1358             }
1359
1360             if (ChildRemoved != null)
1361             {
1362                 ChildRemovedEventArgs e = new ChildRemovedEventArgs
1363                 {
1364                     Removed = child
1365                 };
1366                 ChildRemoved(this, e);
1367             }
1368         }
1369
1370         /// <summary>
1371         /// Retrieves a child view by index.
1372         /// </summary>
1373         /// <seealso cref="Container.GetChildAt" />
1374         /// <since_tizen> 4 </since_tizen>
1375         public override View GetChildAt(uint index)
1376         {
1377             if (index < Children.Count)
1378             {
1379                 return Children[Convert.ToInt32(index)];
1380             }
1381             else
1382             {
1383                 return null;
1384             }
1385         }
1386
1387         /// <summary>
1388         /// Retrieves the number of children held by the view.
1389         /// </summary>
1390         /// <seealso cref="Container.GetChildCount" />
1391         /// <since_tizen> 4 </since_tizen>
1392         public override uint GetChildCount()
1393         {
1394             return Convert.ToUInt32(Children.Count);
1395         }
1396
1397         /// <summary>
1398         /// Gets the views parent.
1399         /// </summary>
1400         /// <seealso cref="Container.GetParent()" />
1401         /// <since_tizen> 4 </since_tizen>
1402         public override Container GetParent()
1403         {
1404             return this.InternalParent as Container;
1405         }
1406
1407         internal bool IsTopLevelView()
1408         {
1409             if (GetParent() is Layer)
1410             {
1411                 return true;
1412             }
1413             return false;
1414         }
1415
1416         /// <summary>
1417         /// you can override it to clean-up your own resources.
1418         /// </summary>
1419         /// <param name="type">DisposeTypes</param>
1420         /// <since_tizen> 3 </since_tizen>
1421         protected override void Dispose(DisposeTypes type)
1422         {
1423             if (disposed)
1424             {
1425                 return;
1426             }
1427
1428             if (type == DisposeTypes.Explicit)
1429             {
1430                 //Called by User
1431                 //Release your own managed resources here.
1432                 //You should release all of your own disposable objects here.
1433             }
1434
1435             //Release your own unmanaged resources here.
1436             //You should not access any managed member here except static instance.
1437             //because the execution order of Finalizes is non-deterministic.
1438             if (this != null)
1439             {
1440                 DisConnectFromSignals();
1441             }
1442
1443             if (swigCPtr.Handle != global::System.IntPtr.Zero)
1444             {
1445                 if (swigCMemOwn)
1446                 {
1447                     swigCMemOwn = false;
1448                     NDalicPINVOKE.delete_View(swigCPtr);
1449                 }
1450                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
1451             }
1452
1453             foreach (View view in Children)
1454             {
1455                 view.InternalParent = null;
1456             }
1457             
1458             base.Dispose(type);
1459
1460         }
1461
1462         private void DisConnectFromSignals()
1463         {
1464             // Save current CPtr.
1465             global::System.Runtime.InteropServices.HandleRef currentCPtr = swigCPtr;
1466
1467             // Use BaseHandle CPtr as current might have been deleted already in derived classes.
1468             swigCPtr = GetBaseHandleCPtrHandleRef;
1469
1470             if (_onRelayoutEventCallback != null)
1471             {
1472                 this.OnRelayoutSignal().Disconnect(_onRelayoutEventCallback);
1473             }
1474
1475             if (_offWindowEventCallback != null)
1476             {
1477                 this.OffWindowSignal().Disconnect(_offWindowEventCallback);
1478             }
1479
1480             if (_onWindowEventCallback != null)
1481             {
1482                 this.OnWindowSignal().Disconnect(_onWindowEventCallback);
1483             }
1484
1485             if (_wheelEventCallback != null)
1486             {
1487                 this.WheelEventSignal().Disconnect(_wheelEventCallback);
1488             }
1489
1490             if (_hoverEventCallback != null)
1491             {
1492                 this.HoveredSignal().Disconnect(_hoverEventCallback);
1493             }
1494
1495             if (_touchDataCallback != null)
1496             {
1497                 this.TouchSignal().Disconnect(_touchDataCallback);
1498             }
1499
1500             if (_ResourcesLoadedCallback != null)
1501             {
1502                 this.ResourcesLoadedSignal().Disconnect(_ResourcesLoadedCallback);
1503             }
1504
1505             if (_offWindowEventCallback != null)
1506             {
1507                 this.OffWindowSignal().Disconnect(_offWindowEventCallback);
1508             }
1509
1510             if (_onWindowEventCallback != null)
1511             {
1512                 this.OnWindowSignal().Disconnect(_onWindowEventCallback);
1513             }
1514
1515             if (_wheelEventCallback != null)
1516             {
1517                 this.WheelEventSignal().Disconnect(_wheelEventCallback);
1518             }
1519
1520             if (_hoverEventCallback != null)
1521             {
1522                 this.HoveredSignal().Disconnect(_hoverEventCallback);
1523             }
1524
1525             if (_touchDataCallback != null)
1526             {
1527                 this.TouchSignal().Disconnect(_touchDataCallback);
1528             }
1529
1530             if (_onRelayoutEventCallback != null)
1531             {
1532                 this.OnRelayoutSignal().Disconnect(_onRelayoutEventCallback);
1533             }
1534
1535             if (_keyCallback != null)
1536             {
1537                 this.KeyEventSignal().Disconnect(_keyCallback);
1538             }
1539
1540             if (_keyInputFocusLostCallback != null)
1541             {
1542                 this.KeyInputFocusLostSignal().Disconnect(_keyInputFocusLostCallback);
1543             }
1544
1545             if (_keyInputFocusGainedCallback != null)
1546             {
1547                 this.KeyInputFocusGainedSignal().Disconnect(_keyInputFocusGainedCallback);
1548             }
1549
1550             // BaseHandle CPtr is used in Registry and there is danger of deletion if we keep using it here.
1551             // Restore current CPtr.
1552             swigCPtr = currentCPtr;
1553         }
1554
1555         private EventHandler _keyInputFocusGainedEventHandler;
1556         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
1557         private delegate void KeyInputFocusGainedCallbackType(IntPtr control);
1558         private KeyInputFocusGainedCallbackType _keyInputFocusGainedCallback;
1559
1560         /// <summary>
1561         /// An event for the KeyInputFocusGained signal which can be used to subscribe or unsubscribe the event handler provided by the user.<br />
1562         /// The KeyInputFocusGained signal is emitted when the control gets the key input focus.<br />
1563         /// </summary>
1564         /// <since_tizen> 3 </since_tizen>
1565         public event EventHandler FocusGained
1566         {
1567             add
1568             {
1569                 if (_keyInputFocusGainedEventHandler == null)
1570                 {
1571                     _keyInputFocusGainedCallback = OnKeyInputFocusGained;
1572                     this.KeyInputFocusGainedSignal().Connect(_keyInputFocusGainedCallback);
1573                 }
1574
1575                 _keyInputFocusGainedEventHandler += value;
1576             }
1577
1578             remove
1579             {
1580                 _keyInputFocusGainedEventHandler -= value;
1581
1582                 if (_keyInputFocusGainedEventHandler == null && KeyInputFocusGainedSignal().Empty() == false)
1583                 {
1584                     this.KeyInputFocusGainedSignal().Disconnect(_keyInputFocusGainedCallback);
1585                 }
1586             }
1587         }
1588
1589         private void OnKeyInputFocusGained(IntPtr view)
1590         {
1591             if (_keyInputFocusGainedEventHandler != null)
1592             {
1593                 _keyInputFocusGainedEventHandler(this, null);
1594             }
1595         }
1596
1597
1598         private EventHandler _keyInputFocusLostEventHandler;
1599         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
1600         private delegate void KeyInputFocusLostCallbackType(IntPtr control);
1601         private KeyInputFocusLostCallbackType _keyInputFocusLostCallback;
1602
1603         /// <summary>
1604         /// An event for the KeyInputFocusLost signal which can be used to subscribe or unsubscribe the event handler provided by the user.<br />
1605         /// The KeyInputFocusLost signal is emitted when the control loses the key input focus.<br />
1606         /// </summary>
1607         /// <since_tizen> 3 </since_tizen>
1608         public event EventHandler FocusLost
1609         {
1610             add
1611             {
1612                 if (_keyInputFocusLostEventHandler == null)
1613                 {
1614                     _keyInputFocusLostCallback = OnKeyInputFocusLost;
1615                     this.KeyInputFocusLostSignal().Connect(_keyInputFocusLostCallback);
1616                 }
1617
1618                 _keyInputFocusLostEventHandler += value;
1619             }
1620
1621             remove
1622             {
1623                 _keyInputFocusLostEventHandler -= value;
1624
1625                 if (_keyInputFocusLostEventHandler == null && KeyInputFocusLostSignal().Empty() == false)
1626                 {
1627                     this.KeyInputFocusLostSignal().Disconnect(_keyInputFocusLostCallback);
1628                 }
1629             }
1630         }
1631
1632         private void OnKeyInputFocusLost(IntPtr view)
1633         {
1634             if (_keyInputFocusLostEventHandler != null)
1635             {
1636                 _keyInputFocusLostEventHandler(this, null);
1637             }
1638         }
1639
1640         /// <summary>
1641         /// Event arguments that passed via the KeyEvent signal.
1642         /// </summary>
1643         /// <since_tizen> 3 </since_tizen>
1644         public class KeyEventArgs : EventArgs
1645         {
1646             private Key _key;
1647
1648             /// <summary>
1649             /// Key - is the key sent to the view.
1650             /// </summary>
1651             /// <since_tizen> 3 </since_tizen>
1652             public Key Key
1653             {
1654                 get
1655                 {
1656                     return _key;
1657                 }
1658                 set
1659                 {
1660                     _key = value;
1661                 }
1662             }
1663         }
1664
1665         private EventHandlerWithReturnType<object, KeyEventArgs, bool> _keyEventHandler;
1666         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
1667         private delegate bool KeyCallbackType(IntPtr control, IntPtr keyEvent);
1668         private KeyCallbackType _keyCallback;
1669
1670         /// <summary>
1671         /// An event for the KeyPressed signal which can be used to subscribe or unsubscribe the event handler provided by the user.<br />
1672         /// The KeyPressed signal is emitted when the key event is received.<br />
1673         /// </summary>
1674         /// <since_tizen> 3 </since_tizen>
1675         public event EventHandlerWithReturnType<object, KeyEventArgs, bool> KeyEvent
1676         {
1677             add
1678             {
1679                 if (_keyEventHandler == null)
1680                 {
1681                     _keyCallback = OnKeyEvent;
1682                     this.KeyEventSignal().Connect(_keyCallback);
1683                 }
1684
1685                 _keyEventHandler += value;
1686             }
1687
1688             remove
1689             {
1690                 _keyEventHandler -= value;
1691
1692                 if (_keyEventHandler == null && KeyEventSignal().Empty() == false)
1693                 {
1694                     this.KeyEventSignal().Disconnect(_keyCallback);
1695                 }
1696             }
1697         }
1698
1699         private bool OnKeyEvent(IntPtr view, IntPtr keyEvent)
1700         {
1701             if (keyEvent == global::System.IntPtr.Zero)
1702             {
1703                 NUILog.Error("keyEvent should not be null!");
1704                 return true;
1705             }
1706
1707             KeyEventArgs e = new KeyEventArgs();
1708
1709             bool result = false;
1710
1711             e.Key = Tizen.NUI.Key.GetKeyFromPtr(keyEvent);
1712
1713             if (_keyEventHandler != null)
1714             {
1715                 Delegate[] delegateList = _keyEventHandler.GetInvocationList();
1716
1717                 // Oring the result of each callback.
1718                 foreach (EventHandlerWithReturnType<object, KeyEventArgs, bool> del in delegateList)
1719                 {
1720                     result |= del(this, e);
1721                 }
1722             }
1723
1724             return result;
1725         }
1726
1727         private EventHandler _onRelayoutEventHandler;
1728         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
1729         private delegate void OnRelayoutEventCallbackType(IntPtr control);
1730         private OnRelayoutEventCallbackType _onRelayoutEventCallback;
1731
1732         /// <summary>
1733         /// An event for the OnRelayout signal which can be used to subscribe or unsubscribe the event handler.<br />
1734         /// The OnRelayout signal is emitted after the size has been set on the view during relayout.<br />
1735         /// </summary>
1736         /// <since_tizen> 3 </since_tizen>
1737         public event EventHandler Relayout
1738         {
1739             add
1740             {
1741                 if (_onRelayoutEventHandler == null)
1742                 {
1743                     _onRelayoutEventCallback = OnRelayout;
1744                     this.OnRelayoutSignal().Connect(_onRelayoutEventCallback);
1745                 }
1746
1747                 _onRelayoutEventHandler += value;
1748             }
1749
1750             remove
1751             {
1752                 _onRelayoutEventHandler -= value;
1753
1754                 if (_onRelayoutEventHandler == null && OnRelayoutSignal().Empty() == false)
1755                 {
1756                     this.OnRelayoutSignal().Disconnect(_onRelayoutEventCallback);
1757                 }
1758
1759             }
1760         }
1761
1762         // Callback for View OnRelayout signal
1763         private void OnRelayout(IntPtr data)
1764         {
1765             if (_onRelayoutEventHandler != null)
1766             {
1767                 _onRelayoutEventHandler(this, null);
1768             }
1769         }
1770
1771         /// <summary>
1772         /// Event arguments that passed via the touch signal.
1773         /// </summary>
1774         /// <since_tizen> 3 </since_tizen>
1775         public class TouchEventArgs : EventArgs
1776         {
1777             private Touch _touch;
1778
1779             /// <summary>
1780             /// Touch - contains the information of touch points.
1781             /// </summary>
1782             /// <since_tizen> 3 </since_tizen>
1783             public Touch Touch
1784             {
1785                 get
1786                 {
1787                     return _touch;
1788                 }
1789                 set
1790                 {
1791                     _touch = value;
1792                 }
1793             }
1794         }
1795
1796         private EventHandlerWithReturnType<object, TouchEventArgs, bool> _touchDataEventHandler;
1797         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
1798         private delegate bool TouchDataCallbackType(IntPtr view, IntPtr touchData);
1799         private TouchDataCallbackType _touchDataCallback;
1800
1801         /// <summary>
1802         /// An event for the touched signal which can be used to subscribe or unsubscribe the event handler provided by the user.<br />
1803         /// The touched signal is emitted when the touch input is received.<br />
1804         /// </summary>
1805         /// <since_tizen> 3 </since_tizen>
1806         public event EventHandlerWithReturnType<object, TouchEventArgs, bool> TouchEvent
1807         {
1808             add
1809             {
1810                 if (_touchDataEventHandler == null)
1811                 {
1812                     _touchDataCallback = OnTouch;
1813                     this.TouchSignal().Connect(_touchDataCallback);
1814                 }
1815
1816                 _touchDataEventHandler += value;
1817             }
1818
1819             remove
1820             {
1821                 _touchDataEventHandler -= value;
1822
1823                 if (_touchDataEventHandler == null && TouchSignal().Empty() == false)
1824                 {
1825                     this.TouchSignal().Disconnect(_touchDataCallback);
1826                 }
1827
1828             }
1829         }
1830
1831         // Callback for View TouchSignal
1832         private bool OnTouch(IntPtr view, IntPtr touchData)
1833         {
1834             if (touchData == global::System.IntPtr.Zero)
1835             {
1836                 NUILog.Error("touchData should not be null!");
1837                 return true;
1838             }
1839
1840             TouchEventArgs e = new TouchEventArgs();
1841
1842             e.Touch = Tizen.NUI.Touch.GetTouchFromPtr(touchData);
1843
1844             if (_touchDataEventHandler != null)
1845             {
1846                 return _touchDataEventHandler(this, e);
1847             }
1848             return false;
1849         }
1850
1851
1852         /// <summary>
1853         /// Event arguments that passed via the hover signal.
1854         /// </summary>
1855         /// <since_tizen> 3 </since_tizen>
1856         public class HoverEventArgs : EventArgs
1857         {
1858             private Hover _hover;
1859
1860             /// <summary>
1861             /// Hover - contains touch points that represent the points that are currently being hovered or the points where a hover has stopped.
1862             /// </summary>
1863             /// <since_tizen> 3 </since_tizen>
1864             public Hover Hover
1865             {
1866                 get
1867                 {
1868                     return _hover;
1869                 }
1870                 set
1871                 {
1872                     _hover = value;
1873                 }
1874             }
1875         }
1876
1877         private EventHandlerWithReturnType<object, HoverEventArgs, bool> _hoverEventHandler;
1878         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
1879         private delegate bool HoverEventCallbackType(IntPtr view, IntPtr hoverEvent);
1880         private HoverEventCallbackType _hoverEventCallback;
1881
1882         /// <summary>
1883         /// An event for the hovered signal which can be used to subscribe or unsubscribe the event handler provided by the user.<br />
1884         /// The hovered signal is emitted when the hover input is received.<br />
1885         /// </summary>
1886         /// <since_tizen> 3 </since_tizen>
1887         public event EventHandlerWithReturnType<object, HoverEventArgs, bool> HoverEvent
1888         {
1889             add
1890             {
1891                 if (_hoverEventHandler == null)
1892                 {
1893                     _hoverEventCallback = OnHoverEvent;
1894                     this.HoveredSignal().Connect(_hoverEventCallback);
1895                 }
1896
1897                 _hoverEventHandler += value;
1898             }
1899
1900             remove
1901             {
1902                 _hoverEventHandler -= value;
1903
1904                 if (_hoverEventHandler == null && HoveredSignal().Empty() == false)
1905                 {
1906                     this.HoveredSignal().Disconnect(_hoverEventCallback);
1907                 }
1908
1909             }
1910         }
1911
1912         // Callback for View Hover signal
1913         private bool OnHoverEvent(IntPtr view, IntPtr hoverEvent)
1914         {
1915             if (hoverEvent == global::System.IntPtr.Zero)
1916             {
1917                 NUILog.Error("hoverEvent should not be null!");
1918                 return true;
1919             }
1920
1921             HoverEventArgs e = new HoverEventArgs();
1922
1923             e.Hover = Tizen.NUI.Hover.GetHoverFromPtr(hoverEvent);
1924
1925             if (_hoverEventHandler != null)
1926             {
1927                 return _hoverEventHandler(this, e);
1928             }
1929             return false;
1930         }
1931
1932
1933         /// <summary>
1934         /// Event arguments that passed via the wheel signal.
1935         /// </summary>
1936         /// <since_tizen> 3 </since_tizen>
1937         public class WheelEventArgs : EventArgs
1938         {
1939             private Wheel _wheel;
1940
1941             /// <summary>
1942             /// WheelEvent - store a wheel rolling type: MOUSE_WHEEL or CUSTOM_WHEEL.
1943             /// </summary>
1944             /// <since_tizen> 3 </since_tizen>
1945             public Wheel Wheel
1946             {
1947                 get
1948                 {
1949                     return _wheel;
1950                 }
1951                 set
1952                 {
1953                     _wheel = value;
1954                 }
1955             }
1956         }
1957
1958         private EventHandlerWithReturnType<object, WheelEventArgs, bool> _wheelEventHandler;
1959         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
1960         private delegate bool WheelEventCallbackType(IntPtr view, IntPtr wheelEvent);
1961         private WheelEventCallbackType _wheelEventCallback;
1962
1963         /// <summary>
1964         /// An event for the WheelMoved signal which can be used to subscribe or unsubscribe the event handler provided by the user.<br />
1965         /// The WheelMoved signal is emitted when the wheel event is received.<br />
1966         /// </summary>
1967         /// <since_tizen> 3 </since_tizen>
1968         public event EventHandlerWithReturnType<object, WheelEventArgs, bool> WheelEvent
1969         {
1970             add
1971             {
1972                 if (_wheelEventHandler == null)
1973                 {
1974                     _wheelEventCallback = OnWheelEvent;
1975                     this.WheelEventSignal().Connect(_wheelEventCallback);
1976                 }
1977
1978                 _wheelEventHandler += value;
1979             }
1980
1981             remove
1982             {
1983                 _wheelEventHandler -= value;
1984
1985                 if (_wheelEventHandler == null && WheelEventSignal().Empty() == false)
1986                 {
1987                     this.WheelEventSignal().Disconnect(_wheelEventCallback);
1988                 }
1989
1990             }
1991         }
1992
1993         // Callback for View Wheel signal
1994         private bool OnWheelEvent(IntPtr view, IntPtr wheelEvent)
1995         {
1996             if (wheelEvent == global::System.IntPtr.Zero)
1997             {
1998                 NUILog.Error("wheelEvent should not be null!");
1999                 return true;
2000             }
2001
2002             WheelEventArgs e = new WheelEventArgs();
2003
2004             e.Wheel = Tizen.NUI.Wheel.GetWheelFromPtr(wheelEvent);
2005
2006             if (_wheelEventHandler != null)
2007             {
2008                 return _wheelEventHandler(this, e);
2009             }
2010             return false;
2011         }
2012
2013
2014         private EventHandler _onWindowEventHandler;
2015         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
2016         private delegate void OnWindowEventCallbackType(IntPtr control);
2017         private OnWindowEventCallbackType _onWindowEventCallback;
2018
2019         /// <summary>
2020         /// An event for the OnWindow signal which can be used to subscribe or unsubscribe the event handler.<br />
2021         /// The OnWindow signal is emitted after the view has been connected to the window.<br />
2022         /// </summary>
2023         /// <since_tizen> 3 </since_tizen>
2024         public event EventHandler AddedToWindow
2025         {
2026             add
2027             {
2028                 if (_onWindowEventHandler == null)
2029                 {
2030                     _onWindowEventCallback = OnWindow;
2031                     this.OnWindowSignal().Connect(_onWindowEventCallback);
2032                 }
2033
2034                 _onWindowEventHandler += value;
2035             }
2036
2037             remove
2038             {
2039                 _onWindowEventHandler -= value;
2040
2041                 if (_onWindowEventHandler == null && OnWindowSignal().Empty() == false)
2042                 {
2043                     this.OnWindowSignal().Disconnect(_onWindowEventCallback);
2044                 }
2045             }
2046         }
2047
2048         // Callback for View OnWindow signal
2049         private void OnWindow(IntPtr data)
2050         {
2051             if (_onWindowEventHandler != null)
2052             {
2053                 _onWindowEventHandler(this, null);
2054             }
2055         }
2056
2057
2058         private EventHandler _offWindowEventHandler;
2059         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
2060         private delegate void OffWindowEventCallbackType(IntPtr control);
2061         private OffWindowEventCallbackType _offWindowEventCallback;
2062
2063         /// <summary>
2064         /// An event for the OffWindow signal, which can be used to subscribe or unsubscribe the event handler.<br />
2065         /// OffWindow signal is emitted after the view has been disconnected from the window.<br />
2066         /// </summary>
2067         /// <since_tizen> 3 </since_tizen>
2068         public event EventHandler RemovedFromWindow
2069         {
2070             add
2071             {
2072                 if (_offWindowEventHandler == null)
2073                 {
2074                     _offWindowEventCallback = OffWindow;
2075                     this.OffWindowSignal().Connect(_offWindowEventCallback);
2076                 }
2077
2078                 _offWindowEventHandler += value;
2079             }
2080
2081             remove
2082             {
2083                 _offWindowEventHandler -= value;
2084
2085                 if (_offWindowEventHandler == null && OffWindowSignal().Empty() == false)
2086                 {
2087                     this.OffWindowSignal().Disconnect(_offWindowEventCallback);
2088                 }
2089             }
2090         }
2091
2092         // Callback for View OffWindow signal
2093         private void OffWindow(IntPtr data)
2094         {
2095             if (_offWindowEventHandler != null)
2096             {
2097                 _offWindowEventHandler(this, null);
2098             }
2099         }
2100
2101         /// <summary>
2102         /// Event arguments of visibility changed.
2103         /// </summary>
2104         /// <since_tizen> 3 </since_tizen>
2105         public class VisibilityChangedEventArgs : EventArgs
2106         {
2107             private View _view;
2108             private bool _visibility;
2109             private VisibilityChangeType _type;
2110
2111             /// <summary>
2112             /// The view, or child of view, whose visibility has changed.
2113             /// </summary>
2114             /// <since_tizen> 3 </since_tizen>
2115             public View View
2116             {
2117                 get
2118                 {
2119                     return _view;
2120                 }
2121                 set
2122                 {
2123                     _view = value;
2124                 }
2125             }
2126
2127             /// <summary>
2128             /// Whether the view is now visible or not.
2129             /// </summary>
2130             /// <since_tizen> 3 </since_tizen>
2131             public bool Visibility
2132             {
2133                 get
2134                 {
2135                     return _visibility;
2136                 }
2137                 set
2138                 {
2139                     _visibility = value;
2140                 }
2141             }
2142
2143             /// <summary>
2144             /// Whether the view's visible property has changed or a parent's.
2145             /// </summary>
2146             /// <since_tizen> 3 </since_tizen>
2147             public VisibilityChangeType Type
2148             {
2149                 get
2150                 {
2151                     return _type;
2152                 }
2153                 set
2154                 {
2155                     _type = value;
2156                 }
2157             }
2158         }
2159
2160         private EventHandler<VisibilityChangedEventArgs> _visibilityChangedEventHandler;
2161         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
2162         private delegate void VisibilityChangedEventCallbackType(IntPtr data, bool visibility, VisibilityChangeType type);
2163         private VisibilityChangedEventCallbackType _visibilityChangedEventCallback;
2164
2165         /// <summary>
2166         /// An event for visibility change which can be used to subscribe or unsubscribe the event handler.<br />
2167         /// This signal is emitted when the visible property of this or a parent view is changed.<br />
2168         /// </summary>
2169         /// <since_tizen> 3 </since_tizen>
2170         public event EventHandler<VisibilityChangedEventArgs> VisibilityChanged
2171         {
2172             add
2173             {
2174                 if (_visibilityChangedEventHandler == null)
2175                 {
2176                     _visibilityChangedEventCallback = OnVisibilityChanged;
2177                     VisibilityChangedSignal(this).Connect(_visibilityChangedEventCallback);
2178                 }
2179
2180                 _visibilityChangedEventHandler += value;
2181             }
2182
2183             remove
2184             {
2185                 _visibilityChangedEventHandler -= value;
2186
2187                 if (_visibilityChangedEventHandler == null && VisibilityChangedSignal(this).Empty() == false)
2188                 {
2189                     VisibilityChangedSignal(this).Disconnect(_visibilityChangedEventCallback);
2190                 }
2191             }
2192         }
2193
2194         // Callback for View visibility change signal
2195         private void OnVisibilityChanged(IntPtr data, bool visibility, VisibilityChangeType type)
2196         {
2197             VisibilityChangedEventArgs e = new VisibilityChangedEventArgs();
2198             if (data != null)
2199             {
2200                 e.View = Registry.GetManagedBaseHandleFromNativePtr(data) as View;
2201             }
2202             e.Visibility = visibility;
2203             e.Type = type;
2204
2205             if (_visibilityChangedEventHandler != null)
2206             {
2207                 _visibilityChangedEventHandler(this, e);
2208             }
2209         }
2210
2211
2212         /// <summary>
2213         /// Event arguments of layout direction changed.
2214         /// </summary>
2215         /// <since_tizen> 4 </since_tizen>
2216         public class LayoutDirectionChangedEventArgs : EventArgs
2217         {
2218             private View _view;
2219             private ViewLayoutDirectionType _type;
2220
2221             /// <summary>
2222             /// The view, or child of view, whose layout direction has changed.
2223             /// </summary>
2224             /// <since_tizen> 4 </since_tizen>
2225             public View View
2226             {
2227                 get
2228                 {
2229                     return _view;
2230                 }
2231                 set
2232                 {
2233                     _view = value;
2234                 }
2235             }
2236
2237             /// <summary>
2238             /// Whether the view's layout direction property has changed or a parent's.
2239             /// </summary>
2240             /// <since_tizen> 4 </since_tizen>
2241             public ViewLayoutDirectionType Type
2242             {
2243                 get
2244                 {
2245                     return _type;
2246                 }
2247                 set
2248                 {
2249                     _type = value;
2250                 }
2251             }
2252         }
2253
2254         private EventHandler<LayoutDirectionChangedEventArgs> _layoutDirectionChangedEventHandler;
2255         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
2256         private delegate void LayoutDirectionChangedEventCallbackType(IntPtr data, ViewLayoutDirectionType type);
2257         private LayoutDirectionChangedEventCallbackType _layoutDirectionChangedEventCallback;
2258
2259         /// <summary>
2260         /// Event for layout direction change which can be used to subscribe/unsubscribe the event handler.<br />
2261         /// This signal is emitted when the layout direction property of this or a parent view is changed.<br />
2262         /// </summary>
2263         /// <since_tizen> 4 </since_tizen>
2264         public event EventHandler<LayoutDirectionChangedEventArgs> LayoutDirectionChanged
2265         {
2266             add
2267             {
2268                 if (_layoutDirectionChangedEventHandler == null)
2269                 {
2270                     _layoutDirectionChangedEventCallback = OnLayoutDirectionChanged;
2271                     LayoutDirectionChangedSignal(this).Connect(_layoutDirectionChangedEventCallback);
2272                 }
2273
2274                 _layoutDirectionChangedEventHandler += value;
2275             }
2276
2277             remove
2278             {
2279                 _layoutDirectionChangedEventHandler -= value;
2280
2281                 if (_layoutDirectionChangedEventHandler == null && LayoutDirectionChangedSignal(this).Empty() == false)
2282                 {
2283                     LayoutDirectionChangedSignal(this).Disconnect(_layoutDirectionChangedEventCallback);
2284                 }
2285             }
2286         }
2287
2288         // Callback for View layout direction change signal
2289         private void OnLayoutDirectionChanged(IntPtr data, ViewLayoutDirectionType type)
2290         {
2291             LayoutDirectionChangedEventArgs e = new LayoutDirectionChangedEventArgs();
2292             if (data != null)
2293             {
2294                 e.View = Registry.GetManagedBaseHandleFromNativePtr(data) as View;
2295             }
2296             e.Type = type;
2297
2298             if (_layoutDirectionChangedEventHandler != null)
2299             {
2300                 _layoutDirectionChangedEventHandler(this, e);
2301             }
2302         }
2303
2304         // Resource Ready Signal
2305
2306         private EventHandler _resourcesLoadedEventHandler;
2307         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
2308         private delegate void ResourcesLoadedCallbackType(IntPtr control);
2309         private ResourcesLoadedCallbackType _ResourcesLoadedCallback;
2310
2311         /// <summary>
2312         /// An event for the ResourcesLoadedSignal signal which can be used to subscribe or unsubscribe the event handler provided by the user.<br />
2313         /// This signal is emitted after all resources required by a view are loaded and ready.<br />
2314         /// </summary>
2315         /// <since_tizen> 3 </since_tizen>
2316         public event EventHandler ResourcesLoaded
2317         {
2318             add
2319             {
2320                 if (_resourcesLoadedEventHandler == null)
2321                 {
2322                     _ResourcesLoadedCallback = OnResourcesLoaded;
2323                     this.ResourcesLoadedSignal().Connect(_ResourcesLoadedCallback);
2324                 }
2325
2326                 _resourcesLoadedEventHandler += value;
2327             }
2328
2329             remove
2330             {
2331                 _resourcesLoadedEventHandler -= value;
2332
2333                 if (_resourcesLoadedEventHandler == null && ResourcesLoadedSignal().Empty() == false)
2334                 {
2335                     this.ResourcesLoadedSignal().Disconnect(_ResourcesLoadedCallback);
2336                 }
2337             }
2338         }
2339
2340         private void OnResourcesLoaded(IntPtr view)
2341         {
2342             if (_resourcesLoadedEventHandler != null)
2343             {
2344                 _resourcesLoadedEventHandler(this, null);
2345             }
2346         }
2347
2348         internal IntPtr GetPtrfromView()
2349         {
2350             return (IntPtr)swigCPtr;
2351         }
2352
2353         internal class Property
2354         {
2355             internal static readonly int TOOLTIP = NDalicManualPINVOKE.View_Property_TOOLTIP_get();
2356             internal static readonly int STATE = NDalicManualPINVOKE.View_Property_STATE_get();
2357             internal static readonly int SUB_STATE = NDalicManualPINVOKE.View_Property_SUB_STATE_get();
2358             internal static readonly int LEFT_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_LEFT_FOCUSABLE_ACTOR_ID_get();
2359             internal static readonly int RIGHT_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_RIGHT_FOCUSABLE_ACTOR_ID_get();
2360             internal static readonly int UP_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_UP_FOCUSABLE_ACTOR_ID_get();
2361             internal static readonly int DOWN_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_DOWN_FOCUSABLE_ACTOR_ID_get();
2362             internal static readonly int STYLE_NAME = NDalicPINVOKE.View_Property_STYLE_NAME_get();
2363             internal static readonly int BACKGROUND = NDalicPINVOKE.View_Property_BACKGROUND_get();
2364             internal static readonly int SIBLING_ORDER = NDalicManualPINVOKE.Actor_Property_SIBLING_ORDER_get();
2365             internal static readonly int OPACITY = NDalicManualPINVOKE.Actor_Property_OPACITY_get();
2366             internal static readonly int SCREEN_POSITION = NDalicManualPINVOKE.Actor_Property_SCREEN_POSITION_get();
2367             internal static readonly int POSITION_USES_ANCHOR_POINT = NDalicManualPINVOKE.Actor_Property_POSITION_USES_ANCHOR_POINT_get();
2368             internal static readonly int PARENT_ORIGIN = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_get();
2369             internal static readonly int PARENT_ORIGIN_X = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_X_get();
2370             internal static readonly int PARENT_ORIGIN_Y = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_Y_get();
2371             internal static readonly int PARENT_ORIGIN_Z = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_Z_get();
2372             internal static readonly int ANCHOR_POINT = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_get();
2373             internal static readonly int ANCHOR_POINT_X = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_X_get();
2374             internal static readonly int ANCHOR_POINT_Y = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_Y_get();
2375             internal static readonly int ANCHOR_POINT_Z = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_Z_get();
2376             internal static readonly int SIZE = NDalicPINVOKE.Actor_Property_SIZE_get();
2377             internal static readonly int SIZE_WIDTH = NDalicPINVOKE.Actor_Property_SIZE_WIDTH_get();
2378             internal static readonly int SIZE_HEIGHT = NDalicPINVOKE.Actor_Property_SIZE_HEIGHT_get();
2379             internal static readonly int SIZE_DEPTH = NDalicPINVOKE.Actor_Property_SIZE_DEPTH_get();
2380             internal static readonly int POSITION = NDalicPINVOKE.Actor_Property_POSITION_get();
2381             internal static readonly int POSITION_X = NDalicPINVOKE.Actor_Property_POSITION_X_get();
2382             internal static readonly int POSITION_Y = NDalicPINVOKE.Actor_Property_POSITION_Y_get();
2383             internal static readonly int POSITION_Z = NDalicPINVOKE.Actor_Property_POSITION_Z_get();
2384             internal static readonly int WORLD_POSITION = NDalicPINVOKE.Actor_Property_WORLD_POSITION_get();
2385             internal static readonly int WORLD_POSITION_X = NDalicPINVOKE.Actor_Property_WORLD_POSITION_X_get();
2386             internal static readonly int WORLD_POSITION_Y = NDalicPINVOKE.Actor_Property_WORLD_POSITION_Y_get();
2387             internal static readonly int WORLD_POSITION_Z = NDalicPINVOKE.Actor_Property_WORLD_POSITION_Z_get();
2388             internal static readonly int ORIENTATION = NDalicPINVOKE.Actor_Property_ORIENTATION_get();
2389             internal static readonly int WORLD_ORIENTATION = NDalicPINVOKE.Actor_Property_WORLD_ORIENTATION_get();
2390             internal static readonly int SCALE = NDalicPINVOKE.Actor_Property_SCALE_get();
2391             internal static readonly int SCALE_X = NDalicPINVOKE.Actor_Property_SCALE_X_get();
2392             internal static readonly int SCALE_Y = NDalicPINVOKE.Actor_Property_SCALE_Y_get();
2393             internal static readonly int SCALE_Z = NDalicPINVOKE.Actor_Property_SCALE_Z_get();
2394             internal static readonly int WORLD_SCALE = NDalicPINVOKE.Actor_Property_WORLD_SCALE_get();
2395             internal static readonly int VISIBLE = NDalicPINVOKE.Actor_Property_VISIBLE_get();
2396             internal static readonly int WORLD_COLOR = NDalicPINVOKE.Actor_Property_WORLD_COLOR_get();
2397             internal static readonly int WORLD_MATRIX = NDalicPINVOKE.Actor_Property_WORLD_MATRIX_get();
2398             internal static readonly int NAME = NDalicPINVOKE.Actor_Property_NAME_get();
2399             internal static readonly int SENSITIVE = NDalicPINVOKE.Actor_Property_SENSITIVE_get();
2400             internal static readonly int LEAVE_REQUIRED = NDalicPINVOKE.Actor_Property_LEAVE_REQUIRED_get();
2401             internal static readonly int INHERIT_ORIENTATION = NDalicPINVOKE.Actor_Property_INHERIT_ORIENTATION_get();
2402             internal static readonly int INHERIT_SCALE = NDalicPINVOKE.Actor_Property_INHERIT_SCALE_get();
2403             internal static readonly int DRAW_MODE = NDalicPINVOKE.Actor_Property_DRAW_MODE_get();
2404             internal static readonly int SIZE_MODE_FACTOR = NDalicPINVOKE.Actor_Property_SIZE_MODE_FACTOR_get();
2405             internal static readonly int WIDTH_RESIZE_POLICY = NDalicPINVOKE.Actor_Property_WIDTH_RESIZE_POLICY_get();
2406             internal static readonly int HEIGHT_RESIZE_POLICY = NDalicPINVOKE.Actor_Property_HEIGHT_RESIZE_POLICY_get();
2407             internal static readonly int SIZE_SCALE_POLICY = NDalicPINVOKE.Actor_Property_SIZE_SCALE_POLICY_get();
2408             internal static readonly int WIDTH_FOR_HEIGHT = NDalicPINVOKE.Actor_Property_WIDTH_FOR_HEIGHT_get();
2409             internal static readonly int HEIGHT_FOR_WIDTH = NDalicPINVOKE.Actor_Property_HEIGHT_FOR_WIDTH_get();
2410             internal static readonly int MINIMUM_SIZE = NDalicPINVOKE.Actor_Property_MINIMUM_SIZE_get();
2411             internal static readonly int MAXIMUM_SIZE = NDalicPINVOKE.Actor_Property_MAXIMUM_SIZE_get();
2412             internal static readonly int INHERIT_POSITION = NDalicPINVOKE.Actor_Property_INHERIT_POSITION_get();
2413             internal static readonly int CLIPPING_MODE = NDalicPINVOKE.Actor_Property_CLIPPING_MODE_get();
2414             internal static readonly int INHERIT_LAYOUT_DIRECTION = NDalicManualPINVOKE.Actor_Property_INHERIT_LAYOUT_DIRECTION_get();
2415             internal static readonly int LAYOUT_DIRECTION = NDalicManualPINVOKE.Actor_Property_LAYOUT_DIRECTION_get();
2416             internal static readonly int MARGIN = NDalicPINVOKE.View_Property_MARGIN_get();
2417             internal static readonly int PADDING = NDalicPINVOKE.View_Property_PADDING_get();
2418         }
2419
2420         /// <summary>
2421         /// Describes the direction to move the focus towards.
2422         /// </summary>
2423         /// <since_tizen> 3 </since_tizen>
2424         public enum FocusDirection
2425         {
2426             /// <summary>
2427             /// Move keyboard focus towards the left direction.
2428             /// </summary>
2429             /// <since_tizen> 3 </since_tizen>
2430             Left,
2431             /// <summary>
2432             /// Move keyboard focus towards the right direction.
2433             /// </summary>
2434             /// <since_tizen> 3 </since_tizen>
2435             Right,
2436             /// <summary>
2437             /// Move keyboard focus towards the up direction.
2438             /// </summary>
2439             /// <since_tizen> 3 </since_tizen>
2440             Up,
2441             /// <summary>
2442             /// Move keyboard focus towards the down direction.
2443             /// </summary>
2444             /// <since_tizen> 3 </since_tizen>
2445             Down,
2446             /// <summary>
2447             /// Move keyboard focus towards the previous page direction.
2448             /// </summary>
2449             /// <since_tizen> 3 </since_tizen>
2450             PageUp,
2451             /// <summary>
2452             /// Move keyboard focus towards the next page direction.
2453             /// </summary>
2454             /// <since_tizen> 3 </since_tizen>
2455             PageDown
2456         }
2457
2458         /// <summary>
2459         /// Creates a new instance of a view.
2460         /// </summary>
2461         /// <since_tizen> 3 </since_tizen>
2462         public View() : this(NDalicPINVOKE.View_New(), true)
2463         {
2464             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2465         }
2466         internal View(View uiControl) : this(NDalicPINVOKE.new_View__SWIG_1(View.getCPtr(uiControl)), true)
2467         {
2468             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2469         }
2470
2471         private View ConvertIdToView(uint id)
2472         {
2473             View view = null;
2474             if (GetParent() is View)
2475             {
2476                 View parentView = GetParent() as View;
2477                 view = parentView.FindChildById(id);
2478             }
2479
2480             if (!view)
2481             {
2482                 view = Window.Instance.GetRootLayer().FindChildById(id);
2483             }
2484
2485             return view;
2486         }
2487
2488         internal void SetKeyInputFocus()
2489         {
2490             NDalicPINVOKE.View_SetKeyInputFocus(swigCPtr);
2491             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2492         }
2493
2494         /// <summary>
2495         /// Queries whether the view has a focus.
2496         /// </summary>
2497         /// <returns>True if this view has a focus.</returns>
2498         /// <since_tizen> 3 </since_tizen>
2499         public bool HasFocus()
2500         {
2501             bool ret = NDalicPINVOKE.View_HasKeyInputFocus(swigCPtr);
2502             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2503             return ret;
2504         }
2505
2506         internal void ClearKeyInputFocus()
2507         {
2508             NDalicPINVOKE.View_ClearKeyInputFocus(swigCPtr);
2509             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2510         }
2511
2512         internal PinchGestureDetector GetPinchGestureDetector()
2513         {
2514             PinchGestureDetector ret = new PinchGestureDetector(NDalicPINVOKE.View_GetPinchGestureDetector(swigCPtr), true);
2515             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2516             return ret;
2517         }
2518
2519         internal PanGestureDetector GetPanGestureDetector()
2520         {
2521             PanGestureDetector ret = new PanGestureDetector(NDalicPINVOKE.View_GetPanGestureDetector(swigCPtr), true);
2522             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2523             return ret;
2524         }
2525
2526         internal TapGestureDetector GetTapGestureDetector()
2527         {
2528             TapGestureDetector ret = new TapGestureDetector(NDalicPINVOKE.View_GetTapGestureDetector(swigCPtr), true);
2529             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2530             return ret;
2531         }
2532
2533         internal LongPressGestureDetector GetLongPressGestureDetector()
2534         {
2535             LongPressGestureDetector ret = new LongPressGestureDetector(NDalicPINVOKE.View_GetLongPressGestureDetector(swigCPtr), true);
2536             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2537             return ret;
2538         }
2539
2540         /// <summary>
2541         /// Sets the name of the style to be applied to the view.
2542         /// </summary>
2543         /// <param name="styleName">A string matching a style described in a stylesheet.</param>
2544         /// <since_tizen> 3 </since_tizen>
2545         public void SetStyleName(string styleName)
2546         {
2547             NDalicPINVOKE.View_SetStyleName(swigCPtr, styleName);
2548             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2549         }
2550
2551         /// <summary>
2552         /// Retrieves the name of the style to be applied to the view (if any).
2553         /// </summary>
2554         /// <returns>A string matching a style, or an empty string.</returns>
2555         /// <since_tizen> 3 </since_tizen>
2556         public string GetStyleName()
2557         {
2558             string ret = NDalicPINVOKE.View_GetStyleName(swigCPtr);
2559             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2560             return ret;
2561         }
2562
2563         internal void SetBackgroundColor(Vector4 color)
2564         {
2565             NDalicPINVOKE.View_SetBackgroundColor(swigCPtr, Vector4.getCPtr(color));
2566             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2567         }
2568
2569         internal Vector4 GetBackgroundColor()
2570         {
2571             Vector4 ret = new Vector4(NDalicPINVOKE.View_GetBackgroundColor(swigCPtr), true);
2572             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2573             return ret;
2574         }
2575
2576         internal void SetBackgroundImage(Image image)
2577         {
2578             NDalicPINVOKE.View_SetBackgroundImage(swigCPtr, Image.getCPtr(image));
2579             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2580         }
2581
2582         /// <summary>
2583         /// Clears the background.
2584         /// </summary>
2585         /// <since_tizen> 3 </since_tizen>
2586         public void ClearBackground()
2587         {
2588             NDalicPINVOKE.View_ClearBackground(swigCPtr);
2589             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2590         }
2591
2592         internal ControlKeySignal KeyEventSignal()
2593         {
2594             ControlKeySignal ret = new ControlKeySignal(NDalicPINVOKE.View_KeyEventSignal(swigCPtr), false);
2595             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2596             return ret;
2597         }
2598
2599         internal KeyInputFocusSignal KeyInputFocusGainedSignal()
2600         {
2601             KeyInputFocusSignal ret = new KeyInputFocusSignal(NDalicPINVOKE.View_KeyInputFocusGainedSignal(swigCPtr), false);
2602             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2603             return ret;
2604         }
2605
2606         internal KeyInputFocusSignal KeyInputFocusLostSignal()
2607         {
2608             KeyInputFocusSignal ret = new KeyInputFocusSignal(NDalicPINVOKE.View_KeyInputFocusLostSignal(swigCPtr), false);
2609             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2610             return ret;
2611         }
2612
2613         internal View(ViewImpl implementation) : this(NDalicPINVOKE.new_View__SWIG_2(ViewImpl.getCPtr(implementation)), true)
2614         {
2615             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2616         }
2617
2618         internal enum PropertyRange
2619         {
2620             PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX,
2621             CONTROL_PROPERTY_START_INDEX = PROPERTY_START_INDEX,
2622             CONTROL_PROPERTY_END_INDEX = CONTROL_PROPERTY_START_INDEX + 1000
2623         }
2624
2625         /// <summary>
2626         /// The StyleName, type string.
2627         /// </summary>
2628         /// <since_tizen> 3 </since_tizen>
2629         public string StyleName
2630         {
2631             get
2632             {
2633                 return (string)GetValue(StyleNameProperty);
2634             }
2635             set
2636             {
2637                 SetValue(StyleNameProperty, value);
2638                 NotifyPropertyChanged();
2639             }
2640         }
2641
2642         /// <summary>
2643         /// The mutually exclusive with BACKGROUND_IMAGE and BACKGROUND type Vector4.
2644         /// </summary>
2645         /// <since_tizen> 3 </since_tizen>
2646         public Color BackgroundColor
2647         {
2648             get
2649             {
2650                 return (Color)GetValue(BackgroundColorProperty);
2651             }
2652             set
2653             {
2654                 SetValue(BackgroundColorProperty, value);
2655                 NotifyPropertyChanged();
2656             }
2657         }
2658
2659         /// <summary>
2660         /// Creates an animation to animate the background color visual. If there is no
2661         /// background visual, creates one with transparent black as it's mixColor.
2662         /// </summary>
2663         /// <since_tizen> 3 </since_tizen>
2664         public Animation AnimateBackgroundColor(object destinationValue,
2665                                                  int startTime,
2666                                                  int endTime,
2667                                                  AlphaFunction.BuiltinFunctions? alphaFunction = null,
2668                                                  object initialValue = null)
2669         {
2670             Tizen.NUI.PropertyMap background = Background;
2671
2672             if (background.Empty())
2673             {
2674                 // If there is no background yet, ensure there is a transparent
2675                 // color visual
2676                 BackgroundColor = new Color(0.0f, 0.0f, 0.0f, 0.0f);
2677                 background = Background;
2678             }
2679             return AnimateColor("background", destinationValue, startTime, endTime, alphaFunction, initialValue);
2680         }
2681
2682         /// <summary>
2683         /// Creates an animation to animate the mixColor of the named visual.
2684         /// </summary>
2685         /// <since_tizen> 3 </since_tizen>
2686         public Animation AnimateColor(string targetVisual, object destinationColor, int startTime, int endTime, AlphaFunction.BuiltinFunctions? alphaFunction = null, object initialColor = null)
2687         {
2688             Animation animation = null;
2689             {
2690                 PropertyMap _animator = new PropertyMap();
2691                 if (alphaFunction != null)
2692                 {
2693                     _animator.Add("alphaFunction", new PropertyValue(AlphaFunction.BuiltinToPropertyKey(alphaFunction)));
2694                 }
2695
2696                 PropertyMap _timePeriod = new PropertyMap();
2697                 _timePeriod.Add("duration", new PropertyValue((endTime - startTime) / 1000.0f));
2698                 _timePeriod.Add("delay", new PropertyValue(startTime / 1000.0f));
2699                 _animator.Add("timePeriod", new PropertyValue(_timePeriod));
2700
2701                 PropertyMap _transition = new PropertyMap();
2702                 _transition.Add("animator", new PropertyValue(_animator));
2703                 _transition.Add("target", new PropertyValue(targetVisual));
2704                 _transition.Add("property", new PropertyValue("mixColor"));
2705
2706                 if (initialColor != null)
2707                 {
2708                     PropertyValue initValue = PropertyValue.CreateFromObject(initialColor);
2709                     _transition.Add("initialValue", initValue);
2710                 }
2711
2712                 PropertyValue destValue = PropertyValue.CreateFromObject(destinationColor);
2713                 _transition.Add("targetValue", destValue);
2714                 TransitionData _transitionData = new TransitionData(_transition);
2715
2716                 animation = new Animation(NDalicManualPINVOKE.View_CreateTransition(swigCPtr, TransitionData.getCPtr(_transitionData)), true);
2717                 if (NDalicPINVOKE.SWIGPendingException.Pending)
2718                     throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2719             }
2720             return animation;
2721         }
2722
2723         /// <summary>
2724         /// The mutually exclusive with BACKGROUND_COLOR and BACKGROUND type Map.
2725         /// </summary>
2726         /// <since_tizen> 3 </since_tizen>
2727         public string BackgroundImage
2728         {
2729             get
2730             {
2731                 return (string)GetValue(BackgroundImageProperty);
2732             }
2733             set
2734             {
2735                 SetValue(BackgroundImageProperty, value);
2736                 NotifyPropertyChanged();
2737             }
2738         }
2739
2740         /// <summary>
2741         /// The background of view.
2742         /// </summary>
2743         /// <since_tizen> 3 </since_tizen>
2744         public Tizen.NUI.PropertyMap Background
2745         {
2746             get
2747             {
2748                 return (PropertyMap)GetValue(BackgroundProperty);
2749             }
2750             set
2751             {
2752                 SetValue(BackgroundProperty, value);
2753                 NotifyPropertyChanged();
2754             }
2755         }
2756
2757
2758         /// <summary>
2759         /// The current state of the view.
2760         /// </summary>
2761         /// <since_tizen> 3 </since_tizen>
2762         public States State
2763         {
2764             get
2765             {
2766                 return (States)GetValue(StateProperty);
2767             }
2768             set
2769             {
2770                 SetValue(StateProperty, value);
2771                 NotifyPropertyChanged();
2772             }
2773         }
2774
2775         /// <summary>
2776         /// The current sub state of the view.
2777         /// </summary>
2778         /// <since_tizen> 3 </since_tizen>
2779         public States SubState
2780         {
2781             get
2782             {
2783                 return (States)GetValue(SubStateProperty);
2784             }
2785             set
2786             {
2787                 SetValue(SubStateProperty, value);
2788                 NotifyPropertyChanged();
2789             }
2790         }
2791
2792         /// <summary>
2793         /// Displays a tooltip
2794         /// </summary>
2795         /// <since_tizen> 3 </since_tizen>
2796         public Tizen.NUI.PropertyMap Tooltip
2797         {
2798             get
2799             {
2800                 return (PropertyMap)GetValue(TooltipProperty);
2801             }
2802             set
2803             {
2804                 SetValue(TooltipProperty, value);
2805                 NotifyPropertyChanged();
2806             }
2807         }
2808
2809         /// <summary>
2810         /// Displays a tooltip as a text.
2811         /// </summary>
2812         /// <since_tizen> 3 </since_tizen>
2813         public string TooltipText
2814         {
2815             set
2816             {
2817                 SetProperty(View.Property.TOOLTIP, new Tizen.NUI.PropertyValue(value));
2818                 NotifyPropertyChanged();
2819             }
2820         }
2821
2822         private int LeftFocusableViewId
2823         {
2824             get
2825             {
2826                 int temp = 0;
2827                 GetProperty(View.Property.LEFT_FOCUSABLE_VIEW_ID).Get(out temp);
2828                 return temp;
2829             }
2830             set
2831             {
2832                 SetProperty(View.Property.LEFT_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
2833             }
2834         }
2835
2836         private int RightFocusableViewId
2837         {
2838             get
2839             {
2840                 int temp = 0;
2841                 GetProperty(View.Property.RIGHT_FOCUSABLE_VIEW_ID).Get(out temp);
2842                 return temp;
2843             }
2844             set
2845             {
2846                 SetProperty(View.Property.RIGHT_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
2847             }
2848         }
2849
2850         private int UpFocusableViewId
2851         {
2852             get
2853             {
2854                 int temp = 0;
2855                 GetProperty(View.Property.UP_FOCUSABLE_VIEW_ID).Get(out temp);
2856                 return temp;
2857             }
2858             set
2859             {
2860                 SetProperty(View.Property.UP_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
2861             }
2862         }
2863
2864         private int DownFocusableViewId
2865         {
2866             get
2867             {
2868                 int temp = 0;
2869                 GetProperty(View.Property.DOWN_FOCUSABLE_VIEW_ID).Get(out temp);
2870                 return temp;
2871             }
2872             set
2873             {
2874                 SetProperty(View.Property.DOWN_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
2875             }
2876         }
2877
2878         /// <summary>
2879         /// The Child property of FlexContainer.<br />
2880         /// The proportion of the free space in the container, the flex item will receive.<br />
2881         /// If all items in the container set this property, their sizes will be proportional to the specified flex factor.<br />
2882         /// </summary>
2883         /// <since_tizen> 3 </since_tizen>
2884         public float Flex
2885         {
2886             get
2887             {
2888                 return (float)GetValue(FlexProperty);
2889             }
2890             set
2891             {
2892                 SetValue(FlexProperty, value);
2893                 NotifyPropertyChanged();
2894             }
2895         }
2896
2897         /// <summary>
2898         /// The Child property of FlexContainer.<br />
2899         /// The alignment of the flex item along the cross axis, which, if set, overides the default alignment for all items in the container.<br />
2900         /// </summary>
2901         /// <since_tizen> 3 </since_tizen>
2902         public int AlignSelf
2903         {
2904             get
2905             {
2906                 return (int)GetValue(AlignSelfProperty);
2907             }
2908             set
2909             {
2910                 SetValue(AlignSelfProperty, value);
2911                 NotifyPropertyChanged();
2912             }
2913         }
2914
2915         /// <summary>
2916         /// The Child property of FlexContainer.<br />
2917         /// The space around the flex item.<br />
2918         /// </summary>
2919         /// <since_tizen> 3 </since_tizen>
2920         public Vector4 FlexMargin
2921         {
2922             get
2923             {
2924                 return (Vector4)GetValue(FlexMarginProperty);
2925             }
2926             set
2927             {
2928                 SetValue(FlexMarginProperty, value);
2929                 NotifyPropertyChanged();
2930             }
2931         }
2932
2933         /// <summary>
2934         /// The top-left cell this child occupies, if not set, the first available cell is used.
2935         /// </summary>
2936         /// <since_tizen> 3 </since_tizen>
2937         public Vector2 CellIndex
2938         {
2939             get
2940             {
2941                 return (Vector2)GetValue(CellIndexProperty);
2942             }
2943             set
2944             {
2945                 SetValue(CellIndexProperty, value);
2946                 NotifyPropertyChanged();
2947             }
2948         }
2949
2950         /// <summary>
2951         /// The number of rows this child occupies, if not set, the default value is 1.
2952         /// </summary>
2953         /// <since_tizen> 3 </since_tizen>
2954         public float RowSpan
2955         {
2956             get
2957             {
2958                 return (float)GetValue(RowSpanProperty);
2959             }
2960             set
2961             {
2962                 SetValue(RowSpanProperty, value);
2963                 NotifyPropertyChanged();
2964             }
2965         }
2966
2967         /// <summary>
2968         /// The number of columns this child occupies, if not set, the default value is 1.
2969         /// </summary>
2970         /// <since_tizen> 3 </since_tizen>
2971         public float ColumnSpan
2972         {
2973             get
2974             {
2975                 return (float)GetValue(ColumnSpanProperty);
2976             }
2977             set
2978             {
2979                 SetValue(ColumnSpanProperty, value);
2980                 NotifyPropertyChanged();
2981             }
2982         }
2983
2984         /// <summary>
2985         /// The horizontal alignment of this child inside the cells, if not set, the default value is 'left'.
2986         /// </summary>
2987         /// <since_tizen> 3 </since_tizen>
2988         public Tizen.NUI.HorizontalAlignmentType CellHorizontalAlignment
2989         {
2990             get
2991             {
2992                 return (HorizontalAlignmentType)GetValue(CellHorizontalAlignmentProperty);
2993             }
2994             set
2995             {
2996                 SetValue(CellHorizontalAlignmentProperty, value);
2997                 NotifyPropertyChanged();
2998             }
2999         }
3000
3001         /// <summary>
3002         /// The vertical alignment of this child inside the cells, if not set, the default value is 'top'.
3003         /// </summary>
3004         /// <since_tizen> 3 </since_tizen>
3005         public Tizen.NUI.VerticalAlignmentType CellVerticalAlignment
3006         {
3007             get
3008             {
3009                 return (VerticalAlignmentType)GetValue(CellVerticalAlignmentProperty);
3010             }
3011             set
3012             {
3013                 SetValue(CellVerticalAlignmentProperty, value);
3014                 NotifyPropertyChanged();
3015             }
3016         }
3017
3018         /// <summary>
3019         /// The left focusable view.<br />
3020         /// This will return null if not set.<br />
3021         /// This will also return null if the specified left focusable view is not on a window.<br />
3022         /// </summary>
3023         /// <since_tizen> 3 </since_tizen>
3024         public View LeftFocusableView
3025         {
3026             // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
3027             get
3028             {
3029                 return (View)GetValue(LeftFocusableViewProperty);
3030             }
3031             set
3032             {
3033                 SetValue(LeftFocusableViewProperty, value);
3034                 NotifyPropertyChanged();
3035             }
3036         }
3037
3038         /// <summary>
3039         /// The right focusable view.<br />
3040         /// This will return null if not set.<br />
3041         /// This will also return null if the specified right focusable view is not on a window.<br />
3042         /// </summary>
3043         /// <since_tizen> 3 </since_tizen>
3044         public View RightFocusableView
3045         {
3046             // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
3047             get
3048             {
3049                 return (View)GetValue(RightFocusableViewProperty);
3050             }
3051             set
3052             {
3053                 SetValue(RightFocusableViewProperty, value);
3054                 NotifyPropertyChanged();
3055             }
3056         }
3057
3058         /// <summary>
3059         /// The up focusable view.<br />
3060         /// This will return null if not set.<br />
3061         /// This will also return null if the specified up focusable view is not on a window.<br />
3062         /// </summary>
3063         /// <since_tizen> 3 </since_tizen>
3064         public View UpFocusableView
3065         {
3066             // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
3067             get
3068             {
3069                 return (View)GetValue(UpFocusableViewProperty);
3070             }
3071             set
3072             {
3073                 SetValue(UpFocusableViewProperty, value);
3074                 NotifyPropertyChanged();
3075             }
3076         }
3077
3078         /// <summary>
3079         /// The down focusable view.<br />
3080         /// This will return null if not set.<br />
3081         /// This will also return null if the specified down focusable view is not on a window.<br />
3082         /// </summary>
3083         /// <since_tizen> 3 </since_tizen>
3084         public View DownFocusableView
3085         {
3086             // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
3087             get
3088             {
3089                 return (View)GetValue(DownFocusableViewProperty);
3090             }
3091             set
3092             {
3093                 SetValue(DownFocusableViewProperty, value);
3094                 NotifyPropertyChanged();
3095             }
3096         }
3097
3098         /// <summary>
3099         /// Whether the view should be focusable by keyboard navigation.
3100         /// </summary>
3101         /// <since_tizen> 3 </since_tizen>
3102         public bool Focusable
3103         {
3104             set
3105             {
3106                 SetValue(FocusableProperty, value);
3107                 NotifyPropertyChanged();
3108             }
3109             get
3110             {
3111                 return (bool)GetValue(FocusableProperty);
3112             }
3113         }
3114
3115         /// <summary>
3116         /// Enumeration for describing the states of the view.
3117         /// </summary>
3118         /// <since_tizen> 3 </since_tizen>
3119         public enum States
3120         {
3121             /// <summary>
3122             /// The normal state.
3123             /// </summary>
3124             Normal,
3125             /// <summary>
3126             /// The focused state.
3127             /// </summary>
3128             Focused,
3129             /// <summary>
3130             /// The disabled state.
3131             /// </summary>
3132             Disabled
3133         }
3134
3135         /// <summary>
3136         ///  Retrieves the position of the view.<br />
3137         ///  The coordinates are relative to the view's parent.<br />
3138         /// </summary>
3139         /// <since_tizen> 3 </since_tizen>
3140         public Position CurrentPosition
3141         {
3142             get
3143             {
3144                 return GetCurrentPosition();
3145             }
3146         }
3147
3148         /// <summary>
3149         /// Sets the size of a view for the width and the height.<br />
3150         /// Geometry can be scaled to fit within this area.<br />
3151         /// This does not interfere with the view's scale factor.<br />
3152         /// The views default depth is the minimum of width and height.<br />
3153         /// </summary>
3154         /// <remarks>
3155         /// This NUI object (Size2D) typed property can be configured by multiple cascade setting. <br />
3156         /// For example, this code ( view.Size2D.Width = 100; view.Size2D.Height = 100; ) is equivalent to this ( view.Size2D = new Size2D(100, 100); ). <br />
3157         /// Please note that this multi-cascade setting is especially possible for this NUI object (Size2D). <br />
3158         /// This means by default others are impossible so it is recommended that NUI object typed properties are configured by their constructor with parameters. <br />
3159         /// For example, this code is working fine : view.Scale = new Vector3( 2.0f, 1.5f, 0.0f); <br />
3160         /// but this will not work! : view.Scale.X = 2.0f; view.Scale.Y = 1.5f; <br />
3161         /// </remarks>
3162         /// <since_tizen> 3 </since_tizen>
3163         public Size2D Size2D
3164         {
3165             get
3166             {
3167                 Size2D temp = (Size2D)GetValue(Size2DProperty);
3168                 return new Size2D(OnSize2DChanged, temp.Width, temp.Height);
3169             }
3170             set
3171             {
3172                 SetValue(Size2DProperty, value);
3173                 SetProperty(LayoutItemWrapper.ChildProperty.WIDTH_SPECIFICATION, new Tizen.NUI.PropertyValue(value.Width));
3174                 SetProperty(LayoutItemWrapper.ChildProperty.HEIGHT_SPECIFICATION, new Tizen.NUI.PropertyValue(value.Height));
3175                 NotifyPropertyChanged();
3176             }
3177         }
3178
3179         private void OnSize2DChanged(int width, int height)
3180         {
3181             Size2D = new Size2D(width, height);
3182         }
3183
3184         /// <summary>
3185         ///  Retrieves the size of the view.<br />
3186         ///  The coordinates are relative to the view's parent.<br />
3187         /// </summary>
3188         /// <since_tizen> 3 </since_tizen>
3189         public Size2D CurrentSize
3190         {
3191             get
3192             {
3193                 return GetCurrentSize();
3194             }
3195         }
3196
3197         /// <summary>
3198         /// Retrieves and sets the view's opacity.<br />
3199         /// </summary>
3200         /// <since_tizen> 3 </since_tizen>
3201         public float Opacity
3202         {
3203             get
3204             {
3205                 return (float)GetValue(OpacityProperty);
3206             }
3207             set
3208             {
3209                 SetValue(OpacityProperty, value);
3210                 NotifyPropertyChanged();
3211             }
3212         }
3213
3214         /// <summary>
3215         /// Sets the position of the view for X and Y.<br />
3216         /// By default, sets the position vector between the parent origin and the pivot point (default).<br />
3217         /// If the position inheritance is disabled, sets the world position.<br />
3218         /// </summary>
3219         /// <remarks>
3220         /// This NUI object (Position2D) typed property can be configured by multiple cascade setting. <br />
3221         /// For example, this code ( view.Position2D.X = 100; view.Position2D.Y = 100; ) is equivalent to this ( view.Position2D = new Position2D(100, 100); ). <br />
3222         /// Please note that this multi-cascade setting is especially possible for this NUI object (Position2D). <br />
3223         /// This means by default others are impossible so it is recommended that NUI object typed properties are configured by their constructor with parameters. <br />
3224         /// For example, this code is working fine : view.Scale = new Vector3( 2.0f, 1.5f, 0.0f); <br />
3225         /// but this will not work! : view.Scale.X = 2.0f; view.Scale.Y = 1.5f; <br />
3226         /// </remarks>
3227         /// <since_tizen> 3 </since_tizen>
3228         public Position2D Position2D
3229         {
3230             get
3231             {
3232                 Position2D temp = (Position2D)GetValue(Position2DProperty);
3233                 return new Position2D(OnPosition2DChanged, temp.X, temp.Y);
3234             }
3235             set
3236             {
3237                 SetValue(Position2DProperty, value);
3238                 NotifyPropertyChanged();
3239             }
3240         }
3241
3242         private void OnPosition2DChanged(int x, int y)
3243         {
3244             Position2D = new Position2D(x, y);
3245         }
3246
3247         /// <summary>
3248         /// Retrieves the screen postion of the view.<br />
3249         /// </summary>
3250         /// <since_tizen> 3 </since_tizen>
3251         public Vector2 ScreenPosition
3252         {
3253             get
3254             {
3255                 Vector2 temp = new Vector2(0.0f, 0.0f);
3256                 GetProperty(View.Property.SCREEN_POSITION).Get(temp);
3257                 return temp;
3258             }
3259         }
3260
3261         /// <summary>
3262         /// Determines whether the pivot point should be used to determine the position of the view.
3263         /// This is true by default.
3264         /// </summary>
3265         /// <remarks>If false, then the top-left of the view is used for the position.
3266         /// Setting this to false will allow scaling or rotation around the anchor-point without affecting the view's position.
3267         /// </remarks>
3268         /// <since_tizen> 3 </since_tizen>
3269         public bool PositionUsesPivotPoint
3270         {
3271             get
3272             {
3273                 return (bool)GetValue(PositionUsesPivotPointProperty);
3274             }
3275             set
3276             {
3277                 SetValue(PositionUsesPivotPointProperty, value);
3278                 NotifyPropertyChanged();
3279             }
3280         }
3281
3282         /// <summary>
3283         /// Please do not use! this will be deprecated.
3284         /// </summary>
3285         /// Please do not use! this will be deprecated!
3286         /// Instead please use PositionUsesPivotPoint.
3287         /// <since_tizen> 3 </since_tizen>
3288         [Obsolete("Please do not use! This will be deprecated! Please use PositionUsesPivotPoint instead! " +
3289             "Like: " +
3290             "View view = new View(); " +
3291             "view.PivotPoint = PivotPoint.Center; " +
3292             "view.PositionUsesPivotPoint = true;")]
3293         [EditorBrowsable(EditorBrowsableState.Never)]
3294         public bool PositionUsesAnchorPoint
3295         {
3296             get
3297             {
3298                 bool temp = false;
3299                 GetProperty(View.Property.POSITION_USES_ANCHOR_POINT).Get(out temp);
3300                 return temp;
3301             }
3302             set
3303             {
3304                 SetProperty(View.Property.POSITION_USES_ANCHOR_POINT, new Tizen.NUI.PropertyValue(value));
3305                 NotifyPropertyChanged();
3306             }
3307         }
3308
3309         internal bool FocusState
3310         {
3311             get
3312             {
3313                 return IsKeyboardFocusable();
3314             }
3315             set
3316             {
3317                 SetKeyboardFocusable(value);
3318             }
3319         }
3320
3321         /// <summary>
3322         /// Queries whether the view is connected to the stage.<br />
3323         /// When a view is connected, it will be directly or indirectly parented to the root view.<br />
3324         /// </summary>
3325         /// <since_tizen> 3 </since_tizen>
3326         public bool IsOnWindow
3327         {
3328             get
3329             {
3330                 return OnWindow();
3331             }
3332         }
3333
3334         /// <summary>
3335         /// Gets the depth in the hierarchy for the view.
3336         /// </summary>
3337         /// <since_tizen> 3 </since_tizen>
3338         public int HierarchyDepth
3339         {
3340             get
3341             {
3342                 return GetHierarchyDepth();
3343             }
3344         }
3345
3346         /// <summary>
3347         /// Sets the sibling order of the view so the depth position can be defined within the same parent.
3348         /// </summary>
3349         /// <remarks>
3350         /// Note the initial value is 0. SiblingOrder should be bigger than 0 or equal to 0.
3351         /// Raise, Lower, RaiseToTop, LowerToBottom, RaiseAbove, and LowerBelow will override the sibling order.
3352         /// The values set by this property will likely change.
3353         /// </remarks>
3354         /// <since_tizen> 3 </since_tizen>
3355         public int SiblingOrder
3356         {
3357             get
3358             {
3359                 return (int)GetValue(SiblingOrderProperty);
3360             }
3361             set
3362             {
3363                 SetValue(SiblingOrderProperty, value);
3364                 NotifyPropertyChanged();
3365             }
3366         }
3367
3368         /// <summary>
3369         /// Returns the natural size of the view.
3370         /// </summary>
3371         /// <remarks>
3372         /// Deriving classes stipulate the natural size and by default a view has a zero natural size.
3373         /// </remarks>
3374         /// <since_tizen> 5 </since_tizen>
3375         public Vector3 NaturalSize
3376         {
3377             get
3378             {
3379                 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetNaturalSize(swigCPtr), true);
3380                 if (NDalicPINVOKE.SWIGPendingException.Pending)
3381                     throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3382                 return ret;
3383             }
3384         }
3385
3386         /// <summary>
3387         /// Returns the natural size (Size2D) of the view.
3388         /// </summary>
3389         /// <remarks>
3390         /// Deriving classes stipulate the natural size and by default a view has a zero natural size.
3391         /// </remarks>
3392         /// <since_tizen> 4 </since_tizen>
3393         public Size2D NaturalSize2D
3394         {
3395             get
3396             {
3397                 Vector3 temp = new Vector3(NDalicPINVOKE.Actor_GetNaturalSize(swigCPtr), true);
3398                 if (NDalicPINVOKE.SWIGPendingException.Pending)
3399                     throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3400
3401                 return new Size2D((int)temp.Width, (int)temp.Height);
3402             }
3403         }
3404
3405         /// <summary>
3406         /// Set the layout on this control.
3407         /// </summary>
3408         /// <remarks>
3409         /// </remarks>
3410         internal LayoutItem Layout
3411         {
3412             get
3413             {
3414                 IntPtr cPtr = Tizen.NUI.NDalicManualPINVOKE.GetLayout__SWIG_1(View.getCPtr(this));
3415
3416                 HandleRef CPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
3417                 BaseHandle basehandle = Registry.GetManagedBaseHandleFromNativePtr(CPtr.Handle);
3418                 NDalicPINVOKE.delete_BaseHandle(CPtr);
3419                 CPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
3420
3421                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3422
3423                 return basehandle as LayoutItem;
3424             }
3425             set
3426             {
3427                 Tizen.NUI.NDalicManualPINVOKE.SetLayout__SWIG_1(View.getCPtr(this), LayoutItem.getCPtr(value));
3428                 value.LayoutChildren.Clear();
3429                 layoutSet = true;
3430                 foreach (View view in Children)
3431                 {
3432                     value.LayoutChildren.Add(view.Layout);
3433                 }
3434             }
3435         }
3436
3437         /// <summary>
3438         /// Shows the view.
3439         /// </summary>
3440         /// <remarks>
3441         /// This is an asynchronous method.
3442         /// </remarks>
3443         /// <since_tizen> 3 </since_tizen>
3444         public void Show()
3445         {
3446             SetVisible(true);
3447         }
3448
3449         /// <summary>
3450         /// Hides the view.
3451         /// </summary>
3452         /// <remarks>
3453         /// This is an asynchronous method.
3454         /// If the view is hidden, then the view and its children will not be rendered.
3455         /// This is regardless of the individual visibility of the children, i.e., the view will only be rendered if all of its parents are shown.
3456         /// </remarks>
3457         /// <since_tizen> 3 </since_tizen>
3458         public void Hide()
3459         {
3460             SetVisible(false);
3461         }
3462
3463         internal void Raise()
3464         {
3465             var parentChildren = GetParent()?.Children;
3466
3467             if (parentChildren != null)
3468             {
3469                 int currentIndex = parentChildren.IndexOf(this);
3470
3471                 // If the view is not already the last item in the list.
3472                 if (currentIndex >= 0 && currentIndex < parentChildren.Count - 1)
3473                 {
3474                     View temp = parentChildren[currentIndex + 1];
3475                     parentChildren[currentIndex + 1] = this;
3476                     parentChildren[currentIndex] = temp;
3477
3478                     NDalicPINVOKE.Raise(swigCPtr);
3479                     if (NDalicPINVOKE.SWIGPendingException.Pending)
3480                         throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3481                 }
3482             }
3483
3484         }
3485
3486         internal void Lower()
3487         {
3488             var parentChildren = GetParent()?.Children;
3489
3490             if (parentChildren != null)
3491             {
3492                 int currentIndex = parentChildren.IndexOf(this);
3493
3494                 // If the view is not already the first item in the list.
3495                 if (currentIndex > 0 && currentIndex < parentChildren.Count)
3496                 {
3497                     View temp = parentChildren[currentIndex - 1];
3498                     parentChildren[currentIndex - 1] = this;
3499                     parentChildren[currentIndex] = temp;
3500
3501                     NDalicPINVOKE.Lower(swigCPtr);
3502                     if (NDalicPINVOKE.SWIGPendingException.Pending)
3503                         throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3504                 }
3505             }
3506         }
3507
3508         /// <summary>
3509         /// Raises the view above all other views.
3510         /// </summary>
3511         /// <remarks>
3512         /// Sibling order of views within the parent will be updated automatically.
3513         /// Once a raise or lower API is used, that view will then have an exclusive sibling order independent of insertion.
3514         /// </remarks>
3515         /// <since_tizen> 3 </since_tizen>
3516         public void RaiseToTop()
3517         {
3518             var parentChildren = GetParent()?.Children;
3519
3520             if (parentChildren != null)
3521             {
3522                 parentChildren.Remove(this);
3523                 parentChildren.Add(this);
3524
3525                 NDalicPINVOKE.RaiseToTop(swigCPtr);
3526                 if (NDalicPINVOKE.SWIGPendingException.Pending)
3527                     throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3528             }
3529
3530         }
3531
3532         /// <summary>
3533         /// Lowers the view to the bottom of all views.
3534         /// </summary>
3535         /// <remarks>
3536         /// The sibling order of views within the parent will be updated automatically.
3537         /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
3538         /// </remarks>
3539         /// <since_tizen> 3 </since_tizen>
3540         public void LowerToBottom()
3541         {
3542             var parentChildren = GetParent()?.Children;
3543
3544             if (parentChildren != null)
3545             {
3546                 parentChildren.Remove(this);
3547                 parentChildren.Insert(0, this);
3548
3549                 NDalicPINVOKE.LowerToBottom(swigCPtr);
3550                 if (NDalicPINVOKE.SWIGPendingException.Pending)
3551                     throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3552             }
3553         }
3554
3555         /// <summary>
3556         /// Queries if all resources required by a view are loaded and ready.
3557         /// </summary>
3558         /// <remarks>Most resources are only loaded when the control is placed on the stage.
3559         /// </remarks>
3560         /// <since_tizen> 3 </since_tizen>
3561         public bool IsResourceReady()
3562         {
3563             bool ret = NDalicPINVOKE.IsResourceReady(swigCPtr);
3564             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3565             return ret;
3566         }
3567
3568         /// <summary>
3569         /// Raises the view to above the target view.
3570         /// </summary>
3571         /// <remarks>The sibling order of views within the parent will be updated automatically.
3572         /// Views on the level above the target view will still be shown above this view.
3573         /// Raising this view above views with the same sibling order as each other will raise this view above them.
3574         /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
3575         /// </remarks>
3576         /// <param name="target">Will be raised above this view.</param>
3577         internal void RaiseAbove(View target)
3578         {
3579             var parentChildren = GetParent()?.Children;
3580
3581             if (parentChildren != null)
3582             {
3583                 int currentIndex = parentChildren.IndexOf(this);
3584                 int targetIndex = parentChildren.IndexOf(target);
3585
3586                 if (currentIndex < 0 || targetIndex < 0 ||
3587                     currentIndex >= parentChildren.Count || targetIndex >= parentChildren.Count)
3588                 {
3589                     NUILog.Error("index should be bigger than 0 and less than children of layer count");
3590                     return;
3591                 }
3592                 // If the currentIndex is less than the target index and the target has the same parent.
3593                 if (currentIndex < targetIndex)
3594                 {
3595                     parentChildren.Remove(this);
3596                     parentChildren.Insert(targetIndex, this);
3597
3598                     NDalicPINVOKE.RaiseAbove(swigCPtr, View.getCPtr(target));
3599                     if (NDalicPINVOKE.SWIGPendingException.Pending)
3600                         throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3601                 }
3602             }
3603
3604         }
3605
3606         /// <summary>
3607         /// Lowers the view to below the target view.
3608         /// </summary>
3609         /// <remarks>The sibling order of views within the parent will be updated automatically.
3610         /// Lowering this view below views with the same sibling order as each other will lower this view above them.
3611         /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
3612         /// </remarks>
3613         /// <param name="target">Will be lowered below this view.</param>
3614         internal void LowerBelow(View target)
3615         {
3616             var parentChildren = GetParent()?.Children;
3617
3618             if (parentChildren != null)
3619             {
3620                 int currentIndex = parentChildren.IndexOf(this);
3621                 int targetIndex = parentChildren.IndexOf(target);
3622                 if (currentIndex < 0 || targetIndex < 0 ||
3623                    currentIndex >= parentChildren.Count || targetIndex >= parentChildren.Count)
3624                 {
3625                     NUILog.Error("index should be bigger than 0 and less than children of layer count");
3626                     return;
3627                 }
3628
3629                 // If the currentIndex is not already the 0th index and the target has the same parent.
3630                 if ((currentIndex != 0) && (targetIndex != -1) &&
3631                     (currentIndex > targetIndex))
3632                 {
3633                     parentChildren.Remove(this);
3634                     parentChildren.Insert(targetIndex, this);
3635
3636                     NDalicPINVOKE.LowerBelow(swigCPtr, View.getCPtr(target));
3637                     if (NDalicPINVOKE.SWIGPendingException.Pending)
3638                         throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3639                 }
3640             }
3641
3642         }
3643
3644         internal string GetName()
3645         {
3646             string ret = NDalicPINVOKE.Actor_GetName(swigCPtr);
3647             if (NDalicPINVOKE.SWIGPendingException.Pending)
3648                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3649             return ret;
3650         }
3651
3652         internal void SetName(string name)
3653         {
3654             NDalicPINVOKE.Actor_SetName(swigCPtr, name);
3655             if (NDalicPINVOKE.SWIGPendingException.Pending)
3656                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3657         }
3658
3659         internal uint GetId()
3660         {
3661             uint ret = NDalicPINVOKE.Actor_GetId(swigCPtr);
3662             if (NDalicPINVOKE.SWIGPendingException.Pending)
3663                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3664             return ret;
3665         }
3666
3667         internal bool IsRoot()
3668         {
3669             bool ret = NDalicPINVOKE.Actor_IsRoot(swigCPtr);
3670             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3671             return ret;
3672         }
3673
3674         internal bool OnWindow()
3675         {
3676             bool ret = NDalicPINVOKE.Actor_OnStage(swigCPtr);
3677             if (NDalicPINVOKE.SWIGPendingException.Pending)
3678                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3679             return ret;
3680         }
3681
3682         /// <summary>
3683         /// Gets the parent layer of this view.If a view has no parent, this method does not do anything.
3684         /// </summary>
3685         /// <pre>The view has been initialized. </pre>
3686         /// <returns>The parent layer of view </returns>
3687         /// <since_tizen> 5 </since_tizen>
3688         public Layer GetLayer()
3689         {
3690             //to fix memory leak issue, match the handle count with native side.
3691             IntPtr cPtr = NDalicPINVOKE.Actor_GetLayer(swigCPtr);
3692             HandleRef CPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
3693             Layer ret = Registry.GetManagedBaseHandleFromNativePtr(CPtr.Handle) as Layer;
3694             NDalicPINVOKE.delete_BaseHandle(CPtr);
3695             CPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
3696
3697             if (NDalicPINVOKE.SWIGPendingException.Pending)
3698                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3699             return ret;
3700         }
3701
3702         /// <summary>
3703         /// Removes a view from its parent view or layer. If a view has no parent, this method does nothing.
3704         /// </summary>
3705         /// <pre>The (child) view has been initialized. </pre>
3706         /// <since_tizen> 4 </since_tizen>
3707         public void Unparent()
3708         {
3709             GetParent()?.Remove(this);
3710         }
3711
3712         /// <summary>
3713         /// Search through this view's hierarchy for a view with the given name.
3714         /// The view itself is also considered in the search.
3715         /// </summary>
3716         /// <pre>The view has been initialized.</pre>
3717         /// <param name="viewName">The name of the view to find.</param>
3718         /// <returns>A handle to the view if found, or an empty handle if not.</returns>
3719         /// <since_tizen> 3 </since_tizen>
3720         public View FindChildByName(string viewName)
3721         {
3722             //to fix memory leak issue, match the handle count with native side.
3723             IntPtr cPtr = NDalicPINVOKE.Actor_FindChildByName(swigCPtr, viewName);
3724             HandleRef CPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
3725             View ret = Registry.GetManagedBaseHandleFromNativePtr(CPtr.Handle) as View;
3726             NDalicPINVOKE.delete_BaseHandle(CPtr);
3727             CPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
3728
3729             if (NDalicPINVOKE.SWIGPendingException.Pending)
3730                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3731             return ret;
3732         }
3733
3734         internal View FindChildById(uint id)
3735         {
3736             //to fix memory leak issue, match the handle count with native side.
3737             IntPtr cPtr = NDalicPINVOKE.Actor_FindChildById(swigCPtr, id);
3738             HandleRef CPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
3739             View ret = Registry.GetManagedBaseHandleFromNativePtr(CPtr.Handle) as View;
3740             NDalicPINVOKE.delete_BaseHandle(CPtr);
3741             CPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
3742
3743             if (NDalicPINVOKE.SWIGPendingException.Pending)
3744                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3745             return ret;
3746         }
3747
3748         internal void SetParentOrigin(Vector3 origin)
3749         {
3750             NDalicPINVOKE.Actor_SetParentOrigin(swigCPtr, Vector3.getCPtr(origin));
3751             if (NDalicPINVOKE.SWIGPendingException.Pending)
3752                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3753         }
3754
3755         internal Vector3 GetCurrentParentOrigin()
3756         {
3757             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentParentOrigin(swigCPtr), true);
3758             if (NDalicPINVOKE.SWIGPendingException.Pending)
3759                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3760             return ret;
3761         }
3762
3763         internal void SetAnchorPoint(Vector3 anchorPoint)
3764         {
3765             NDalicPINVOKE.Actor_SetAnchorPoint(swigCPtr, Vector3.getCPtr(anchorPoint));
3766             if (NDalicPINVOKE.SWIGPendingException.Pending)
3767                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3768         }
3769
3770         internal Vector3 GetCurrentAnchorPoint()
3771         {
3772             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentAnchorPoint(swigCPtr), true);
3773             if (NDalicPINVOKE.SWIGPendingException.Pending)
3774                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3775             return ret;
3776         }
3777
3778         internal void SetSize(float width, float height)
3779         {
3780             NDalicPINVOKE.Actor_SetSize__SWIG_0(swigCPtr, width, height);
3781             if (NDalicPINVOKE.SWIGPendingException.Pending)
3782                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3783         }
3784
3785         internal void SetSize(float width, float height, float depth)
3786         {
3787             NDalicPINVOKE.Actor_SetSize__SWIG_1(swigCPtr, width, height, depth);
3788             if (NDalicPINVOKE.SWIGPendingException.Pending)
3789                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3790         }
3791
3792         internal void SetSize(Vector2 size)
3793         {
3794             NDalicPINVOKE.Actor_SetSize__SWIG_2(swigCPtr, Vector2.getCPtr(size));
3795             if (NDalicPINVOKE.SWIGPendingException.Pending)
3796                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3797         }
3798
3799         internal void SetSize(Vector3 size)
3800         {
3801             NDalicPINVOKE.Actor_SetSize__SWIG_3(swigCPtr, Vector3.getCPtr(size));
3802             if (NDalicPINVOKE.SWIGPendingException.Pending)
3803                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3804         }
3805
3806         internal Vector3 GetTargetSize()
3807         {
3808             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetTargetSize(swigCPtr), true);
3809             if (NDalicPINVOKE.SWIGPendingException.Pending)
3810                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3811             return ret;
3812         }
3813
3814         internal Size2D GetCurrentSize()
3815         {
3816             Size ret = new Size(NDalicPINVOKE.Actor_GetCurrentSize(swigCPtr), true);
3817             if (NDalicPINVOKE.SWIGPendingException.Pending)
3818                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3819             Size2D size = new Size2D((int)ret.Width, (int)ret.Height);
3820             return size;
3821         }
3822
3823         internal Vector3 GetNaturalSize()
3824         {
3825             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetNaturalSize(swigCPtr), true);
3826             if (NDalicPINVOKE.SWIGPendingException.Pending)
3827                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3828             return ret;
3829         }
3830
3831         internal void SetPosition(float x, float y)
3832         {
3833             NDalicPINVOKE.Actor_SetPosition__SWIG_0(swigCPtr, x, y);
3834             if (NDalicPINVOKE.SWIGPendingException.Pending)
3835                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3836         }
3837
3838         internal void SetPosition(float x, float y, float z)
3839         {
3840             NDalicPINVOKE.Actor_SetPosition__SWIG_1(swigCPtr, x, y, z);
3841             if (NDalicPINVOKE.SWIGPendingException.Pending)
3842                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3843         }
3844
3845         internal void SetPosition(Vector3 position)
3846         {
3847             NDalicPINVOKE.Actor_SetPosition__SWIG_2(swigCPtr, Vector3.getCPtr(position));
3848             if (NDalicPINVOKE.SWIGPendingException.Pending)
3849                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3850         }
3851
3852         internal void SetX(float x)
3853         {
3854             NDalicPINVOKE.Actor_SetX(swigCPtr, x);
3855             if (NDalicPINVOKE.SWIGPendingException.Pending)
3856                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3857         }
3858
3859         internal void SetY(float y)
3860         {
3861             NDalicPINVOKE.Actor_SetY(swigCPtr, y);
3862             if (NDalicPINVOKE.SWIGPendingException.Pending)
3863                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3864         }
3865
3866         internal void SetZ(float z)
3867         {
3868             NDalicPINVOKE.Actor_SetZ(swigCPtr, z);
3869             if (NDalicPINVOKE.SWIGPendingException.Pending)
3870                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3871         }
3872
3873         internal void TranslateBy(Vector3 distance)
3874         {
3875             NDalicPINVOKE.Actor_TranslateBy(swigCPtr, Vector3.getCPtr(distance));
3876             if (NDalicPINVOKE.SWIGPendingException.Pending)
3877                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3878         }
3879
3880         internal Position GetCurrentPosition()
3881         {
3882             Position ret = new Position(NDalicPINVOKE.Actor_GetCurrentPosition(swigCPtr), true);
3883             if (NDalicPINVOKE.SWIGPendingException.Pending)
3884                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3885             return ret;
3886         }
3887
3888         internal Vector3 GetCurrentWorldPosition()
3889         {
3890             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentWorldPosition(swigCPtr), true);
3891             if (NDalicPINVOKE.SWIGPendingException.Pending)
3892                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3893             return ret;
3894         }
3895
3896         internal void SetInheritPosition(bool inherit)
3897         {
3898             NDalicPINVOKE.Actor_SetInheritPosition(swigCPtr, inherit);
3899             if (NDalicPINVOKE.SWIGPendingException.Pending)
3900                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3901         }
3902
3903         internal bool IsPositionInherited()
3904         {
3905             bool ret = NDalicPINVOKE.Actor_IsPositionInherited(swigCPtr);
3906             if (NDalicPINVOKE.SWIGPendingException.Pending)
3907                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3908             return ret;
3909         }
3910
3911         internal void SetOrientation(Degree angle, Vector3 axis)
3912         {
3913             NDalicPINVOKE.Actor_SetOrientation__SWIG_0(swigCPtr, Degree.getCPtr(angle), Vector3.getCPtr(axis));
3914             if (NDalicPINVOKE.SWIGPendingException.Pending)
3915                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3916         }
3917
3918         internal void SetOrientation(Radian angle, Vector3 axis)
3919         {
3920             NDalicPINVOKE.Actor_SetOrientation__SWIG_1(swigCPtr, Radian.getCPtr(angle), Vector3.getCPtr(axis));
3921             if (NDalicPINVOKE.SWIGPendingException.Pending)
3922                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3923         }
3924
3925         internal void SetOrientation(Rotation orientation)
3926         {
3927             NDalicPINVOKE.Actor_SetOrientation__SWIG_2(swigCPtr, Rotation.getCPtr(orientation));
3928             if (NDalicPINVOKE.SWIGPendingException.Pending)
3929                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3930         }
3931
3932         internal void RotateBy(Degree angle, Vector3 axis)
3933         {
3934             NDalicPINVOKE.Actor_RotateBy__SWIG_0(swigCPtr, Degree.getCPtr(angle), Vector3.getCPtr(axis));
3935             if (NDalicPINVOKE.SWIGPendingException.Pending)
3936                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3937         }
3938
3939         internal void RotateBy(Radian angle, Vector3 axis)
3940         {
3941             NDalicPINVOKE.Actor_RotateBy__SWIG_1(swigCPtr, Radian.getCPtr(angle), Vector3.getCPtr(axis));
3942             if (NDalicPINVOKE.SWIGPendingException.Pending)
3943                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3944         }
3945
3946         internal void RotateBy(Rotation relativeRotation)
3947         {
3948             NDalicPINVOKE.Actor_RotateBy__SWIG_2(swigCPtr, Rotation.getCPtr(relativeRotation));
3949             if (NDalicPINVOKE.SWIGPendingException.Pending)
3950                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3951         }
3952
3953         internal Rotation GetCurrentOrientation()
3954         {
3955             Rotation ret = new Rotation(NDalicPINVOKE.Actor_GetCurrentOrientation(swigCPtr), true);
3956             if (NDalicPINVOKE.SWIGPendingException.Pending)
3957                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3958             return ret;
3959         }
3960
3961         internal void SetInheritOrientation(bool inherit)
3962         {
3963             NDalicPINVOKE.Actor_SetInheritOrientation(swigCPtr, inherit);
3964             if (NDalicPINVOKE.SWIGPendingException.Pending)
3965                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3966         }
3967
3968         internal bool IsOrientationInherited()
3969         {
3970             bool ret = NDalicPINVOKE.Actor_IsOrientationInherited(swigCPtr);
3971             if (NDalicPINVOKE.SWIGPendingException.Pending)
3972                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3973             return ret;
3974         }
3975
3976         internal Rotation GetCurrentWorldOrientation()
3977         {
3978             Rotation ret = new Rotation(NDalicPINVOKE.Actor_GetCurrentWorldOrientation(swigCPtr), true);
3979             if (NDalicPINVOKE.SWIGPendingException.Pending)
3980                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3981             return ret;
3982         }
3983
3984         internal void SetScale(float scale)
3985         {
3986             NDalicPINVOKE.Actor_SetScale__SWIG_0(swigCPtr, scale);
3987             if (NDalicPINVOKE.SWIGPendingException.Pending)
3988                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3989         }
3990
3991         internal void SetScale(float scaleX, float scaleY, float scaleZ)
3992         {
3993             NDalicPINVOKE.Actor_SetScale__SWIG_1(swigCPtr, scaleX, scaleY, scaleZ);
3994             if (NDalicPINVOKE.SWIGPendingException.Pending)
3995                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
3996         }
3997
3998         internal void SetScale(Vector3 scale)
3999         {
4000             NDalicPINVOKE.Actor_SetScale__SWIG_2(swigCPtr, Vector3.getCPtr(scale));
4001             if (NDalicPINVOKE.SWIGPendingException.Pending)
4002                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4003         }
4004
4005         internal void ScaleBy(Vector3 relativeScale)
4006         {
4007             NDalicPINVOKE.Actor_ScaleBy(swigCPtr, Vector3.getCPtr(relativeScale));
4008             if (NDalicPINVOKE.SWIGPendingException.Pending)
4009                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4010         }
4011
4012         internal Vector3 GetCurrentScale()
4013         {
4014             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentScale(swigCPtr), true);
4015             if (NDalicPINVOKE.SWIGPendingException.Pending)
4016                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4017             return ret;
4018         }
4019
4020         internal Vector3 GetCurrentWorldScale()
4021         {
4022             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentWorldScale(swigCPtr), true);
4023             if (NDalicPINVOKE.SWIGPendingException.Pending)
4024                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4025             return ret;
4026         }
4027
4028         internal void SetInheritScale(bool inherit)
4029         {
4030             NDalicPINVOKE.Actor_SetInheritScale(swigCPtr, inherit);
4031             if (NDalicPINVOKE.SWIGPendingException.Pending)
4032                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4033         }
4034
4035         internal bool IsScaleInherited()
4036         {
4037             bool ret = NDalicPINVOKE.Actor_IsScaleInherited(swigCPtr);
4038             if (NDalicPINVOKE.SWIGPendingException.Pending)
4039                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4040             return ret;
4041         }
4042
4043         internal Matrix GetCurrentWorldMatrix()
4044         {
4045             Matrix ret = new Matrix(NDalicPINVOKE.Actor_GetCurrentWorldMatrix(swigCPtr), true);
4046             if (NDalicPINVOKE.SWIGPendingException.Pending)
4047                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4048             return ret;
4049         }
4050
4051         internal void SetVisible(bool visible)
4052         {
4053             NDalicPINVOKE.Actor_SetVisible(swigCPtr, visible);
4054             if (NDalicPINVOKE.SWIGPendingException.Pending)
4055                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4056         }
4057
4058         internal bool IsVisible()
4059         {
4060             bool ret = NDalicPINVOKE.Actor_IsVisible(swigCPtr);
4061             if (NDalicPINVOKE.SWIGPendingException.Pending)
4062                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4063             return ret;
4064         }
4065
4066         internal void SetOpacity(float opacity)
4067         {
4068             NDalicPINVOKE.Actor_SetOpacity(swigCPtr, opacity);
4069             if (NDalicPINVOKE.SWIGPendingException.Pending)
4070                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4071         }
4072
4073         internal float GetCurrentOpacity()
4074         {
4075             float ret = NDalicPINVOKE.Actor_GetCurrentOpacity(swigCPtr);
4076             if (NDalicPINVOKE.SWIGPendingException.Pending)
4077                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4078             return ret;
4079         }
4080
4081         internal void SetColor(Vector4 color)
4082         {
4083             NDalicPINVOKE.Actor_SetColor(swigCPtr, Vector4.getCPtr(color));
4084             if (NDalicPINVOKE.SWIGPendingException.Pending)
4085                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4086         }
4087
4088         internal Vector4 GetCurrentColor()
4089         {
4090             Vector4 ret = new Vector4(NDalicPINVOKE.Actor_GetCurrentColor(swigCPtr), true);
4091             if (NDalicPINVOKE.SWIGPendingException.Pending)
4092                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4093             return ret;
4094         }
4095
4096         internal void SetColorMode(ColorMode colorMode)
4097         {
4098             NDalicPINVOKE.Actor_SetColorMode(swigCPtr, (int)colorMode);
4099             if (NDalicPINVOKE.SWIGPendingException.Pending)
4100                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4101         }
4102
4103         internal ColorMode GetColorMode()
4104         {
4105             ColorMode ret = (ColorMode)NDalicPINVOKE.Actor_GetColorMode(swigCPtr);
4106             if (NDalicPINVOKE.SWIGPendingException.Pending)
4107                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4108             return ret;
4109         }
4110
4111         internal Vector4 GetCurrentWorldColor()
4112         {
4113             Vector4 ret = new Vector4(NDalicPINVOKE.Actor_GetCurrentWorldColor(swigCPtr), true);
4114             if (NDalicPINVOKE.SWIGPendingException.Pending)
4115                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4116             return ret;
4117         }
4118
4119         internal void SetDrawMode(DrawModeType drawMode)
4120         {
4121             NDalicPINVOKE.Actor_SetDrawMode(swigCPtr, (int)drawMode);
4122             if (NDalicPINVOKE.SWIGPendingException.Pending)
4123                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4124         }
4125
4126         internal DrawModeType GetDrawMode()
4127         {
4128             DrawModeType ret = (DrawModeType)NDalicPINVOKE.Actor_GetDrawMode(swigCPtr);
4129             if (NDalicPINVOKE.SWIGPendingException.Pending)
4130                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4131             return ret;
4132         }
4133
4134         /// <summary>
4135         /// Converts screen coordinates into the view's coordinate system using the default camera.
4136         /// </summary>
4137         /// <pre>The view has been initialized.</pre>
4138         /// <remarks>The view coordinates are relative to the top-left(0.0, 0.0, 0.5).</remarks>
4139         /// <param name="localX">On return, the X-coordinate relative to the view.</param>
4140         /// <param name="localY">On return, the Y-coordinate relative to the view.</param>
4141         /// <param name="screenX">The screen X-coordinate.</param>
4142         /// <param name="screenY">The screen Y-coordinate.</param>
4143         /// <returns>True if the conversion succeeded.</returns>
4144         /// <since_tizen> 3 </since_tizen>
4145         public bool ScreenToLocal(out float localX, out float localY, float screenX, float screenY)
4146         {
4147             bool ret = NDalicPINVOKE.Actor_ScreenToLocal(swigCPtr, out localX, out localY, screenX, screenY);
4148             if (NDalicPINVOKE.SWIGPendingException.Pending)
4149                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4150             return ret;
4151         }
4152
4153         internal void SetKeyboardFocusable(bool focusable)
4154         {
4155             NDalicPINVOKE.Actor_SetKeyboardFocusable(swigCPtr, focusable);
4156             if (NDalicPINVOKE.SWIGPendingException.Pending)
4157                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4158         }
4159
4160         internal bool IsKeyboardFocusable()
4161         {
4162             bool ret = NDalicPINVOKE.Actor_IsKeyboardFocusable(swigCPtr);
4163             if (NDalicPINVOKE.SWIGPendingException.Pending)
4164                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4165             return ret;
4166         }
4167
4168         internal void SetResizePolicy(ResizePolicyType policy, DimensionType dimension)
4169         {
4170             NDalicPINVOKE.Actor_SetResizePolicy(swigCPtr, (int)policy, (int)dimension);
4171             if (NDalicPINVOKE.SWIGPendingException.Pending)
4172                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4173         }
4174
4175         internal ResizePolicyType GetResizePolicy(DimensionType dimension)
4176         {
4177             ResizePolicyType ret = (ResizePolicyType)NDalicPINVOKE.Actor_GetResizePolicy(swigCPtr, (int)dimension);
4178             if (NDalicPINVOKE.SWIGPendingException.Pending)
4179                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4180             return ret;
4181         }
4182
4183         /// <summary>
4184         /// Sets the relative to parent size factor of the view.<br />
4185         /// This factor is only used when ResizePolicy is set to either:
4186         /// ResizePolicy::SIZE_RELATIVE_TO_PARENT or ResizePolicy::SIZE_FIXED_OFFSET_FROM_PARENT.<br />
4187         /// This view's size is set to the view's size multiplied by or added to this factor, depending on ResizePolicy.<br />
4188         /// </summary>
4189         /// <pre>The view has been initialized.</pre>
4190         /// <param name="factor">A Vector3 representing the relative factor to be applied to each axis.</param>
4191         /// <since_tizen> 3 </since_tizen>
4192         public void SetSizeModeFactor(Vector3 factor)
4193         {
4194             NDalicPINVOKE.Actor_SetSizeModeFactor(swigCPtr, Vector3.getCPtr(factor));
4195             if (NDalicPINVOKE.SWIGPendingException.Pending)
4196                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4197         }
4198
4199         internal Vector3 GetSizeModeFactor()
4200         {
4201             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetSizeModeFactor(swigCPtr), true);
4202             if (NDalicPINVOKE.SWIGPendingException.Pending)
4203                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4204             return ret;
4205         }
4206
4207         /// <summary>
4208         /// Calculates the height of the view given a width.<br />
4209         /// The natural size is used for default calculation.<br />
4210         /// Size 0 is treated as aspect ratio 1:1.<br />
4211         /// </summary>
4212         /// <param name="width">The width to use.</param>
4213         /// <returns>The height based on the width.</returns>
4214         /// <since_tizen> 3 </since_tizen>
4215         public float GetHeightForWidth(float width)
4216         {
4217             float ret = NDalicPINVOKE.Actor_GetHeightForWidth(swigCPtr, width);
4218             if (NDalicPINVOKE.SWIGPendingException.Pending)
4219                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4220             return ret;
4221         }
4222
4223         /// <summary>
4224         /// Calculates the width of the view given a height.<br />
4225         /// The natural size is used for default calculation.<br />
4226         /// Size 0 is treated as aspect ratio 1:1.<br />
4227         /// </summary>
4228         /// <param name="height">The height to use.</param>
4229         /// <returns>The width based on the height.</returns>
4230         /// <since_tizen> 3 </since_tizen>
4231         public float GetWidthForHeight(float height)
4232         {
4233             float ret = NDalicPINVOKE.Actor_GetWidthForHeight(swigCPtr, height);
4234             if (NDalicPINVOKE.SWIGPendingException.Pending)
4235                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4236             return ret;
4237         }
4238
4239         /// <summary>
4240         /// Return the amount of size allocated for relayout.
4241         /// </summary>
4242         /// <param name="dimension">The dimension to retrieve.</param>
4243         /// <returns>Return the size.</returns>
4244         /// <since_tizen> 3 </since_tizen>
4245         public float GetRelayoutSize(DimensionType dimension)
4246         {
4247             float ret = NDalicPINVOKE.Actor_GetRelayoutSize(swigCPtr, (int)dimension);
4248             if (NDalicPINVOKE.SWIGPendingException.Pending)
4249                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4250             return ret;
4251         }
4252
4253         /// <summary>
4254         /// Set the padding for the view.
4255         /// </summary>
4256         /// <param name="padding">Padding for the view.</param>
4257         /// <since_tizen> 3 </since_tizen>
4258         public void SetPadding(PaddingType padding)
4259         {
4260             NDalicPINVOKE.Actor_SetPadding(swigCPtr, PaddingType.getCPtr(padding));
4261             if (NDalicPINVOKE.SWIGPendingException.Pending)
4262                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4263         }
4264
4265         /// <summary>
4266         /// Return the value of padding for the view.
4267         /// </summary>
4268         /// <param name="paddingOut">the value of padding for the view</param>
4269         /// <since_tizen> 3 </since_tizen>
4270         public void GetPadding(PaddingType paddingOut)
4271         {
4272             NDalicPINVOKE.Actor_GetPadding(swigCPtr, PaddingType.getCPtr(paddingOut));
4273             if (NDalicPINVOKE.SWIGPendingException.Pending)
4274                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4275         }
4276
4277         internal void SetMinimumSize(Vector2 size)
4278         {
4279             NDalicPINVOKE.Actor_SetMinimumSize(swigCPtr, Vector2.getCPtr(size));
4280             if (NDalicPINVOKE.SWIGPendingException.Pending)
4281                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4282         }
4283
4284         internal Vector2 GetMinimumSize()
4285         {
4286             Vector2 ret = new Vector2(NDalicPINVOKE.Actor_GetMinimumSize(swigCPtr), true);
4287             if (NDalicPINVOKE.SWIGPendingException.Pending)
4288                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4289             return ret;
4290         }
4291
4292         internal void SetMaximumSize(Vector2 size)
4293         {
4294             NDalicPINVOKE.Actor_SetMaximumSize(swigCPtr, Vector2.getCPtr(size));
4295             if (NDalicPINVOKE.SWIGPendingException.Pending)
4296                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4297         }
4298
4299         internal Vector2 GetMaximumSize()
4300         {
4301             Vector2 ret = new Vector2(NDalicPINVOKE.Actor_GetMaximumSize(swigCPtr), true);
4302             if (NDalicPINVOKE.SWIGPendingException.Pending)
4303                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4304             return ret;
4305         }
4306
4307         internal int GetHierarchyDepth()
4308         {
4309             int ret = NDalicPINVOKE.Actor_GetHierarchyDepth(swigCPtr);
4310             if (NDalicPINVOKE.SWIGPendingException.Pending)
4311                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4312             return ret;
4313         }
4314
4315         /// <since_tizen> 3 </since_tizen>
4316         public uint AddRenderer(Renderer renderer)
4317         {
4318             uint ret = NDalicPINVOKE.Actor_AddRenderer(swigCPtr, Renderer.getCPtr(renderer));
4319             if (NDalicPINVOKE.SWIGPendingException.Pending)
4320                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4321             return ret;
4322         }
4323
4324         internal uint GetRendererCount()
4325         {
4326             uint ret = NDalicPINVOKE.Actor_GetRendererCount(swigCPtr);
4327             if (NDalicPINVOKE.SWIGPendingException.Pending)
4328                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4329             return ret;
4330         }
4331
4332         /// <since_tizen> 3 </since_tizen>
4333         public Renderer GetRendererAt(uint index)
4334         {
4335             //to fix memory leak issue, match the handle count with native side.
4336             IntPtr cPtr = NDalicPINVOKE.Actor_GetRendererAt(swigCPtr, index);
4337             HandleRef CPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
4338             Renderer ret = Registry.GetManagedBaseHandleFromNativePtr(CPtr.Handle) as Renderer;
4339             NDalicPINVOKE.delete_BaseHandle(CPtr);
4340             CPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
4341
4342             if (NDalicPINVOKE.SWIGPendingException.Pending)
4343                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4344             return ret;
4345         }
4346
4347         /// <since_tizen> 3 </since_tizen>
4348         public void RemoveRenderer(Renderer renderer)
4349         {
4350             NDalicPINVOKE.Actor_RemoveRenderer__SWIG_0(swigCPtr, Renderer.getCPtr(renderer));
4351             if (NDalicPINVOKE.SWIGPendingException.Pending)
4352                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4353         }
4354
4355         /// <since_tizen> 3 </since_tizen>
4356         public void RemoveRenderer(uint index)
4357         {
4358             NDalicPINVOKE.Actor_RemoveRenderer__SWIG_1(swigCPtr, index);
4359             if (NDalicPINVOKE.SWIGPendingException.Pending)
4360                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4361         }
4362
4363         internal TouchDataSignal TouchSignal()
4364         {
4365             TouchDataSignal ret = new TouchDataSignal(NDalicPINVOKE.Actor_TouchSignal(swigCPtr), false);
4366             if (NDalicPINVOKE.SWIGPendingException.Pending)
4367                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4368             return ret;
4369         }
4370
4371         internal HoverSignal HoveredSignal()
4372         {
4373             HoverSignal ret = new HoverSignal(NDalicPINVOKE.Actor_HoveredSignal(swigCPtr), false);
4374             if (NDalicPINVOKE.SWIGPendingException.Pending)
4375                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4376             return ret;
4377         }
4378
4379         internal WheelSignal WheelEventSignal()
4380         {
4381             WheelSignal ret = new WheelSignal(NDalicPINVOKE.Actor_WheelEventSignal(swigCPtr), false);
4382             if (NDalicPINVOKE.SWIGPendingException.Pending)
4383                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4384             return ret;
4385         }
4386
4387         internal ViewSignal OnWindowSignal()
4388         {
4389             ViewSignal ret = new ViewSignal(NDalicPINVOKE.Actor_OnStageSignal(swigCPtr), false);
4390             if (NDalicPINVOKE.SWIGPendingException.Pending)
4391                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4392             return ret;
4393         }
4394
4395         internal ViewSignal OffWindowSignal()
4396         {
4397             ViewSignal ret = new ViewSignal(NDalicPINVOKE.Actor_OffStageSignal(swigCPtr), false);
4398             if (NDalicPINVOKE.SWIGPendingException.Pending)
4399                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4400             return ret;
4401         }
4402
4403         internal ViewSignal OnRelayoutSignal()
4404         {
4405             ViewSignal ret = new ViewSignal(NDalicPINVOKE.Actor_OnRelayoutSignal(swigCPtr), false);
4406             if (NDalicPINVOKE.SWIGPendingException.Pending)
4407                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4408             return ret;
4409         }
4410
4411         internal ViewVisibilityChangedSignal VisibilityChangedSignal(View view)
4412         {
4413             ViewVisibilityChangedSignal ret = new ViewVisibilityChangedSignal(NDalicPINVOKE.VisibilityChangedSignal(View.getCPtr(view)), false);
4414             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4415             return ret;
4416         }
4417
4418
4419         internal ViewLayoutDirectionChangedSignal LayoutDirectionChangedSignal(View view)
4420         {
4421             ViewLayoutDirectionChangedSignal ret = new ViewLayoutDirectionChangedSignal(NDalicManualPINVOKE.LayoutDirectionChangedSignal(View.getCPtr(view)), false);
4422             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4423             return ret;
4424         }
4425
4426
4427         internal ViewSignal ResourcesLoadedSignal()
4428         {
4429             ViewSignal ret = new ViewSignal(NDalicPINVOKE.ResourceReadySignal(swigCPtr), false);
4430             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
4431             return ret;
4432         }
4433
4434         /// <summary>
4435         /// Gets or sets the origin of a view within its parent's area.<br />
4436         /// This is expressed in unit coordinates, such that (0.0, 0.0, 0.5) is the top-left corner of the parent, and (1.0, 1.0, 0.5) is the bottom-right corner.<br />
4437         /// The default parent-origin is ParentOrigin.TopLeft (0.0, 0.0, 0.5).<br />
4438         /// A view's position is the distance between this origin and the view's anchor-point.<br />
4439         /// </summary>
4440         /// <pre>The view has been initialized.</pre>
4441         /// <since_tizen> 3 </since_tizen>
4442         public Position ParentOrigin
4443         {
4444             get
4445             {
4446                 return (Position)GetValue(ParentOriginProperty);
4447             }
4448             set
4449             {
4450                 SetValue(ParentOriginProperty, value);
4451                 NotifyPropertyChanged();
4452             }
4453         }
4454
4455         internal float ParentOriginX
4456         {
4457             get
4458             {
4459                 float temp = 0.0f;
4460                 GetProperty(View.Property.PARENT_ORIGIN_X).Get(out temp);
4461                 return temp;
4462             }
4463             set
4464             {
4465                 SetProperty(View.Property.PARENT_ORIGIN_X, new Tizen.NUI.PropertyValue(value));
4466                 NotifyPropertyChanged();
4467             }
4468         }
4469
4470         internal float ParentOriginY
4471         {
4472             get
4473             {
4474                 float temp = 0.0f;
4475                 GetProperty(View.Property.PARENT_ORIGIN_Y).Get(out temp);
4476                 return temp;
4477             }
4478             set
4479             {
4480                 SetProperty(View.Property.PARENT_ORIGIN_Y, new Tizen.NUI.PropertyValue(value));
4481                 NotifyPropertyChanged();
4482             }
4483         }
4484
4485         internal float ParentOriginZ
4486         {
4487             get
4488             {
4489                 float temp = 0.0f;
4490                 GetProperty(View.Property.PARENT_ORIGIN_Z).Get(out temp);
4491                 return temp;
4492             }
4493             set
4494             {
4495                 SetProperty(View.Property.PARENT_ORIGIN_Z, new Tizen.NUI.PropertyValue(value));
4496                 NotifyPropertyChanged();
4497             }
4498         }
4499
4500         /// <summary>
4501         /// Gets or sets the anchor-point of a view.<br />
4502         /// This is expressed in unit coordinates, such that (0.0, 0.0, 0.5) is the top-left corner of the view, and (1.0, 1.0, 0.5) is the bottom-right corner.<br />
4503         /// The default pivot point is PivotPoint.Center (0.5, 0.5, 0.5).<br />
4504         /// A view position is the distance between its parent-origin and this anchor-point.<br />
4505         /// A view's orientation is the rotation from its default orientation, the rotation is centered around its anchor-point.<br />
4506         /// <pre>The view has been initialized.</pre>
4507         /// </summary>
4508         /// <since_tizen> 3 </since_tizen>
4509         public Position PivotPoint
4510         {
4511             get
4512             {
4513                 return (Position)GetValue(PivotPointProperty);
4514             }
4515             set
4516             {
4517                 SetValue(PivotPointProperty, value);
4518                 NotifyPropertyChanged();
4519             }
4520         }
4521
4522         internal float PivotPointX
4523         {
4524             get
4525             {
4526                 float temp = 0.0f;
4527                 GetProperty(View.Property.ANCHOR_POINT_X).Get(out temp);
4528                 return temp;
4529             }
4530             set
4531             {
4532                 SetProperty(View.Property.ANCHOR_POINT_X, new Tizen.NUI.PropertyValue(value));
4533             }
4534         }
4535
4536         internal float PivotPointY
4537         {
4538             get
4539             {
4540                 float temp = 0.0f;
4541                 GetProperty(View.Property.ANCHOR_POINT_Y).Get(out temp);
4542                 return temp;
4543             }
4544             set
4545             {
4546                 SetProperty(View.Property.ANCHOR_POINT_Y, new Tizen.NUI.PropertyValue(value));
4547             }
4548         }
4549
4550         internal float PivotPointZ
4551         {
4552             get
4553             {
4554                 float temp = 0.0f;
4555                 GetProperty(View.Property.ANCHOR_POINT_Z).Get(out temp);
4556                 return temp;
4557             }
4558             set
4559             {
4560                 SetProperty(View.Property.ANCHOR_POINT_Z, new Tizen.NUI.PropertyValue(value));
4561             }
4562         }
4563
4564         /// <summary>
4565         /// Gets or sets the size width of the view.
4566         /// </summary>
4567         /// <since_tizen> 3 </since_tizen>
4568         public float SizeWidth
4569         {
4570             get
4571             {
4572                 return (float)GetValue(SizeWidthProperty);
4573             }
4574             set
4575             {
4576                 SetValue(SizeWidthProperty, value);
4577                 NotifyPropertyChanged();
4578             }
4579         }
4580
4581         /// <summary>
4582         /// Gets or sets the size height of the view.
4583         /// </summary>
4584         /// <since_tizen> 3 </since_tizen>
4585         public float SizeHeight
4586         {
4587             get
4588             {
4589                 return (float)GetValue(SizeHeightProperty);
4590             }
4591             set
4592             {
4593                 SetValue(SizeHeightProperty, value);
4594                 NotifyPropertyChanged();
4595             }
4596         }
4597
4598         /// <summary>
4599         /// Gets or sets the position of the view.<br />
4600         /// By default, sets the position vector between the parent origin and pivot point (default).<br />
4601         /// If the position inheritance is disabled, sets the world position.<br />
4602         /// </summary>
4603         /// <since_tizen> 3 </since_tizen>
4604         public Position Position
4605         {
4606             get
4607             {
4608                 return (Position)GetValue(PositionProperty);
4609             }
4610             set
4611             {
4612                 SetValue(PositionProperty, value);
4613                 NotifyPropertyChanged();
4614             }
4615         }
4616
4617         /// <summary>
4618         /// Gets or sets the position X of the view.
4619         /// </summary>
4620         /// <since_tizen> 3 </since_tizen>
4621         public float PositionX
4622         {
4623             get
4624             {
4625                 return (float)GetValue(PositionXProperty);
4626             }
4627             set
4628             {
4629                 SetValue(PositionXProperty, value);
4630                 NotifyPropertyChanged();
4631             }
4632         }
4633
4634         /// <summary>
4635         /// Gets or sets the position Y of the view.
4636         /// </summary>
4637         /// <since_tizen> 3 </since_tizen>
4638         public float PositionY
4639         {
4640             get
4641             {
4642                 return (float)GetValue(PositionYProperty);
4643             }
4644             set
4645             {
4646                 SetValue(PositionYProperty, value);
4647                 NotifyPropertyChanged();
4648             }
4649         }
4650
4651         /// <summary>
4652         /// Gets or sets the position Z of the view.
4653         /// </summary>
4654         /// <since_tizen> 3 </since_tizen>
4655         public float PositionZ
4656         {
4657             get
4658             {
4659                 return (float)GetValue(PositionZProperty);
4660             }
4661             set
4662             {
4663                 SetValue(PositionZProperty, value);
4664                 NotifyPropertyChanged();
4665             }
4666         }
4667
4668         /// <summary>
4669         /// Gets or sets the world position of the view.
4670         /// </summary>
4671         /// <since_tizen> 3 </since_tizen>
4672         public Vector3 WorldPosition
4673         {
4674             get
4675             {
4676                 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
4677                 GetProperty(View.Property.WORLD_POSITION).Get(temp);
4678                 return temp;
4679             }
4680         }
4681
4682         internal float WorldPositionX
4683         {
4684             get
4685             {
4686                 float temp = 0.0f;
4687                 GetProperty(View.Property.WORLD_POSITION_X).Get(out temp);
4688                 return temp;
4689             }
4690         }
4691
4692         internal float WorldPositionY
4693         {
4694             get
4695             {
4696                 float temp = 0.0f;
4697                 GetProperty(View.Property.WORLD_POSITION_Y).Get(out temp);
4698                 return temp;
4699             }
4700         }
4701
4702         internal float WorldPositionZ
4703         {
4704             get
4705             {
4706                 float temp = 0.0f;
4707                 GetProperty(View.Property.WORLD_POSITION_Z).Get(out temp);
4708                 return temp;
4709             }
4710         }
4711
4712         /// <summary>
4713         /// Gets or sets the orientation of the view.<br />
4714         /// The view's orientation is the rotation from its default orientation, and the rotation is centered around its anchor-point.<br />
4715         /// </summary>
4716         /// <remarks>This is an asynchronous method.</remarks>
4717         /// <since_tizen> 3 </since_tizen>
4718         public Rotation Orientation
4719         {
4720             get
4721             {
4722                 return (Rotation)GetValue(OrientationProperty);
4723             }
4724             set
4725             {
4726                 SetValue(OrientationProperty, value);
4727                 NotifyPropertyChanged();
4728             }
4729         }
4730
4731         /// <summary>
4732         /// Gets or sets the world orientation of the view.<br />
4733         /// </summary>
4734         /// <since_tizen> 3 </since_tizen>
4735         public Rotation WorldOrientation
4736         {
4737             get
4738             {
4739                 Rotation temp = new Rotation();
4740                 GetProperty(View.Property.WORLD_ORIENTATION).Get(temp);
4741                 return temp;
4742             }
4743         }
4744
4745         /// <summary>
4746         /// Gets or sets the scale factor applied to the view.<br />
4747         /// </summary>
4748         /// <since_tizen> 3 </since_tizen>
4749         public Vector3 Scale
4750         {
4751             get
4752             {
4753                 return (Vector3)GetValue(ScaleProperty);
4754             }
4755             set
4756             {
4757                 SetValue(ScaleProperty, value);
4758                 NotifyPropertyChanged();
4759             }
4760         }
4761
4762         /// <summary>
4763         /// Gets or sets the scale X factor applied to the view.
4764         /// </summary>
4765         /// <since_tizen> 3 </since_tizen>
4766         public float ScaleX
4767         {
4768             get
4769             {
4770                 return (float)GetValue(ScaleXProperty);
4771             }
4772             set
4773             {
4774                 SetValue(ScaleXProperty, value);
4775                 NotifyPropertyChanged();
4776             }
4777         }
4778
4779         /// <summary>
4780         /// Gets or sets the scale Y factor applied to the view.
4781         /// </summary>
4782         /// <since_tizen> 3 </since_tizen>
4783         public float ScaleY
4784         {
4785             get
4786             {
4787                 return (float)GetValue(ScaleYProperty);
4788             }
4789             set
4790             {
4791                 SetValue(ScaleYProperty, value);
4792                 NotifyPropertyChanged();
4793             }
4794         }
4795
4796         /// <summary>
4797         /// Gets or sets the scale Z factor applied to the view.
4798         /// </summary>
4799         /// <since_tizen> 3 </since_tizen>
4800         public float ScaleZ
4801         {
4802             get
4803             {
4804                 return (float)GetValue(ScaleZProperty);
4805             }
4806             set
4807             {
4808                 SetValue(ScaleZProperty, value);
4809                 NotifyPropertyChanged();
4810             }
4811         }
4812
4813         /// <summary>
4814         /// Gets the world scale of the view.
4815         /// </summary>
4816         /// <since_tizen> 3 </since_tizen>
4817         public Vector3 WorldScale
4818         {
4819             get
4820             {
4821                 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
4822                 GetProperty(View.Property.WORLD_SCALE).Get(temp);
4823                 return temp;
4824             }
4825         }
4826
4827         /// <summary>
4828         /// Retrieves the visibility flag of the view.
4829         /// </summary>
4830         /// <remarks>
4831         /// If the view is not visible, then the view and its children will not be rendered.
4832         /// This is regardless of the individual visibility values of the children, i.e., the view will only be rendered if all of its parents have visibility set to true.
4833         /// </remarks>
4834         /// <since_tizen> 3 </since_tizen>
4835         public bool Visibility
4836         {
4837             get
4838             {
4839                 bool temp = false;
4840                 GetProperty(View.Property.VISIBLE).Get(out temp);
4841                 return temp;
4842             }
4843         }
4844
4845         /// <summary>
4846         /// Gets the view's world color.
4847         /// </summary>
4848         /// <since_tizen> 3 </since_tizen>
4849         public Vector4 WorldColor
4850         {
4851             get
4852             {
4853                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
4854                 GetProperty(View.Property.WORLD_COLOR).Get(temp);
4855                 return temp;
4856             }
4857         }
4858
4859         internal Matrix WorldMatrix
4860         {
4861             get
4862             {
4863                 Matrix temp = new Matrix();
4864                 GetProperty(View.Property.WORLD_MATRIX).Get(temp);
4865                 return temp;
4866             }
4867         }
4868
4869         /// <summary>
4870         /// Gets or sets the view's name.
4871         /// </summary>
4872         /// <since_tizen> 3 </since_tizen>
4873         public string Name
4874         {
4875             get
4876             {
4877                 return (string)GetValue(NameProperty);
4878             }
4879             set
4880             {
4881                 SetValue(NameProperty, value);
4882                 NotifyPropertyChanged();
4883             }
4884         }
4885
4886         /// <summary>
4887         /// Get the number of children held by the view.
4888         /// </summary>
4889         /// <since_tizen> 3 </since_tizen>
4890         public new uint ChildCount
4891         {
4892             get
4893             {
4894                 return GetChildCount();
4895             }
4896         }
4897
4898         /// <summary>
4899         /// Gets the view's ID.
4900         /// Readonly
4901         /// </summary>
4902         /// <since_tizen> 3 </since_tizen>
4903         public uint ID
4904         {
4905             get
4906             {
4907                 return GetId();
4908             }
4909         }
4910
4911         /// <summary>
4912         /// Gets or sets the status of whether the view should emit touch or hover signals.
4913         /// </summary>
4914         /// <since_tizen> 3 </since_tizen>
4915         public bool Sensitive
4916         {
4917             get
4918             {
4919                 return (bool)GetValue(SensitiveProperty);
4920             }
4921             set
4922             {
4923                 SetValue(SensitiveProperty, value);
4924                 NotifyPropertyChanged();
4925             }
4926         }
4927
4928         /// <summary>
4929         /// Gets or sets the status of whether the view should receive a notification when touch or hover motion events leave the boundary of the view.
4930         /// </summary>
4931         /// <since_tizen> 3 </since_tizen>
4932         public bool LeaveRequired
4933         {
4934             get
4935             {
4936                 return (bool)GetValue(LeaveRequiredProperty);
4937             }
4938             set
4939             {
4940                 SetValue(LeaveRequiredProperty, value);
4941                 NotifyPropertyChanged();
4942             }
4943         }
4944
4945         /// <summary>
4946         /// Gets or sets the status of whether a child view inherits it's parent's orientation.
4947         /// </summary>
4948         /// <since_tizen> 3 </since_tizen>
4949         public bool InheritOrientation
4950         {
4951             get
4952             {
4953                 return (bool)GetValue(InheritOrientationProperty);
4954             }
4955             set
4956             {
4957                 SetValue(InheritOrientationProperty, value);
4958                 NotifyPropertyChanged();
4959             }
4960         }
4961
4962         /// <summary>
4963         /// Gets or sets the status of whether a child view inherits it's parent's scale.
4964         /// </summary>
4965         /// <since_tizen> 3 </since_tizen>
4966         public bool InheritScale
4967         {
4968             get
4969             {
4970                 return (bool)GetValue(InheritScaleProperty);
4971             }
4972             set
4973             {
4974                 SetValue(InheritScaleProperty, value);
4975                 NotifyPropertyChanged();
4976             }
4977         }
4978
4979         /// <summary>
4980         /// Gets or sets the status of how the view and its children should be drawn.<br />
4981         /// Not all views are renderable, but DrawMode can be inherited from any view.<br />
4982         /// If an object is in a 3D layer, it will be depth-tested against other objects in the world, i.e., it may be obscured if other objects are in front.<br />
4983         /// If DrawMode.Overlay2D is used, the view and its children will be drawn as a 2D overlay.<br />
4984         /// Overlay views are drawn in a separate pass, after all non-overlay views within the layer.<br />
4985         /// For overlay views, the drawing order is with respect to tree levels of views, and depth-testing will not be used.<br />
4986         /// </summary>
4987         /// <since_tizen> 3 </since_tizen>
4988         public DrawModeType DrawMode
4989         {
4990             get
4991             {
4992                 return (DrawModeType)GetValue(DrawModeProperty);
4993             }
4994             set
4995             {
4996                 SetValue(DrawModeProperty, value);
4997                 NotifyPropertyChanged();
4998             }
4999         }
5000
5001         /// <summary>
5002         /// Gets or sets the relative to parent size factor of the view.<br />
5003         /// This factor is only used when ResizePolicyType is set to either: ResizePolicyType.SizeRelativeToParent or ResizePolicyType.SizeFixedOffsetFromParent.<br />
5004         /// This view's size is set to the view's size multiplied by or added to this factor, depending on ResizePolicyType.<br />
5005         /// </summary>
5006         /// <since_tizen> 3 </since_tizen>
5007         public Vector3 SizeModeFactor
5008         {
5009             get
5010             {
5011                 return (Vector3)GetValue(SizeModeFactorProperty);
5012             }
5013             set
5014             {
5015                 SetValue(SizeModeFactorProperty, value);
5016                 NotifyPropertyChanged();
5017             }
5018         }
5019
5020         /// <summary>
5021         /// Gets or sets the width resize policy to be used.
5022         /// </summary>
5023         /// <since_tizen> 3 </since_tizen>
5024         public ResizePolicyType WidthResizePolicy
5025         {
5026             get
5027             {
5028                 return (ResizePolicyType)GetValue(WidthResizePolicyProperty);
5029             }
5030             set
5031             {
5032                 SetValue(WidthResizePolicyProperty, value);
5033                 NotifyPropertyChanged();
5034             }
5035         }
5036
5037         /// <summary>
5038         /// Gets or sets the height resize policy to be used.
5039         /// </summary>
5040         /// <since_tizen> 3 </since_tizen>
5041         public ResizePolicyType HeightResizePolicy
5042         {
5043             get
5044             {
5045                 return (ResizePolicyType)GetValue(HeightResizePolicyProperty);
5046             }
5047             set
5048             {
5049                 SetValue(HeightResizePolicyProperty, value);
5050                 NotifyPropertyChanged();
5051             }
5052         }
5053
5054         /// <summary>
5055         /// Gets or sets the policy to use when setting size with size negotiation.<br />
5056         /// Defaults to SizeScalePolicyType.UseSizeSet.<br />
5057         /// </summary>
5058         /// <since_tizen> 3 </since_tizen>
5059         public SizeScalePolicyType SizeScalePolicy
5060         {
5061             get
5062             {
5063                 return (SizeScalePolicyType)GetValue(SizeScalePolicyProperty);
5064             }
5065             set
5066             {
5067                 SetValue(SizeScalePolicyProperty, value);
5068                 NotifyPropertyChanged();
5069             }
5070         }
5071
5072         /// <summary>
5073         ///  Gets or sets the status of whether the width size is dependent on the height size.
5074         /// </summary>
5075         /// <since_tizen> 3 </since_tizen>
5076         public bool WidthForHeight
5077         {
5078             get
5079             {
5080                 return (bool)GetValue(WidthForHeightProperty);
5081             }
5082             set
5083             {
5084                 SetValue(WidthForHeightProperty, value);
5085                 NotifyPropertyChanged();
5086             }
5087         }
5088
5089         /// <summary>
5090         /// Gets or sets the status of whether the height size is dependent on the width size.
5091         /// </summary>
5092         /// <since_tizen> 3 </since_tizen>
5093         public bool HeightForWidth
5094         {
5095             get
5096             {
5097                 return (bool)GetValue(HeightForWidthProperty);
5098             }
5099             set
5100             {
5101                 SetValue(HeightForWidthProperty, value);
5102                 NotifyPropertyChanged();
5103             }
5104         }
5105
5106         /// <summary>
5107         /// Gets or sets the padding for use in layout.
5108         /// </summary>
5109         /// <since_tizen> 5 </since_tizen>
5110         public Extents Padding
5111         {
5112             get
5113             {
5114                 return (Extents)GetValue(PaddingProperty);
5115             }
5116             set
5117             {
5118                 SetValue(PaddingProperty, value);
5119                 NotifyPropertyChanged();
5120             }
5121         }
5122
5123         /// <summary>
5124         /// Gets or sets the minimum size the view can be assigned in size negotiation.
5125         /// </summary>
5126         /// <since_tizen> 3 </since_tizen>
5127         public Size2D MinimumSize
5128         {
5129             get
5130             {
5131                 return (Size2D)GetValue(MinimumSizeProperty);
5132             }
5133             set
5134             {
5135                 if (Layout != null)
5136                 {
5137                     // Note: it only works if minimum size is >= than natural size.
5138                     // To force the size it should be done through the width&height spec or Size2D.
5139                     Layout.MinimumWidth = new Tizen.NUI.LayoutLength(value.Width);
5140                     Layout.MinimumHeight = new Tizen.NUI.LayoutLength(value.Height);
5141                 }
5142                 SetValue(MinimumSizeProperty, value);
5143                 NotifyPropertyChanged();
5144             }
5145         }
5146
5147         /// <summary>
5148         /// Gets or sets the maximum size the view can be assigned in size negotiation.
5149         /// </summary>
5150         /// <since_tizen> 3 </since_tizen>
5151         public Size2D MaximumSize
5152         {
5153             get
5154             {
5155                 return (Size2D)GetValue(MaximumSizeProperty);
5156             }
5157             set
5158             {
5159                 // We don't have Layout.Maximum(Width|Height) so we cannot apply it to layout.
5160                 // MATCH_PARENT spec + parent container size can be used to limit
5161                 SetValue(MaximumSizeProperty, value);
5162                 NotifyPropertyChanged();
5163             }
5164         }
5165
5166         /// <summary>
5167         /// Gets or sets whether a child view inherits it's parent's position.<br />
5168         /// Default is to inherit.<br />
5169         /// Switching this off means that using position sets the view's world position, i.e., translates from the world origin (0,0,0) to the pivot point of the view.<br />
5170         /// </summary>
5171         /// <since_tizen> 3 </since_tizen>
5172         public bool InheritPosition
5173         {
5174             get
5175             {
5176                 return (bool)GetValue(InheritPositionProperty);
5177             }
5178             set
5179             {
5180                 SetValue(InheritPositionProperty, value);
5181                 NotifyPropertyChanged();
5182             }
5183         }
5184
5185         /// <summary>
5186         /// Gets or sets the clipping behavior (mode) of it's children.
5187         /// </summary>
5188         /// <since_tizen> 3 </since_tizen>
5189         public ClippingModeType ClippingMode
5190         {
5191             get
5192             {
5193                 return (ClippingModeType)GetValue(ClippingModeProperty);
5194             }
5195             set
5196             {
5197                 SetValue(ClippingModeProperty, value);
5198                 NotifyPropertyChanged();
5199             }
5200         }
5201
5202         /// <summary>
5203         /// Gets the number of renderers held by the view.
5204         /// </summary>
5205         /// <since_tizen> 3 </since_tizen>
5206         public uint RendererCount
5207         {
5208             get
5209             {
5210                 return GetRendererCount();
5211             }
5212         }
5213
5214         /// <summary>
5215         /// [Obsolete("Please do not use! this will be deprecated")]
5216         /// </summary>
5217         /// <since_tizen> 3 </since_tizen>
5218         /// Please do not use! this will be deprecated!
5219         /// Instead please use PivotPoint.
5220         [Obsolete("Please do not use! This will be deprecated! Please use PivotPoint instead! " +
5221             "Like: " +
5222             "View view = new View(); " +
5223             "view.PivotPoint = PivotPoint.Center; " +
5224             "view.PositionUsesPivotPoint = true;")]
5225         [EditorBrowsable(EditorBrowsableState.Never)]
5226         public Position AnchorPoint
5227         {
5228             get
5229             {
5230                 Position temp = new Position(0.0f, 0.0f, 0.0f);
5231                 GetProperty(View.Property.ANCHOR_POINT).Get(temp);
5232                 return temp;
5233             }
5234             set
5235             {
5236                 SetProperty(View.Property.ANCHOR_POINT, new Tizen.NUI.PropertyValue(value));
5237                 NotifyPropertyChanged();
5238             }
5239         }
5240
5241         /// <summary>
5242         /// Sets the size of a view for the width, the height and the depth.<br />
5243         /// Geometry can be scaled to fit within this area.<br />
5244         /// This does not interfere with the view's scale factor.<br />
5245         /// The views default depth is the minimum of width and height.<br />
5246         /// </summary>
5247         /// <remarks>
5248         /// Please note that multi-cascade setting is not possible for this NUI object. <br />
5249         /// It is recommended that NUI object typed properties are configured by their constructor with parameters. <br />
5250         /// For example, this code is working fine : view.Size = new Size( 1.0f, 1.0f, 0.0f); <br />
5251         /// but this will not work! : view.Size.Width = 2.0f; view.Size.Height = 2.0f; <br />
5252         /// </remarks>
5253         /// <since_tizen> 5 </since_tizen>
5254         public Size Size
5255         {
5256             get
5257             {
5258                 return (Size)GetValue(SizeProperty);
5259             }
5260             set
5261             {
5262                 SetValue(SizeProperty, value);
5263                 NotifyPropertyChanged();
5264             }
5265         }
5266
5267         /// <summary>
5268         /// "Please DO NOT use! This will be deprecated! Please use 'Container GetParent() for derived class' instead!"
5269         /// </summary>
5270         /// <since_tizen> 3 </since_tizen>
5271         [Obsolete("Please do not use! This will be deprecated! Please use 'Container GetParent() for derived class' instead! " +
5272             "Like: " +
5273             "Container parent =  view.GetParent(); " +
5274             "View view = parent as View;")]
5275         [EditorBrowsable(EditorBrowsableState.Never)]
5276         public new View Parent
5277         {
5278             get
5279             {
5280                 View ret;
5281                 IntPtr cPtr = NDalicPINVOKE.Actor_GetParent(swigCPtr);
5282                 HandleRef CPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
5283                 BaseHandle basehandle = Registry.GetManagedBaseHandleFromNativePtr(CPtr.Handle);
5284
5285                 if (basehandle is Layer layer)
5286                 {
5287                     ret = new View(Layer.getCPtr(layer).Handle, false);
5288                     NUILog.Error("This Parent property is deprecated, shoud do not be used");
5289                 }
5290                 else
5291                 {
5292                     ret = basehandle as View;
5293                 }
5294
5295                 NDalicPINVOKE.delete_BaseHandle(CPtr);
5296                 CPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
5297
5298                 if (NDalicPINVOKE.SWIGPendingException.Pending)
5299                     throw NDalicPINVOKE.SWIGPendingException.Retrieve();
5300                 return ret;
5301             }
5302         }
5303
5304         /// <summary>
5305         /// Gets/Sets whether inherit parent's the layout Direction.
5306         /// </summary>
5307         /// <since_tizen> 4 </since_tizen>
5308         public bool InheritLayoutDirection
5309         {
5310             get
5311             {
5312                 return (bool)GetValue(InheritLayoutDirectionProperty);
5313             }
5314             set
5315             {
5316                 SetValue(InheritLayoutDirectionProperty, value);
5317                 NotifyPropertyChanged();
5318             }
5319         }
5320
5321         /// <summary>
5322         /// Gets/Sets the layout Direction.
5323         /// </summary>
5324         /// <since_tizen> 4 </since_tizen>
5325         public ViewLayoutDirectionType LayoutDirection
5326         {
5327             get
5328             {
5329                 return (ViewLayoutDirectionType)GetValue(LayoutDirectionProperty);
5330             }
5331             set
5332             {
5333                 SetValue(LayoutDirectionProperty, value);
5334                 NotifyPropertyChanged();
5335             }
5336         }
5337
5338         /// <summary>
5339         /// Gets or sets the Margin for use in layout.
5340         /// </summary>
5341         /// <remarks>
5342         /// Margin property is supported by Layout algorithms and containers.
5343         /// Please Set Layout if you want to use Margin property.
5344         /// </remarks>
5345         /// <since_tizen> 4 </since_tizen>
5346         public Extents Margin
5347         {
5348             get
5349             {
5350                 return (Extents)GetValue(MarginProperty);
5351             }
5352             set
5353             {
5354                 SetValue(MarginProperty, value);
5355                 NotifyPropertyChanged();
5356             }
5357         }
5358
5359         internal Style Style
5360         {
5361             get
5362             {
5363                 return (Style)GetValue(StyleProperty);
5364             }
5365             set
5366             {
5367                 SetValue(StyleProperty, value);
5368             }
5369         }
5370
5371         /// <summary>
5372         /// [Obsolete("Please do not use! this will be deprecated")]
5373         /// </summary>
5374         /// Please do not use! this will be deprecated!
5375         /// Instead please use Padding.
5376         /// <since_tizen> 4 </since_tizen>
5377         [Obsolete("Please do not use! this will be deprecated, instead please use Padding.")]
5378         [EditorBrowsable(EditorBrowsableState.Never)]
5379         public Extents PaddingEX
5380         {
5381             get
5382             {
5383                 Extents temp = new Extents(0, 0, 0, 0);
5384                 GetProperty(View.Property.PADDING).Get(temp);
5385                 return temp;
5386             }
5387             set
5388             {
5389                 SetProperty(View.Property.PADDING, new Tizen.NUI.PropertyValue(value));
5390                 NotifyPropertyChanged();
5391             }
5392         }
5393
5394         /// <summary>
5395         /// Perform an action on a visual registered to this view. <br />
5396         /// Visuals will have actions. This API is used to perform one of these actions with the given attributes.
5397         /// </summary>
5398         /// <param name="propertyIndexOfVisual">The Property index of the visual.</param>
5399         /// <param name="propertyIndexOfActionId">The action to perform. See Visual to find the supported actions.</param>
5400         /// <param name="attributes">Optional attributes for the action.</param>
5401         /// <since_tizen> 5 </since_tizen>
5402         public void DoAction(int propertyIndexOfVisual, int propertyIndexOfActionId, PropertyValue attributes)
5403         {
5404             NDalicManualPINVOKE.View_DoAction(swigCPtr, propertyIndexOfVisual, propertyIndexOfActionId, PropertyValue.getCPtr(attributes));
5405             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
5406         }
5407
5408         internal readonly MergedStyle _mergedStyle;
5409
5410         /// <summary>
5411         /// Child property to specify desired width
5412         /// </summary>
5413         internal int LayoutWidthSpecificationFixed
5414         {
5415             get
5416             {
5417                 int tmp = 0;
5418                 if (GetProperty(LayoutItemWrapper.ChildProperty.WIDTH_SPECIFICATION).Get(out tmp) == false)
5419                 {
5420                     NUILog.Error("WidthSpecificationFixed get error!");
5421                 }
5422                 return tmp;
5423             }
5424             set
5425             {
5426                 SetProperty(LayoutItemWrapper.ChildProperty.WIDTH_SPECIFICATION, new Tizen.NUI.PropertyValue(value));
5427             }
5428         }
5429
5430         /// <summary>
5431         /// Child property to specify desired height
5432         /// </summary>
5433         internal int LayoutHeightSpecificationFixed
5434         {
5435             get
5436             {
5437                 int tmp = 0;
5438                 if (GetProperty(LayoutItemWrapper.ChildProperty.HEIGHT_SPECIFICATION).Get(out tmp) == false)
5439                 {
5440                     NUILog.Error("HeightSpecificationFixed get error!");
5441                 }
5442                 return tmp;
5443             }
5444             set
5445             {
5446                 SetProperty(LayoutItemWrapper.ChildProperty.HEIGHT_SPECIFICATION, new Tizen.NUI.PropertyValue(value));
5447             }
5448         }
5449
5450         /// <summary>
5451         /// Child property to specify desired width, use MatchParent/WrapContent)
5452         /// </summary>
5453         internal ChildLayoutData LayoutWidthSpecification
5454         {
5455             get
5456             {
5457                 int tmp = 0;
5458                 if (GetProperty(LayoutItemWrapper.ChildProperty.WIDTH_SPECIFICATION).Get(out tmp) == false)
5459                 {
5460                     NUILog.Error("WidthSpecificationFixed get error!");
5461                 }
5462                 return (ChildLayoutData)tmp;
5463             }
5464             set
5465             {
5466                 SetProperty(LayoutItemWrapper.ChildProperty.WIDTH_SPECIFICATION, new Tizen.NUI.PropertyValue((int)value));
5467             }
5468         }
5469
5470         /// <summary>
5471         /// Child property to specify desired height, use MatchParent/WrapContent)
5472         /// </summary>
5473         internal ChildLayoutData LayoutHeightSpecification
5474         {
5475             get
5476             {
5477                 int tmp = 0;
5478                 if (GetProperty(LayoutItemWrapper.ChildProperty.HEIGHT_SPECIFICATION).Get(out tmp) == false)
5479                 {
5480                     NUILog.Error("HeightSpecificationFixed get error!");
5481                 }
5482                 return (ChildLayoutData)tmp;
5483             }
5484             set
5485             {
5486                 SetProperty(LayoutItemWrapper.ChildProperty.HEIGHT_SPECIFICATION, new Tizen.NUI.PropertyValue((int)value));
5487             }
5488         }
5489
5490     }
5491
5492     /// <summary>
5493     /// The View layout Direction type.
5494     /// </summary>
5495     /// <since_tizen> 4 </since_tizen>
5496     public enum ViewLayoutDirectionType
5497     {
5498         /// <summary>
5499         /// Left to right.
5500         /// </summary>
5501         /// <since_tizen> 4 </since_tizen>
5502         LTR,
5503         /// <summary>
5504         /// Right to left.
5505         /// </summary>
5506         /// <since_tizen> 4 </since_tizen>
5507         RTL
5508     }
5509
5510     internal enum ChildLayoutData
5511     {
5512         /// <summary>
5513         /// Constant which indicates child size should match parent size
5514         /// </summary>
5515         MatchParent = -1,
5516         /// <summary>
5517         /// Constant which indicates parent should take the smallest size possible to wrap it's children with their desired size
5518         /// </summary>
5519         WrapContent = -2,
5520     }
5521
5522 }