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