merging dali-sharp class scope with nui
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / BaseComponents / View.cs
1 /** Copyright (c) 2017 Samsung Electronics Co., Ltd.
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 *
15 */
16
17 namespace Tizen.NUI.BaseComponents
18 {
19
20     using System;
21     using System.Runtime.InteropServices;
22
23     /// <summary>
24     /// View is the base class for all views.
25     /// </summary>
26     public class View : Animatable //CustomActor => Animatable
27     {
28         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
29
30         internal View(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.View_SWIGUpcast(cPtr), cMemoryOwn)
31         {
32             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
33
34             // Register this instance of view in the view registry.
35             ViewRegistry.RegisterView(this);
36         }
37
38         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(View obj)
39         {
40             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
41         }
42
43         //you can override it to clean-up your own resources.
44         protected override void Dispose(DisposeTypes type)
45         {
46             if(disposed)
47             {
48                 return;
49             }
50
51             if(type == DisposeTypes.Explicit)
52             {
53                 //Called by User
54                 //Release your own managed resources here.
55                 //You should release all of your own disposable objects here.
56             }
57
58             //Release your own unmanaged resources here.
59             //You should not access any managed member here except static instance.
60             //because the execution order of Finalizes is non-deterministic.
61
62             //Unreference this from if a static instance refer to this. 
63             ViewRegistry.UnregisterView(this);            
64
65             if (swigCPtr.Handle != global::System.IntPtr.Zero)
66             {
67                 if (swigCMemOwn)
68                 {
69                     swigCMemOwn = false;
70                     NDalicPINVOKE.delete_View(swigCPtr);
71                 }
72                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
73             }
74
75             base.Dispose(type);
76         }
77
78         private EventHandler _keyInputFocusGainedEventHandler;
79         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
80         private delegate void KeyInputFocusGainedCallbackType(IntPtr control);
81         private KeyInputFocusGainedCallbackType _keyInputFocusGainedCallback;
82
83         /// <summary>
84         /// Event for KeyInputFocusGained signal which can be used to subscribe/unsubscribe the event handler provided by the user.<br>
85         /// KeyInputFocusGained signal is emitted when the control gets Key Input Focus.<br>
86         /// </summary>
87         public event EventHandler FocusGained
88         {
89             add
90             {
91                 if (_keyInputFocusGainedEventHandler == null)
92                 {
93                     _keyInputFocusGainedCallback = OnKeyInputFocusGained;
94                     this.KeyInputFocusGainedSignal().Connect(_keyInputFocusGainedCallback);
95                 }
96
97                 _keyInputFocusGainedEventHandler += value;
98             }
99
100             remove
101             {
102                 _keyInputFocusGainedEventHandler -= value;
103
104                 if (_keyInputFocusGainedEventHandler == null && KeyInputFocusGainedSignal().Empty() == false)
105                 {
106                     this.KeyInputFocusGainedSignal().Disconnect(_keyInputFocusGainedCallback);
107                 }
108             }
109         }
110
111         private void OnKeyInputFocusGained(IntPtr view)
112         {
113             if (_keyInputFocusGainedEventHandler != null)
114             {
115                 _keyInputFocusGainedEventHandler(this, null);
116             }
117         }
118
119
120         private EventHandler _keyInputFocusLostEventHandler;
121         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
122         private delegate void KeyInputFocusLostCallbackType(IntPtr control);
123         private KeyInputFocusLostCallbackType _keyInputFocusLostCallback;
124
125         /// <summary>
126         /// Event for KeyInputFocusLost signal which can be used to subscribe/unsubscribe the event handler provided by the user.<br>
127         /// KeyInputFocusLost signal is emitted when the control loses Key Input Focus.<br>
128         /// </summary>
129         public event EventHandler FocusLost
130         {
131             add
132             {
133                 if (_keyInputFocusLostEventHandler == null)
134                 {
135                     _keyInputFocusLostCallback = OnKeyInputFocusLost;
136                     this.KeyInputFocusLostSignal().Connect(_keyInputFocusLostCallback);
137                 }
138
139                 _keyInputFocusLostEventHandler += value;
140             }
141
142             remove
143             {
144                 _keyInputFocusLostEventHandler -= value;
145
146                 if (_keyInputFocusLostEventHandler == null && KeyInputFocusLostSignal().Empty() == false)
147                 {
148                     this.KeyInputFocusLostSignal().Disconnect(_keyInputFocusLostCallback);
149                 }
150             }
151         }
152
153         private void OnKeyInputFocusLost(IntPtr view)
154         {
155             if (_keyInputFocusLostEventHandler != null)
156             {
157                 _keyInputFocusLostEventHandler(this, null);
158             }
159         }
160
161         /// <summary>
162         /// Event arguments that passed via KeyEvent signal.
163         /// </summary>
164         public class KeyEventArgs : EventArgs
165         {
166             private Key _key;
167
168             /// <summary>
169             /// Key - is the key sent to the View.
170             /// </summary>
171             public Key Key
172             {
173                 get
174                 {
175                     return _key;
176                 }
177                 set
178                 {
179                     _key = value;
180                 }
181             }
182         }
183
184         private EventHandlerWithReturnType<object, KeyEventArgs, bool> _keyEventHandler;
185         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
186         private delegate bool KeyCallbackType(IntPtr control, IntPtr keyEvent);
187         private KeyCallbackType _keyCallback;
188
189         /// <summary>
190         /// Event for KeyPressed signal which can be used to subscribe/unsubscribe the event handler provided by the user.<br>
191         /// KeyPressed signal is emitted when key event is received.<br>
192         /// </summary>
193         public event EventHandlerWithReturnType<object, KeyEventArgs, bool> KeyEvent
194         {
195             add
196             {
197                 if (_keyEventHandler == null)
198                 {
199                     _keyCallback = OnKeyEvent;
200                     this.KeyEventSignal().Connect(_keyCallback);
201                 }
202
203                 _keyEventHandler += value;
204             }
205
206             remove
207             {
208                 _keyEventHandler -= value;
209
210                 if (_keyEventHandler == null && KeyEventSignal().Empty() == false)
211                 {
212                     this.KeyEventSignal().Disconnect(_keyCallback);
213                 }
214             }
215         }
216
217         private bool OnKeyEvent(IntPtr view, IntPtr keyEvent)
218         {
219             KeyEventArgs e = new KeyEventArgs();
220
221             e.Key = Tizen.NUI.Key.GetKeyFromPtr(keyEvent);
222
223             if (_keyEventHandler != null)
224             {
225                 return _keyEventHandler(this, e);
226             }
227             return false;
228         }
229
230
231         private EventHandler _onRelayoutEventHandler;
232         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
233         private delegate void OnRelayoutEventCallbackType(IntPtr control);
234         private OnRelayoutEventCallbackType _onRelayoutEventCallback;
235
236         /// <summary>
237         /// Event for OnRelayout signal which can be used to subscribe/unsubscribe the event handler.<br>
238         /// OnRelayout signal is emitted after the size has been set on the view during relayout.<br>
239         /// </summary>
240         public event EventHandler OnRelayoutEvent
241         {
242             add
243             {
244                 if (_onRelayoutEventHandler == null)
245                 {
246                     _onRelayoutEventCallback = OnRelayout;
247                     this.OnRelayoutSignal().Connect(_onRelayoutEventCallback);
248                 }
249
250                 _onRelayoutEventHandler += value;
251             }
252
253             remove
254             {
255                 _onRelayoutEventHandler -= value;
256
257                 if (_onRelayoutEventHandler == null && OnRelayoutSignal().Empty() == false)
258                 {
259                     this.OnRelayoutSignal().Disconnect(_onRelayoutEventCallback);
260                 }
261
262             }
263         }
264
265         // Callback for View OnRelayout signal
266         private void OnRelayout(IntPtr data)
267         {
268             if (_onRelayoutEventHandler != null)
269             {
270                 _onRelayoutEventHandler(this, null);
271             }
272         }
273
274         /// <summary>
275         /// Event arguments that passed via Touch signal.
276         /// </summary>
277         public class TouchEventArgs : EventArgs
278         {
279             private Touch _touch;
280
281             /// <summary>
282             /// Touch - contains the information of touch points
283             /// </summary>
284             public Touch Touch
285             {
286                 get
287                 {
288                     return _touch;
289                 }
290                 set
291                 {
292                     _touch = value;
293                 }
294             }
295         }
296
297         private EventHandlerWithReturnType<object, TouchEventArgs, bool> _touchDataEventHandler;
298         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
299         private delegate bool TouchDataCallbackType(IntPtr view, IntPtr touchData);
300         private TouchDataCallbackType _touchDataCallback;
301
302         /// <summary>
303         /// Event for Touched signal which can be used to subscribe/unsubscribe the event handler provided by the user.<br>
304         /// Touched signal is emitted when touch input is received.<br>
305         /// </summary>
306         public event EventHandlerWithReturnType<object, TouchEventArgs, bool> Touched
307         {
308             add
309             {
310                 if (_touchDataEventHandler == null)
311                 {
312                     _touchDataCallback = OnTouch;
313                     this.TouchSignal().Connect(_touchDataCallback);
314                 }
315
316                 _touchDataEventHandler += value;
317             }
318
319             remove
320             {
321                 _touchDataEventHandler -= value;
322
323                 if (_touchDataEventHandler == null && TouchSignal().Empty() == false)
324                 {
325                     this.TouchSignal().Disconnect(_touchDataCallback);
326                 }
327
328             }
329         }
330
331         // Callback for View TouchSignal
332         private bool OnTouch(IntPtr view, IntPtr touchData)
333         {
334             TouchEventArgs e = new TouchEventArgs();
335
336             e.Touch = Tizen.NUI.Touch.GetTouchFromPtr(touchData);
337
338             if (_touchDataEventHandler != null)
339             {
340                 return _touchDataEventHandler(this, e);
341             }
342             return false;
343         }
344
345
346         /// <summary>
347         /// Event arguments that passed via Hover signal.
348         /// </summary>
349         public class HoverEventArgs : EventArgs
350         {
351             private Hover _hover;
352
353             /// <summary>
354             /// Hover - contains touch points that represent the points that are currently being hovered or the points where a hover has stopped.
355             /// </summary>
356             public Hover Hover
357             {
358                 get
359                 {
360                     return _hover;
361                 }
362                 set
363                 {
364                     _hover = value;
365                 }
366             }
367         }
368
369         private EventHandlerWithReturnType<object, HoverEventArgs, bool> _hoverEventHandler;
370         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
371         private delegate bool HoverEventCallbackType(IntPtr view, IntPtr hoverEvent);
372         private HoverEventCallbackType _hoverEventCallback;
373
374         /// <summary>
375         /// Event for Hovered signal which can be used to subscribe/unsubscribe the event handler provided by the user.<br>
376         /// Hovered signal is emitted when hover input is received.<br>
377         /// </summary>
378         public event EventHandlerWithReturnType<object, HoverEventArgs, bool> Hovered
379         {
380             add
381             {
382                 if (_hoverEventHandler == null)
383                 {
384                     _hoverEventCallback = OnHoverEvent;
385                     this.HoveredSignal().Connect(_hoverEventCallback);
386                 }
387
388                 _hoverEventHandler += value;
389             }
390
391             remove
392             {
393                 _hoverEventHandler -= value;
394
395                 if (_hoverEventHandler == null && HoveredSignal().Empty() == false)
396                 {
397                     this.HoveredSignal().Disconnect(_hoverEventCallback);
398                 }
399
400             }
401         }
402
403         // Callback for View Hover signal
404         private bool OnHoverEvent(IntPtr view, IntPtr hoverEvent)
405         {
406             HoverEventArgs e = new HoverEventArgs();
407
408             e.Hover = Tizen.NUI.Hover.GetHoverFromPtr(hoverEvent);
409
410             if (_hoverEventHandler != null)
411             {
412                 return _hoverEventHandler(this, e);
413             }
414             return false;
415         }
416
417
418         /// <summary>
419         /// Event arguments that passed via Wheel signal.
420         /// </summary>
421         public class WheelEventArgs : EventArgs
422         {
423             private Wheel _wheel;
424
425             /// <summary>
426             /// WheelEvent - store a wheel rolling type : MOUSE_WHEEL or CUSTOM_WHEEL
427             /// </summary>
428             public Wheel Wheel
429             {
430                 get
431                 {
432                     return _wheel;
433                 }
434                 set
435                 {
436                     _wheel = value;
437                 }
438             }
439         }
440
441         private EventHandlerWithReturnType<object, WheelEventArgs, bool> _wheelEventHandler;
442         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
443         private delegate bool WheelEventCallbackType(IntPtr view, IntPtr wheelEvent);
444         private WheelEventCallbackType _wheelEventCallback;
445
446         /// <summary>
447         /// Event for WheelMoved signal which can be used to subscribe/unsubscribe the event handler provided by the user.<br>
448         /// WheelMoved signal is emitted when wheel event is received.<br>
449         /// </summary>
450         public event EventHandlerWithReturnType<object, WheelEventArgs, bool> WheelMoved
451         {
452             add
453             {
454                 if (_wheelEventHandler == null)
455                 {
456                     _wheelEventCallback = OnWheelEvent;
457                     this.WheelEventSignal().Connect(_wheelEventCallback);
458                 }
459
460                 _wheelEventHandler += value;
461             }
462
463             remove
464             {
465                 _wheelEventHandler -= value;
466
467                 if (_wheelEventHandler == null && WheelEventSignal().Empty() == false)
468                 {
469                     this.WheelEventSignal().Disconnect(_wheelEventCallback);
470                 }
471
472             }
473         }
474
475         // Callback for View Wheel signal
476         private bool OnWheelEvent(IntPtr view, IntPtr wheelEvent)
477         {
478             WheelEventArgs e = new WheelEventArgs();
479
480             e.Wheel = Tizen.NUI.Wheel.GetWheelFromPtr(wheelEvent);
481
482             if (_wheelEventHandler != null)
483             {
484                 return _wheelEventHandler(this, e);
485             }
486             return false;
487         }
488
489
490         private EventHandler _onWindowEventHandler;
491         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
492         private delegate void OnWindowEventCallbackType(IntPtr control);
493         private OnWindowEventCallbackType _onWindowEventCallback;
494
495         /// <summary>
496         /// Event for OnWindow signal which can be used to subscribe/unsubscribe the event handler.<br>
497         /// OnWindow signal is emitted after the view has been connected to the Window.<br>
498         /// </summary>
499         public event EventHandler OnWindowEvent
500         {
501             add
502             {
503                 if (_onWindowEventHandler == null)
504                 {
505                     _onWindowEventCallback = OnWindow;
506                     this.OnWindowSignal().Connect(_onWindowEventCallback);
507                 }
508
509                 _onWindowEventHandler += value;
510             }
511
512             remove
513             {
514                 _onWindowEventHandler -= value;
515
516                 if (_onWindowEventHandler == null && OnWindowSignal().Empty() == false)
517                 {
518                     this.OnWindowSignal().Disconnect(_onWindowEventCallback);
519                 }
520             }
521         }
522
523         // Callback for View OnWindow signal
524         private void OnWindow(IntPtr data)
525         {
526             if (_onWindowEventHandler != null)
527             {
528                 _onWindowEventHandler(this, null);
529             }
530         }
531
532
533         private EventHandler _offWindowEventHandler;
534         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
535         private delegate void OffWindowEventCallbackType(IntPtr control);
536         private OffWindowEventCallbackType _offWindowEventCallback;
537
538         /// <summary>
539         /// Event for OffWindow signal which can be used to subscribe/unsubscribe the event handler.<br>
540         /// OffWindow signal is emitted after the view has been disconnected from the Window.<br>
541         /// </summary>
542         public event EventHandler OffWindowEvent
543         {
544             add
545             {
546                 if (_offWindowEventHandler == null)
547                 {
548                     _offWindowEventCallback = OffWindow;
549                     this.OffWindowSignal().Connect(_offWindowEventCallback);
550                 }
551
552                 _offWindowEventHandler += value;
553             }
554
555             remove
556             {
557                 _offWindowEventHandler -= value;
558
559                 if (_offWindowEventHandler == null && OffWindowSignal().Empty() == false)
560                 {
561                     this.OffWindowSignal().Disconnect(_offWindowEventCallback);
562                 }
563             }
564         }
565
566         // Callback for View OffWindow signal
567         private void OffWindow(IntPtr data)
568         {
569             if (_offWindowEventHandler != null)
570             {
571                 _offWindowEventHandler(this, null);
572             }
573         }
574
575         /// <summary>
576         /// Event arguments of visibility changed.
577         /// </summary>
578         public class VisibilityChangedEventArgs : EventArgs
579         {
580             private View _view;
581             private bool _visibility;
582             private VisibilityChangeType _type;
583
584             /// <summary>
585             /// The view, or child of view, whose visibility has changed.
586             /// </summary>
587             public View View
588             {
589                 get
590                 {
591                     return _view;
592                 }
593                 set
594                 {
595                     _view = value;
596                 }
597             }
598
599             /// <summary>
600             /// Whether the view is now visible or not.
601             /// </summary>
602             public bool Visibility
603             {
604                 get
605                 {
606                     return _visibility;
607                 }
608                 set
609                 {
610                     _visibility = value;
611                 }
612             }
613
614             /// <summary>
615             /// Whether the view's visible property has changed or a parent's.
616             /// </summary>
617             public VisibilityChangeType Type
618             {
619                 get
620                 {
621                     return _type;
622                 }
623                 set
624                 {
625                     _type = value;
626                 }
627             }
628         }
629
630         private EventHandler<VisibilityChangedEventArgs> _visibilityChangedEventHandler;
631         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
632         private delegate void VisibilityChangedEventCallbackType(IntPtr data, bool visibility, VisibilityChangeType type);
633         private VisibilityChangedEventCallbackType _visibilityChangedEventCallback;
634
635         /// <summary>
636         /// Event for visibility change which can be used to subscribe/unsubscribe the event handler.<br>
637         /// This signal is emitted when the visible property of this or a parent view is changed.<br>
638         /// </summary>
639         public event EventHandler<VisibilityChangedEventArgs> VisibilityChanged
640         {
641             add
642             {
643                 if (_visibilityChangedEventHandler == null)
644                 {
645                     _visibilityChangedEventCallback = OnVisibilityChanged;
646                     VisibilityChangedSignal(this).Connect(_visibilityChangedEventCallback);
647                 }
648
649                 _visibilityChangedEventHandler += value;
650             }
651
652             remove
653             {
654                 _visibilityChangedEventHandler -= value;
655
656                 if (_visibilityChangedEventHandler == null && VisibilityChangedSignal(this).Empty() == false)
657                 {
658                     VisibilityChangedSignal(this).Disconnect(_visibilityChangedEventCallback);
659                 }
660             }
661         }
662
663         // Callback for View visibility change signal
664         private void OnVisibilityChanged(IntPtr data, bool visibility, VisibilityChangeType type)
665         {
666             VisibilityChangedEventArgs e = new VisibilityChangedEventArgs();
667             if (data != null)
668             {
669                 e.View = View.GetViewFromPtr(data);
670             }
671             e.Visibility = visibility;
672             e.Type = type;
673
674             if (_visibilityChangedEventHandler != null)
675             {
676                 _visibilityChangedEventHandler(this, e);
677             }
678         }
679
680         internal static View GetViewFromPtr(global::System.IntPtr cPtr)
681         {
682             View ret = new View(cPtr, false);
683             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
684             return ret;
685         }
686
687         internal IntPtr GetPtrfromView()
688         {
689             return (IntPtr)swigCPtr;
690         }
691
692         internal class Property : global::System.IDisposable
693         {
694             private global::System.Runtime.InteropServices.HandleRef swigCPtr;
695             protected bool swigCMemOwn;
696
697             internal Property(global::System.IntPtr cPtr, bool cMemoryOwn)
698             {
699                 swigCMemOwn = cMemoryOwn;
700                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
701             }
702
703             internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj)
704             {
705                 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
706             }
707
708             //A Flag to check who called Dispose(). (By User or DisposeQueue)
709             private bool isDisposeQueued = false;
710             //A Flat to check if it is already disposed.
711             protected bool disposed = false;
712
713             ~Property()
714             {
715                 if (!isDisposeQueued)
716                 {
717                     isDisposeQueued = true;
718                     DisposeQueue.Instance.Add(this);
719                 }
720             }
721
722             public void Dispose()
723             {
724                 //Throw excpetion if Dispose() is called in separate thread.
725                 if (!Window.IsInstalled())
726                 {
727                     throw new System.InvalidOperationException("This API called from separate thread. This API must be called from MainThread.");
728                 }
729
730                 if (isDisposeQueued)
731                 {
732                     Dispose(DisposeTypes.Implicit);
733                 }
734                 else
735                 {
736                     Dispose(DisposeTypes.Explicit);
737                     System.GC.SuppressFinalize(this);
738                 }
739             }
740
741             protected virtual void Dispose(DisposeTypes type)
742             {
743                 if (disposed)
744                 {
745                     return;
746                 }
747
748                 if (type == DisposeTypes.Explicit)
749                 {
750                     //Called by User
751                     //Release your own managed resources here.
752                     //You should release all of your own disposable objects here.
753
754                 }
755
756                 //Release your own unmanaged resources here.
757                 //You should not access any managed member here except static instance.
758                 //because the execution order of Finalizes is non-deterministic.
759
760                 if (swigCPtr.Handle != global::System.IntPtr.Zero)
761                 {
762                     if (swigCMemOwn)
763                     {
764                         swigCMemOwn = false;
765                         NDalicPINVOKE.delete_View_Property(swigCPtr);
766                     }
767                     swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
768                 }
769
770                 disposed = true;
771             }
772
773             internal static readonly int TOOLTIP = NDalicManualPINVOKE.View_Property_TOOLTIP_get();
774             internal static readonly int STATE = NDalicManualPINVOKE.View_Property_STATE_get();
775             internal static readonly int SUB_STATE = NDalicManualPINVOKE.View_Property_SUB_STATE_get();
776             internal static readonly int LEFT_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_LEFT_FOCUSABLE_ACTOR_ID_get();
777             internal static readonly int RIGHT_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_RIGHT_FOCUSABLE_ACTOR_ID_get();
778             internal static readonly int UP_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_UP_FOCUSABLE_ACTOR_ID_get();
779             internal static readonly int DOWN_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_DOWN_FOCUSABLE_ACTOR_ID_get();
780
781             internal Property() : this(NDalicPINVOKE.new_View_Property(), true)
782             {
783                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
784             }
785
786             internal static readonly int STYLE_NAME = NDalicPINVOKE.View_Property_STYLE_NAME_get();
787             internal static readonly int BACKGROUND_COLOR = NDalicPINVOKE.View_Property_BACKGROUND_COLOR_get();
788             internal static readonly int BACKGROUND_IMAGE = NDalicPINVOKE.View_Property_BACKGROUND_IMAGE_get();
789             internal static readonly int KEY_INPUT_FOCUS = NDalicPINVOKE.View_Property_KEY_INPUT_FOCUS_get();
790             internal static readonly int BACKGROUND = NDalicPINVOKE.View_Property_BACKGROUND_get();
791             internal static readonly int SIBLING_ORDER = NDalicManualPINVOKE.Actor_Property_SIBLING_ORDER_get();
792             internal static readonly int OPACITY = NDalicManualPINVOKE.Actor_Property_OPACITY_get();
793             internal static readonly int SCREEN_POSITION = NDalicManualPINVOKE.Actor_Property_SCREEN_POSITION_get();
794             internal static readonly int POSITION_USES_ANCHOR_POINT = NDalicManualPINVOKE.Actor_Property_POSITION_USES_ANCHOR_POINT_get();
795             internal static readonly int PARENT_ORIGIN = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_get();
796             internal static readonly int PARENT_ORIGIN_X = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_X_get();
797             internal static readonly int PARENT_ORIGIN_Y = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_Y_get();
798             internal static readonly int PARENT_ORIGIN_Z = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_Z_get();
799             internal static readonly int ANCHOR_POINT = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_get();
800             internal static readonly int ANCHOR_POINT_X = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_X_get();
801             internal static readonly int ANCHOR_POINT_Y = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_Y_get();
802             internal static readonly int ANCHOR_POINT_Z = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_Z_get();
803             internal static readonly int SIZE = NDalicPINVOKE.Actor_Property_SIZE_get();
804             internal static readonly int SIZE_WIDTH = NDalicPINVOKE.Actor_Property_SIZE_WIDTH_get();
805             internal static readonly int SIZE_HEIGHT = NDalicPINVOKE.Actor_Property_SIZE_HEIGHT_get();
806             internal static readonly int SIZE_DEPTH = NDalicPINVOKE.Actor_Property_SIZE_DEPTH_get();
807             internal static readonly int POSITION = NDalicPINVOKE.Actor_Property_POSITION_get();
808             internal static readonly int POSITION_X = NDalicPINVOKE.Actor_Property_POSITION_X_get();
809             internal static readonly int POSITION_Y = NDalicPINVOKE.Actor_Property_POSITION_Y_get();
810             internal static readonly int POSITION_Z = NDalicPINVOKE.Actor_Property_POSITION_Z_get();
811             internal static readonly int WORLD_POSITION = NDalicPINVOKE.Actor_Property_WORLD_POSITION_get();
812             internal static readonly int WORLD_POSITION_X = NDalicPINVOKE.Actor_Property_WORLD_POSITION_X_get();
813             internal static readonly int WORLD_POSITION_Y = NDalicPINVOKE.Actor_Property_WORLD_POSITION_Y_get();
814             internal static readonly int WORLD_POSITION_Z = NDalicPINVOKE.Actor_Property_WORLD_POSITION_Z_get();
815             internal static readonly int ORIENTATION = NDalicPINVOKE.Actor_Property_ORIENTATION_get();
816             internal static readonly int WORLD_ORIENTATION = NDalicPINVOKE.Actor_Property_WORLD_ORIENTATION_get();
817             internal static readonly int SCALE = NDalicPINVOKE.Actor_Property_SCALE_get();
818             internal static readonly int SCALE_X = NDalicPINVOKE.Actor_Property_SCALE_X_get();
819             internal static readonly int SCALE_Y = NDalicPINVOKE.Actor_Property_SCALE_Y_get();
820             internal static readonly int SCALE_Z = NDalicPINVOKE.Actor_Property_SCALE_Z_get();
821             internal static readonly int WORLD_SCALE = NDalicPINVOKE.Actor_Property_WORLD_SCALE_get();
822             internal static readonly int VISIBLE = NDalicPINVOKE.Actor_Property_VISIBLE_get();
823             internal static readonly int COLOR = NDalicPINVOKE.Actor_Property_COLOR_get();
824             internal static readonly int COLOR_RED = NDalicPINVOKE.Actor_Property_COLOR_RED_get();
825             internal static readonly int COLOR_GREEN = NDalicPINVOKE.Actor_Property_COLOR_GREEN_get();
826             internal static readonly int COLOR_BLUE = NDalicPINVOKE.Actor_Property_COLOR_BLUE_get();
827             internal static readonly int COLOR_ALPHA = NDalicPINVOKE.Actor_Property_COLOR_ALPHA_get();
828             internal static readonly int WORLD_COLOR = NDalicPINVOKE.Actor_Property_WORLD_COLOR_get();
829             internal static readonly int WORLD_MATRIX = NDalicPINVOKE.Actor_Property_WORLD_MATRIX_get();
830             internal static readonly int NAME = NDalicPINVOKE.Actor_Property_NAME_get();
831             internal static readonly int SENSITIVE = NDalicPINVOKE.Actor_Property_SENSITIVE_get();
832             internal static readonly int LEAVE_REQUIRED = NDalicPINVOKE.Actor_Property_LEAVE_REQUIRED_get();
833             internal static readonly int INHERIT_ORIENTATION = NDalicPINVOKE.Actor_Property_INHERIT_ORIENTATION_get();
834             internal static readonly int INHERIT_SCALE = NDalicPINVOKE.Actor_Property_INHERIT_SCALE_get();
835             internal static readonly int COLOR_MODE = NDalicPINVOKE.Actor_Property_COLOR_MODE_get();
836             internal static readonly int POSITION_INHERITANCE = NDalicPINVOKE.Actor_Property_POSITION_INHERITANCE_get();
837             internal static readonly int DRAW_MODE = NDalicPINVOKE.Actor_Property_DRAW_MODE_get();
838             internal static readonly int SIZE_MODE_FACTOR = NDalicPINVOKE.Actor_Property_SIZE_MODE_FACTOR_get();
839             internal static readonly int WIDTH_RESIZE_POLICY = NDalicPINVOKE.Actor_Property_WIDTH_RESIZE_POLICY_get();
840             internal static readonly int HEIGHT_RESIZE_POLICY = NDalicPINVOKE.Actor_Property_HEIGHT_RESIZE_POLICY_get();
841             internal static readonly int SIZE_SCALE_POLICY = NDalicPINVOKE.Actor_Property_SIZE_SCALE_POLICY_get();
842             internal static readonly int WIDTH_FOR_HEIGHT = NDalicPINVOKE.Actor_Property_WIDTH_FOR_HEIGHT_get();
843             internal static readonly int HEIGHT_FOR_WIDTH = NDalicPINVOKE.Actor_Property_HEIGHT_FOR_WIDTH_get();
844             internal static readonly int PADDING = NDalicPINVOKE.Actor_Property_PADDING_get();
845             internal static readonly int MINIMUM_SIZE = NDalicPINVOKE.Actor_Property_MINIMUM_SIZE_get();
846             internal static readonly int MAXIMUM_SIZE = NDalicPINVOKE.Actor_Property_MAXIMUM_SIZE_get();
847             internal static readonly int INHERIT_POSITION = NDalicPINVOKE.Actor_Property_INHERIT_POSITION_get();
848             internal static readonly int CLIPPING_MODE = NDalicPINVOKE.Actor_Property_CLIPPING_MODE_get();
849         }
850
851
852         /// <summary>
853         /// Describes the direction to move the focus towards.
854         /// </summary>
855         public enum FocusDirection
856         {
857             Left,
858             Right,
859             Up,
860             Down,
861             PageUp,
862             PageDown
863         }
864
865         /// <summary>
866         /// Creates a new instance of a View.
867         /// </summary>
868         public View() : this(NDalicPINVOKE.View_New(), true)
869         {
870             PositionUsesAnchorPoint = false;
871             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
872
873         }
874         internal View(View uiControl) : this(NDalicPINVOKE.new_View__SWIG_1(View.getCPtr(uiControl)), true)
875         {
876             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
877         }
878
879         internal View Assign(View handle)
880         {
881             View ret = new View(NDalicPINVOKE.View_Assign(swigCPtr, View.getCPtr(handle)), false);
882             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
883             return ret;
884         }
885
886         /// <summary>
887         /// Downcasts a handle to View handle.<br>
888         /// If handle points to a View, the downcast produces valid handle.<br>
889         /// If not, the returned handle is left uninitialized.<br>
890         /// </summary>
891         /// <param name="handle">Handle to an object</param>
892         /// <returns>A handle to a View or an uninitialized handle</returns>
893         public new static View DownCast(BaseHandle handle)
894         {
895             View ret = new View(NDalicPINVOKE.View_DownCast(BaseHandle.getCPtr(handle)), true);
896             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
897             return ret;
898         }
899
900         /// <summary>
901         /// Downcasts a handle to class which inherit View handle.
902         /// </summary>
903         /// <typeparam name="T">Class which inherit View</typeparam>
904         /// <param name="view">View to an object</param>
905         /// <returns>A object which inherit View</returns>
906         public static T DownCast<T>(View view) where T : View
907         {
908             return (T)(ViewRegistry.GetViewFromActor(view));
909         }
910
911         private View ConvertIdToView(uint id)
912         {
913             View view = null;
914
915             if (Parent)
916             {
917                 view = Parent.FindChildById(id);
918             }
919
920             if (!view)
921             {
922                 view = Window.Instance.GetRootLayer().FindChildById(id);
923             }
924
925             return view;
926         }
927
928         internal void SetKeyInputFocus()
929         {
930             NDalicPINVOKE.View_SetKeyInputFocus(swigCPtr);
931             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
932         }
933
934         /// <summary>
935         /// Quries whether the view has focus.
936         /// </summary>
937         /// <returns>true if this view has focus</returns>
938         public bool HasFocus()
939         {
940             bool ret = NDalicPINVOKE.View_HasKeyInputFocus(swigCPtr);
941             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
942             return ret;
943         }
944
945         internal void ClearKeyInputFocus()
946         {
947             NDalicPINVOKE.View_ClearKeyInputFocus(swigCPtr);
948             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
949         }
950
951         internal PinchGestureDetector GetPinchGestureDetector()
952         {
953             PinchGestureDetector ret = new PinchGestureDetector(NDalicPINVOKE.View_GetPinchGestureDetector(swigCPtr), true);
954             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
955             return ret;
956         }
957
958         internal PanGestureDetector GetPanGestureDetector()
959         {
960             PanGestureDetector ret = new PanGestureDetector(NDalicPINVOKE.View_GetPanGestureDetector(swigCPtr), true);
961             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
962             return ret;
963         }
964
965         internal TapGestureDetector GetTapGestureDetector()
966         {
967             TapGestureDetector ret = new TapGestureDetector(NDalicPINVOKE.View_GetTapGestureDetector(swigCPtr), true);
968             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
969             return ret;
970         }
971
972         internal LongPressGestureDetector GetLongPressGestureDetector()
973         {
974             LongPressGestureDetector ret = new LongPressGestureDetector(NDalicPINVOKE.View_GetLongPressGestureDetector(swigCPtr), true);
975             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
976             return ret;
977         }
978
979         /// <summary>
980         /// Sets the name of the style to be applied to the view.
981         /// </summary>
982         /// <param name="styleName">A string matching a style described in a stylesheet</param>
983         public void SetStyleName(string styleName)
984         {
985             NDalicPINVOKE.View_SetStyleName(swigCPtr, styleName);
986             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
987         }
988
989         /// <summary>
990         /// Retrieves the name of the style to be applied to the view (if any).
991         /// </summary>
992         /// <returns>A string matching a style, or an empty string</returns>
993         public string GetStyleName()
994         {
995             string ret = NDalicPINVOKE.View_GetStyleName(swigCPtr);
996             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
997             return ret;
998         }
999
1000         internal void SetBackgroundColor(Vector4 color)
1001         {
1002             NDalicPINVOKE.View_SetBackgroundColor(swigCPtr, Vector4.getCPtr(color));
1003             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1004         }
1005
1006         internal Vector4 GetBackgroundColor()
1007         {
1008             Vector4 ret = new Vector4(NDalicPINVOKE.View_GetBackgroundColor(swigCPtr), true);
1009             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1010             return ret;
1011         }
1012
1013         internal void SetBackgroundImage(Image image)
1014         {
1015             NDalicPINVOKE.View_SetBackgroundImage(swigCPtr, Image.getCPtr(image));
1016             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1017         }
1018
1019         /// <summary>
1020         /// Clears the background.
1021         /// </summary>
1022         public void ClearBackground()
1023         {
1024             NDalicPINVOKE.View_ClearBackground(swigCPtr);
1025             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1026         }
1027
1028         internal ControlKeySignal KeyEventSignal()
1029         {
1030             ControlKeySignal ret = new ControlKeySignal(NDalicPINVOKE.View_KeyEventSignal(swigCPtr), false);
1031             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1032             return ret;
1033         }
1034
1035         internal KeyInputFocusSignal KeyInputFocusGainedSignal()
1036         {
1037             KeyInputFocusSignal ret = new KeyInputFocusSignal(NDalicPINVOKE.View_KeyInputFocusGainedSignal(swigCPtr), false);
1038             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1039             return ret;
1040         }
1041
1042         internal KeyInputFocusSignal KeyInputFocusLostSignal()
1043         {
1044             KeyInputFocusSignal ret = new KeyInputFocusSignal(NDalicPINVOKE.View_KeyInputFocusLostSignal(swigCPtr), false);
1045             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1046             return ret;
1047         }
1048
1049         internal View(ViewImpl implementation) : this(NDalicPINVOKE.new_View__SWIG_2(ViewImpl.getCPtr(implementation)), true)
1050         {
1051             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1052         }
1053
1054         internal enum PropertyRange
1055         {
1056             PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX,
1057             CONTROL_PROPERTY_START_INDEX = PROPERTY_START_INDEX,
1058             CONTROL_PROPERTY_END_INDEX = CONTROL_PROPERTY_START_INDEX + 1000
1059         }
1060
1061         /// <summary>
1062         /// styleName, type string.
1063         /// </summary>
1064         public string StyleName
1065         {
1066             get
1067             {
1068                 string temp;
1069                 GetProperty(View.Property.STYLE_NAME).Get(out temp);
1070                 return temp;
1071             }
1072             set
1073             {
1074                 SetProperty(View.Property.STYLE_NAME, new Tizen.NUI.PropertyValue(value));
1075             }
1076         }
1077
1078         /// <summary>
1079         /// mutually exclusive with BACKGROUND_IMAGE & BACKGROUND,  type Vector4.
1080         /// </summary>
1081         public Color BackgroundColor
1082         {
1083             get
1084             {
1085                 Color backgroundColor = new Color(0.0f, 0.0f, 0.0f, 0.0f);
1086
1087                 Tizen.NUI.PropertyMap background = Background;
1088                 int visualType = 0;
1089                 background.Find(Visual.Property.Type).Get(ref visualType);
1090                 if (visualType == (int)Visual.Type.Color)
1091                 {
1092                     background.Find(ColorVisualProperty.MixColor).Get(backgroundColor);
1093                 }
1094
1095                 return backgroundColor;
1096             }
1097             set
1098             {
1099                 SetProperty(View.Property.BACKGROUND, new Tizen.NUI.PropertyValue(value));
1100             }
1101         }
1102
1103         /// <summary>
1104         /// mutually exclusive with BACKGROUND_COLOR & BACKGROUND,  type Map.
1105         /// </summary>
1106         public string BackgroundImage
1107         {
1108             get
1109             {
1110                 string backgroundImage = "";
1111
1112                 Tizen.NUI.PropertyMap background = Background;
1113                 int visualType = 0;
1114                 background.Find(Visual.Property.Type).Get(ref visualType);
1115                 if (visualType == (int)Visual.Type.Image)
1116                 {
1117                     background.Find(ImageVisualProperty.URL).Get(out backgroundImage);
1118                 }
1119
1120                 return backgroundImage;
1121             }
1122             set
1123             {
1124                 SetProperty(View.Property.BACKGROUND, new Tizen.NUI.PropertyValue(value));
1125             }
1126         }
1127
1128         internal bool KeyInputFocus
1129         {
1130             get
1131             {
1132                 bool temp = false;
1133                 GetProperty(View.Property.KEY_INPUT_FOCUS).Get(ref temp);
1134                 return temp;
1135             }
1136             set
1137             {
1138                 SetProperty(View.Property.KEY_INPUT_FOCUS, new Tizen.NUI.PropertyValue(value));
1139             }
1140         }
1141
1142         /// <summary>
1143         /// mutually exclusive with BACKGROUND_COLOR & BACKGROUND_IMAGE, type Map or string for URL.
1144         /// </summary>
1145         public Tizen.NUI.PropertyMap Background
1146         {
1147             get
1148             {
1149                 Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
1150                 GetProperty(View.Property.BACKGROUND).Get(temp);
1151                 return temp;
1152             }
1153             set
1154             {
1155                 SetProperty(View.Property.BACKGROUND, new Tizen.NUI.PropertyValue(value));
1156             }
1157         }
1158
1159         /// <summary>
1160         /// The current state of the view.
1161         /// </summary>
1162         public States State
1163         {
1164             get
1165             {
1166                 int temp = 0;
1167                 if (GetProperty(View.Property.STATE).Get(ref temp) == false)
1168                 {
1169 #if DEBUG_ON
1170                     Tizen.Log.Error("NUI", "State get error!");
1171 #endif
1172                 }
1173                 switch (temp)
1174                 {
1175                     case 0:
1176                     {
1177                         return States.Normal;
1178                     }
1179                     case 1:
1180                     {
1181                         return States.Focused;
1182                     }
1183                     case 2:
1184                     {
1185                         return States.Disabled;
1186                     }
1187                     default:
1188                     {
1189                         return States.Normal;
1190                     }
1191                 }
1192             }
1193             set
1194             {
1195                 SetProperty(View.Property.STATE, new Tizen.NUI.PropertyValue((int)value));
1196             }
1197         }
1198
1199         /// <summary>
1200         /// The current sub state of the view.
1201         /// </summary>
1202         public States SubState
1203         {
1204             get
1205             {
1206                 string temp;
1207                 if (GetProperty(View.Property.SUB_STATE).Get(out temp) == false)
1208                 {
1209 #if DEBUG_ON
1210                     Tizen.Log.Error("NUI", "subState get error!");
1211 #endif
1212                 }
1213                 switch (temp)
1214                 {
1215                     case "NORMAL":
1216                         return States.Normal;
1217                     case "FOCUSED":
1218                         return States.Focused;
1219                     case "DISABLED":
1220                         return States.Disabled;
1221                     default:
1222                         return States.Normal;
1223                 }
1224             }
1225             set
1226             {
1227                 string valueToString = "";
1228                 switch (value)
1229                 {
1230                     case States.Normal:
1231                     {
1232                         valueToString = "NORMAL";
1233                         break;
1234                     }
1235                     case States.Focused:
1236                     {
1237                         valueToString = "FOCUSED";
1238                         break;
1239                     }
1240                     case States.Disabled:
1241                     {
1242                         valueToString = "DISABLED";
1243                         break;
1244                     }
1245                     default:
1246                     {
1247                         valueToString = "NORMAL";
1248                         break;
1249                     }
1250                 }
1251                 SetProperty(View.Property.SUB_STATE, new Tizen.NUI.PropertyValue(valueToString));
1252             }
1253         }
1254
1255         /// <summary>
1256         /// Displays a tooltip
1257         /// </summary>
1258         public Tizen.NUI.PropertyMap Tooltip
1259         {
1260             get
1261             {
1262                 Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
1263                 GetProperty(View.Property.TOOLTIP).Get(temp);
1264                 return temp;
1265             }
1266             set
1267             {
1268                 SetProperty(View.Property.TOOLTIP, new Tizen.NUI.PropertyValue(value));
1269             }
1270         }
1271
1272         /// <summary>
1273         /// Displays a tooltip as Text
1274         /// </summary>
1275         public string TooltipText
1276         {
1277             set
1278             {
1279                 SetProperty(View.Property.TOOLTIP, new Tizen.NUI.PropertyValue(value));
1280             }
1281         }
1282
1283         private int LeftFocusableViewId
1284         {
1285             get
1286             {
1287                 int temp = 0;
1288                 GetProperty(View.Property.LEFT_FOCUSABLE_VIEW_ID).Get(ref temp);
1289                 return temp;
1290             }
1291             set
1292             {
1293                 SetProperty(View.Property.LEFT_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
1294             }
1295         }
1296
1297         private int RightFocusableViewId
1298         {
1299             get
1300             {
1301                 int temp = 0;
1302                 GetProperty(View.Property.RIGHT_FOCUSABLE_VIEW_ID).Get(ref temp);
1303                 return temp;
1304             }
1305             set
1306             {
1307                 SetProperty(View.Property.RIGHT_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
1308             }
1309         }
1310
1311         private int UpFocusableViewId
1312         {
1313             get
1314             {
1315                 int temp = 0;
1316                 GetProperty(View.Property.UP_FOCUSABLE_VIEW_ID).Get(ref temp);
1317                 return temp;
1318             }
1319             set
1320             {
1321                 SetProperty(View.Property.UP_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
1322             }
1323         }
1324
1325         private int DownFocusableViewId
1326         {
1327             get
1328             {
1329                 int temp = 0;
1330                 GetProperty(View.Property.DOWN_FOCUSABLE_VIEW_ID).Get(ref temp);
1331                 return temp;
1332             }
1333             set
1334             {
1335                 SetProperty(View.Property.DOWN_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
1336             }
1337         }
1338
1339         /// <summary>
1340         /// Child Property of FlexContainer.<br>
1341         /// The proportion of the free space in the container the flex item will receive.<br>
1342         /// If all items in the container set this property, their sizes will be proportional to the specified flex factor.<br>
1343         /// </summary> 
1344         public float Flex
1345         {
1346             get
1347             {
1348                 float temp = 0.0f;
1349                 GetProperty(FlexContainer.ChildProperty.FLEX).Get(ref temp);
1350                 return temp;
1351             }
1352             set
1353             {
1354                 SetProperty(FlexContainer.ChildProperty.FLEX, new Tizen.NUI.PropertyValue(value));
1355             }
1356         }
1357
1358         /// <summary>
1359         /// Child Property of FlexContainer.<br>
1360         /// The alignment of the flex item along the cross axis, which, if set, overides the default alignment for all items in the container.<br>
1361         /// </summary> 
1362         public int AlignSelf
1363         {
1364             get
1365             {
1366                 int temp = 0;
1367                 GetProperty(FlexContainer.ChildProperty.ALIGN_SELF).Get(ref temp);
1368                 return temp;
1369             }
1370             set
1371             {
1372                 SetProperty(FlexContainer.ChildProperty.ALIGN_SELF, new Tizen.NUI.PropertyValue(value));
1373             }
1374         }
1375
1376         /// <summary>
1377         /// Child Property of FlexContainer.<br>
1378         /// The space around the flex item.<br>
1379         /// </summary> 
1380         public Vector4 FlexMargin
1381         {
1382             get
1383             {
1384                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
1385                 GetProperty(FlexContainer.ChildProperty.FLEX_MARGIN).Get(temp);
1386                 return temp;
1387             }
1388             set
1389             {
1390                 SetProperty(FlexContainer.ChildProperty.FLEX_MARGIN, new Tizen.NUI.PropertyValue(value));
1391             }
1392         }
1393
1394         /// <summary>
1395         /// The top-left cell this child occupies, if not set, the first available cell is used
1396         /// </summary>
1397         public Vector2 CellIndex
1398         {
1399             get
1400             {
1401                 Vector2 temp = new Vector2(0.0f, 0.0f);
1402                 GetProperty(TableView.ChildProperty.CELL_INDEX).Get(temp);
1403                 return temp;
1404             }
1405             set
1406             {
1407                 SetProperty(TableView.ChildProperty.CELL_INDEX, new Tizen.NUI.PropertyValue(value));
1408             }
1409         }
1410
1411         /// <summary>
1412         /// The number of rows this child occupies, if not set, default value is 1
1413         /// </summary>
1414         public float RowSpan
1415         {
1416             get
1417             {
1418                 float temp = 0.0f;
1419                 GetProperty(TableView.ChildProperty.ROW_SPAN).Get(ref temp);
1420                 return temp;
1421             }
1422             set
1423             {
1424                 SetProperty(TableView.ChildProperty.ROW_SPAN, new Tizen.NUI.PropertyValue(value));
1425             }
1426         }
1427
1428         /// <summary>
1429         /// The number of columns this child occupies, if not set, default value is 1
1430         /// </summary>
1431         public float ColumnSpan
1432         {
1433             get
1434             {
1435                 float temp = 0.0f;
1436                 GetProperty(TableView.ChildProperty.COLUMN_SPAN).Get(ref temp);
1437                 return temp;
1438             }
1439             set
1440             {
1441                 SetProperty(TableView.ChildProperty.COLUMN_SPAN, new Tizen.NUI.PropertyValue(value));
1442             }
1443         }
1444
1445         /// <summary>
1446         /// The horizontal alignment of this child inside the cells, if not set, default value is 'left'
1447         /// </summary>
1448         public Tizen.NUI.HorizontalAlignmentType CellHorizontalAlignment
1449         {
1450             get
1451             {
1452                 string temp;
1453                 if (GetProperty(TableView.ChildProperty.CELL_HORIZONTAL_ALIGNMENT).Get(out temp) == false)
1454                 {
1455 #if DEBUG_ON
1456                     Tizen.Log.Error("NUI", "CellHorizontalAlignment get error!");
1457 #endif
1458                 }
1459
1460                 switch (temp)
1461                 {
1462                     case "left":
1463                         return Tizen.NUI.HorizontalAlignmentType.Left;
1464                     case "center":
1465                         return Tizen.NUI.HorizontalAlignmentType.Center;
1466                     case "right":
1467                         return Tizen.NUI.HorizontalAlignmentType.Right;
1468                     default:
1469                         return Tizen.NUI.HorizontalAlignmentType.Left;
1470                 }
1471             }
1472             set
1473             {
1474                 string valueToString = "";
1475                 switch (value)
1476                 {
1477                     case Tizen.NUI.HorizontalAlignmentType.Left:
1478                     {
1479                         valueToString = "left";
1480                         break;
1481                     }
1482                     case Tizen.NUI.HorizontalAlignmentType.Center:
1483                     {
1484                         valueToString = "center";
1485                         break;
1486                     }
1487                     case Tizen.NUI.HorizontalAlignmentType.Right:
1488                     {
1489                         valueToString = "right";
1490                         break;
1491                     }
1492                     default:
1493                     {
1494                         valueToString = "left";
1495                         break;
1496                     }
1497                 }
1498                 SetProperty(TableView.ChildProperty.CELL_HORIZONTAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
1499             }
1500         }
1501
1502         /// <summary>
1503         /// The vertical alignment of this child inside the cells, if not set, default value is 'top'
1504         /// </summary>
1505         public Tizen.NUI.VerticalAlignmentType CellVerticalAlignment
1506         {
1507             get
1508             {
1509                 string temp;
1510                 GetProperty(TableView.ChildProperty.CELL_VERTICAL_ALIGNMENT).Get(out temp);
1511                 {
1512 #if DEBUG_ON
1513                     Tizen.Log.Error("NUI", "CellVerticalAlignment get error!");
1514 #endif
1515                 }
1516
1517                 switch (temp)
1518                 {
1519                     case "top":
1520                         return Tizen.NUI.VerticalAlignmentType.Top;
1521                     case "center":
1522                         return Tizen.NUI.VerticalAlignmentType.Center;
1523                     case "bottom":
1524                         return Tizen.NUI.VerticalAlignmentType.Bottom;
1525                     default:
1526                         return Tizen.NUI.VerticalAlignmentType.Top;
1527                 }
1528             }
1529             set
1530             {
1531                 string valueToString = "";
1532                 switch (value)
1533                 {
1534                     case Tizen.NUI.VerticalAlignmentType.Top:
1535                     {
1536                         valueToString = "top";
1537                         break;
1538                     }
1539                     case Tizen.NUI.VerticalAlignmentType.Center:
1540                     {
1541                         valueToString = "center";
1542                         break;
1543                     }
1544                     case Tizen.NUI.VerticalAlignmentType.Bottom:
1545                     {
1546                         valueToString = "bottom";
1547                         break;
1548                     }
1549                     default:
1550                     {
1551                         valueToString = "top";
1552                         break;
1553                     }
1554                 }
1555                 SetProperty(TableView.ChildProperty.CELL_VERTICAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
1556             }
1557         }
1558
1559         /// <summary>
1560         /// The left focusable view.<br>
1561         /// This will return NULL if not set.<br>
1562         /// This will also return NULL if the specified left focusable view is not on Window.<br>
1563         /// </summary>
1564         public View LeftFocusableView
1565         {
1566             // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
1567             get
1568             {
1569                 if (LeftFocusableViewId >= 0)
1570                 {
1571                     return ConvertIdToView((uint)LeftFocusableViewId);
1572                 }
1573                 return null;
1574             }
1575             set
1576             {
1577                 LeftFocusableViewId = (int)value.GetId();
1578             }
1579         }
1580
1581         /// <summary>
1582         /// The right focusable view.<br>
1583         /// This will return NULL if not set.<br>
1584         /// This will also return NULL if the specified right focusable view is not on Window.<br>
1585         /// </summary>
1586         public View RightFocusableView
1587         {
1588             // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
1589             get
1590             {
1591                 if (RightFocusableViewId >= 0)
1592                 {
1593                     return ConvertIdToView((uint)RightFocusableViewId);
1594                 }
1595                 return null;
1596             }
1597             set
1598             {
1599                 RightFocusableViewId = (int)value.GetId();
1600             }
1601         }
1602
1603         /// <summary>
1604         /// The up focusable view.<br>
1605         /// This will return NULL if not set.<br>
1606         /// This will also return NULL if the specified up focusable view is not on Window.<br>
1607         /// </summary>
1608         public View UpFocusableView
1609         {
1610             // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
1611             get
1612             {
1613                 if (UpFocusableViewId >= 0)
1614                 {
1615                     return ConvertIdToView((uint)UpFocusableViewId);
1616                 }
1617                 return null;
1618             }
1619             set
1620             {
1621                 UpFocusableViewId = (int)value.GetId();
1622             }
1623         }
1624
1625         /// <summary>
1626         /// The down focusable view.<br>
1627         /// This will return NULL if not set.<br>
1628         /// This will also return NULL if the specified down focusable view is not on Window.<br>
1629         /// </summary>
1630         public View DownFocusableView
1631         {
1632             // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
1633             get
1634             {
1635                 if (DownFocusableViewId >= 0)
1636                 {
1637                     return ConvertIdToView((uint)DownFocusableViewId);
1638                 }
1639                 return null;
1640             }
1641             set
1642             {
1643                 DownFocusableViewId = (int)value.GetId();
1644             }
1645         }
1646
1647         /// <summary>
1648         /// whether the view should be focusable by keyboard navigation.
1649         /// </summary>
1650         public bool Focusable
1651         {
1652             set
1653             {
1654                 SetKeyboardFocusable(value);
1655             }
1656             get
1657             {
1658                 return IsKeyboardFocusable();
1659             }
1660         }
1661
1662         /// <summary>
1663         /// Enumeration for describing the states of view.
1664         /// </summary>
1665         public enum States
1666         {
1667             /// <summary>
1668             /// Normal state
1669             /// </summary>
1670             Normal,
1671             /// <summary>
1672             /// Focused state
1673             /// </summary>
1674             Focused,
1675             /// <summary>
1676             /// Disabled state
1677             /// </summary>
1678             Disabled
1679         }
1680
1681         /// <summary>
1682         ///  Retrieves the position of the View.<br>
1683         ///  The coordinates are relative to the View's parent.<br>
1684         /// </summary>
1685         public Position CurrentPosition
1686         {
1687             get
1688             {
1689                 return GetCurrentPosition();
1690             }
1691         }
1692
1693         /// <summary>
1694         /// Sets the size of an view for width and height.<br>
1695         /// Geometry can be scaled to fit within this area.<br>
1696         /// This does not interfere with the views scale factor.<br>
1697         /// The views default depth is the minimum of width & height.<br>
1698         /// </summary>
1699         public Size2D Size2D
1700         {
1701             get
1702             {
1703                 Size temp = new Size(0.0f, 0.0f, 0.0f);
1704                 GetProperty(View.Property.SIZE).Get(temp);
1705                 return new Size2D(temp);
1706             }
1707             set
1708             {
1709                 SetProperty(View.Property.SIZE, new Tizen.NUI.PropertyValue(new Size(value)));
1710             }
1711         }
1712
1713         /// <summary>
1714         ///  Retrieves the size of the View.<br>
1715         ///  The coordinates are relative to the View's parent.<br>
1716         /// </summary>
1717         public Size CurrentSize
1718         {
1719             get
1720             {
1721                 return GetCurrentSize();
1722             }
1723         }
1724
1725         /// <summary>
1726         /// Retrieves the view's parent.<br>
1727         /// </summary>
1728         public View Parent
1729         {
1730             get
1731             {
1732                 return GetParent();
1733             }
1734         }
1735
1736         public bool Visibility
1737         {
1738             get
1739             {
1740                 return IsVisible();
1741             }
1742         }
1743
1744         /// <summary>
1745         /// Retrieves and sets the view's opacity.<br>
1746         /// </summary>
1747         public float Opacity
1748         {
1749             get
1750             {
1751                 float temp = 0.0f;
1752                 GetProperty(View.Property.OPACITY).Get(ref temp);
1753                 return temp;
1754             }
1755             set
1756             {
1757                 SetProperty(View.Property.OPACITY, new Tizen.NUI.PropertyValue(value));
1758             }
1759         }
1760
1761         /// <summary>
1762         /// Sets the position of the View for X and Y.<br>
1763         /// By default, sets the position vector between the parent origin and anchor point(default).<br>
1764         /// If Position inheritance if disabled, sets the world position.<br>
1765         /// </summary>
1766         public Position2D Position2D
1767         {
1768             get
1769             {
1770                 Position temp = new Position(0.0f, 0.0f, 0.0f);
1771                 GetProperty(View.Property.POSITION).Get(temp);
1772                 return new Position2D(temp);
1773             }
1774             set
1775             {
1776                 SetProperty(View.Property.POSITION, new Tizen.NUI.PropertyValue(new Position(value)));
1777             }
1778         }
1779
1780         /// <summary>
1781         /// Retrieves screen postion of view's.<br>
1782         /// </summary>
1783         public Vector2 ScreenPosition
1784         {
1785             get
1786             {
1787                 Vector2 temp = new Vector2(0.0f, 0.0f);
1788                 GetProperty(View.Property.SCREEN_POSITION).Get(temp);
1789                 return temp;
1790             }
1791         }
1792
1793         /// <summary>
1794         /// Determines whether the anchor point should be used to determine the position of the view.
1795         /// This is true by default.
1796         /// </summary>
1797         /// <remarks>If false, then the top-left of the view is used for the position.
1798         /// Setting this to false will allow scaling or rotation around the anchor-point without affecting the view's position.
1799         /// </remarks>
1800         public bool PositionUsesAnchorPoint
1801         {
1802             get
1803             {
1804                 bool temp = false;
1805                 GetProperty(View.Property.POSITION_USES_ANCHOR_POINT).Get(ref temp);
1806                 return temp;
1807             }
1808             set
1809             {
1810                 SetProperty(View.Property.POSITION_USES_ANCHOR_POINT, new Tizen.NUI.PropertyValue(value));
1811             }
1812         }
1813
1814         public bool StateFocusEnable
1815         {
1816             get
1817             {
1818                 return IsKeyboardFocusable();
1819             }
1820             set
1821             {
1822                 SetKeyboardFocusable(value);
1823             }
1824         }
1825
1826         /// <summary>
1827         /// Queries whether the view is connected to the Stage.<br>
1828         /// When an view is connected, it will be directly or indirectly parented to the root View.<br>
1829         /// </summary>
1830         public bool IsOnWindow
1831         {
1832             get
1833             {
1834                 return OnWindow();
1835             }
1836         }
1837
1838         /// <summary>
1839         /// Gets depth in the hierarchy for the view.
1840         /// </summary>
1841         public int HierarchyDepth
1842         {
1843             get
1844             {
1845                 return GetHierarchyDepth();
1846             }
1847         }
1848
1849         /// <summary>
1850         /// Sets the sibling order of the view so depth position can be defined within the same parent.
1851         /// </summary>
1852         /// <remarks>
1853         /// Note The initial value is 0.
1854         /// Raise, Lower, RaiseToTop, LowerToBottom, RaiseAbove and LowerBelow will override the sibling order.
1855         /// The values set by this Property will likely change.
1856         /// </remarks>
1857         public int SiblingOrder
1858         {
1859             get
1860             {
1861                 int temp = 0;
1862                 GetProperty(View.Property.SIBLING_ORDER).Get(ref temp);
1863                 return temp;
1864             }
1865             set
1866             {
1867                 SetProperty(View.Property.SIBLING_ORDER, new Tizen.NUI.PropertyValue(value));
1868             }
1869         }
1870
1871         /// <summary>
1872         /// Gets the natural size of the view.<br>
1873         /// </summary>
1874         /// <remarks>
1875         /// Readonly.
1876         /// </remarks>
1877         public Vector3 NaturalSize
1878         {
1879             get
1880             {
1881                 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetNaturalSize(swigCPtr), true);
1882                 if (NDalicPINVOKE.SWIGPendingException.Pending)
1883                     throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1884                 return ret;
1885             }
1886         }
1887
1888         /// <summary>
1889         /// Shows the View.
1890         /// </summary>
1891         /// <remarks>
1892         /// This is an asynchronous method.
1893         /// </remarks>
1894         public void Show()
1895         {
1896             SetVisible(true);
1897         }
1898
1899         /// <summary>
1900         /// Hides the View.
1901         /// </summary>
1902         /// <remarks>
1903         /// This is an asynchronous method.
1904         /// If an view is hidden, then the view and its children will not be rendered.
1905         /// This is regardless of the individual visibility of the children i.e.an view will only be rendered if all of its parents are shown.
1906         /// </remarks>
1907         public void Hide()
1908         {
1909             SetVisible(false);
1910         }
1911
1912         internal void Raise()
1913         {
1914             NDalicPINVOKE.Raise(swigCPtr);
1915             if (NDalicPINVOKE.SWIGPendingException.Pending)
1916                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1917         }
1918
1919         internal void Lower()
1920         {
1921             NDalicPINVOKE.Lower(swigCPtr);
1922             if (NDalicPINVOKE.SWIGPendingException.Pending)
1923                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1924         }
1925
1926         /// <summary>
1927         /// Raise view above all other views.
1928         /// </summary>
1929         /// <remarks>
1930         /// Sibling order of views within the parent will be updated automatically.
1931         /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
1932         /// </remarks>
1933         public void RaiseToTop()
1934         {
1935             NDalicPINVOKE.RaiseToTop(swigCPtr);
1936             if (NDalicPINVOKE.SWIGPendingException.Pending)
1937                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1938         }
1939
1940         /// <summary>
1941         /// Lower view to the bottom of all views.
1942         /// </summary>
1943         /// <remarks>
1944         /// Sibling order of views within the parent will be updated automatically.
1945         /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
1946         /// </remarks>
1947         public void LowerToBottom()
1948         {
1949             NDalicPINVOKE.LowerToBottom(swigCPtr);
1950             if (NDalicPINVOKE.SWIGPendingException.Pending)
1951                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1952         }
1953
1954         /// <summary>
1955         /// Raise the view to above the target view.
1956         /// </summary>
1957         /// <remarks>Sibling order of views within the parent will be updated automatically.
1958         /// Views on the level above the target view will still be shown above this view.
1959         /// Raising this view above views with the same sibling order as each other will raise this view above them.
1960         /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
1961         /// </remarks>
1962         /// <param name="target">Will be raised above this view</param>
1963         internal void RaiseAbove(View target)
1964         {
1965             NDalicPINVOKE.RaiseAbove(swigCPtr, View.getCPtr(target));
1966             if (NDalicPINVOKE.SWIGPendingException.Pending)
1967                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1968         }
1969
1970         /// <summary>
1971         /// Lower the view to below the target view.
1972         /// </summary>
1973         /// <remarks>Sibling order of views within the parent will be updated automatically.
1974         /// Lowering this view below views with the same sibling order as each other will lower this view above them.
1975         /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
1976         /// </remarks>
1977         /// <param name="target">Will be lowered below this view</param>
1978         internal void LowerBelow(View target)
1979         {
1980             NDalicPINVOKE.RaiseAbove(swigCPtr, View.getCPtr(target));
1981             if (NDalicPINVOKE.SWIGPendingException.Pending)
1982                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1983         }
1984
1985         internal string GetName()
1986         {
1987             string ret = NDalicPINVOKE.Actor_GetName(swigCPtr);
1988             if (NDalicPINVOKE.SWIGPendingException.Pending)
1989                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1990             return ret;
1991         }
1992
1993         internal void SetName(string name)
1994         {
1995             NDalicPINVOKE.Actor_SetName(swigCPtr, name);
1996             if (NDalicPINVOKE.SWIGPendingException.Pending)
1997                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1998         }
1999
2000         internal uint GetId()
2001         {
2002             uint ret = NDalicPINVOKE.Actor_GetId(swigCPtr);
2003             if (NDalicPINVOKE.SWIGPendingException.Pending)
2004                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2005             return ret;
2006         }
2007
2008         internal bool IsRoot()
2009         {
2010             bool ret = NDalicPINVOKE.Actor_IsRoot(swigCPtr);
2011             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2012             return ret;
2013         }
2014
2015         internal bool OnWindow()
2016         {
2017             bool ret = NDalicPINVOKE.Actor_OnStage(swigCPtr);
2018             if (NDalicPINVOKE.SWIGPendingException.Pending)
2019                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2020             return ret;
2021         }
2022
2023         internal bool IsLayer()
2024         {
2025             bool ret = NDalicPINVOKE.Actor_IsLayer(swigCPtr);
2026             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2027             return ret;
2028         }
2029
2030         internal Layer GetLayer()
2031         {
2032             Layer ret = new Layer(NDalicPINVOKE.Actor_GetLayer(swigCPtr), true);
2033             if (NDalicPINVOKE.SWIGPendingException.Pending)
2034                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2035             return ret;
2036         }
2037
2038         /// <summary>
2039         /// Adds a child view to this View.
2040         /// </summary>
2041         /// <pre>This View(the parent) has been initialized. The child view has been initialized. The child view is not the same as the parent view.</pre>
2042         /// <post>The child will be referenced by its parent. This means that the child will be kept alive, even if the handle passed into this method is reset or destroyed.</post>
2043         /// <remarks>If the child already has a parent, it will be removed from old parent and reparented to this view. This may change child's position, color, scale etc as it now inherits them from this view.</remarks>
2044         /// <param name="child">The child</param>
2045         public void Add(View child)
2046         {
2047             NDalicPINVOKE.Actor_Add(swigCPtr, View.getCPtr(child));
2048             if (NDalicPINVOKE.SWIGPendingException.Pending)
2049                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2050         }
2051
2052         /// <summary>
2053         /// Removes a child View from this View. If the view was not a child of this view, this is a no-op.
2054         /// </summary>
2055         /// <pre>This View(the parent) has been initialized. The child view is not the same as the parent view.</pre>
2056         /// <param name="child">The child</param>
2057         public void Remove(View child)
2058         {
2059             NDalicPINVOKE.Actor_Remove(swigCPtr, View.getCPtr(child));
2060             if (NDalicPINVOKE.SWIGPendingException.Pending)
2061                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2062         }
2063
2064         internal void Unparent()
2065         {
2066             NDalicPINVOKE.Actor_Unparent(swigCPtr);
2067             if (NDalicPINVOKE.SWIGPendingException.Pending)
2068                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2069         }
2070
2071         /// <summary>
2072         /// Retrieves the number of children held by the view.
2073         /// </summary>
2074         /// <pre>The View has been initialized.</pre>
2075         /// <returns>The number of children</returns>
2076         public uint GetChildCount()
2077         {
2078             uint ret = NDalicPINVOKE.Actor_GetChildCount(swigCPtr);
2079             if (NDalicPINVOKE.SWIGPendingException.Pending)
2080                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2081             return ret;
2082         }
2083
2084         /// <summary>
2085         /// Retrieves child view by index.
2086         /// </summary>
2087         /// <pre>The View has been initialized.</pre>
2088         /// <param name="index">The index of the child to retrieve</param>
2089         /// <returns>The view for the given index or empty handle if children not initialized</returns>
2090         public View GetChildAt(uint index)
2091         {
2092             View ret = new View(NDalicPINVOKE.Actor_GetChildAt(swigCPtr, index), true);
2093             if (NDalicPINVOKE.SWIGPendingException.Pending)
2094                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2095             return ret;
2096         }
2097
2098         /// <summary>
2099         /// Search through this view's hierarchy for an view with the given name.
2100         /// The view itself is also considered in the search.
2101         /// </summary>
2102         /// <pre>The View has been initialized.</pre>
2103         /// <param name="viewName">The name of the view to find</param>
2104         /// <returns>A handle to the view if found, or an empty handle if not</returns>
2105         public View FindChildByName(string viewName)
2106         {
2107             View ret = new View(NDalicPINVOKE.Actor_FindChildByName(swigCPtr, viewName), true);
2108             if (NDalicPINVOKE.SWIGPendingException.Pending)
2109                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2110             return ret;
2111         }
2112
2113         internal View FindChildById(uint id)
2114         {
2115             View ret = new View(NDalicPINVOKE.Actor_FindChildById(swigCPtr, id), true);
2116             if (NDalicPINVOKE.SWIGPendingException.Pending)
2117                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2118             return ret;
2119         }
2120
2121         internal View GetParent()
2122         {
2123             View ret = new View(NDalicPINVOKE.Actor_GetParent(swigCPtr), true);
2124             if (NDalicPINVOKE.SWIGPendingException.Pending)
2125                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2126             return ret;
2127         }
2128
2129         internal void SetParentOrigin(Vector3 origin)
2130         {
2131             NDalicPINVOKE.Actor_SetParentOrigin(swigCPtr, Vector3.getCPtr(origin));
2132             if (NDalicPINVOKE.SWIGPendingException.Pending)
2133                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2134         }
2135
2136         internal Vector3 GetCurrentParentOrigin()
2137         {
2138             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentParentOrigin(swigCPtr), true);
2139             if (NDalicPINVOKE.SWIGPendingException.Pending)
2140                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2141             return ret;
2142         }
2143
2144         internal void SetAnchorPoint(Vector3 anchorPoint)
2145         {
2146             NDalicPINVOKE.Actor_SetAnchorPoint(swigCPtr, Vector3.getCPtr(anchorPoint));
2147             if (NDalicPINVOKE.SWIGPendingException.Pending)
2148                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2149         }
2150
2151         internal Vector3 GetCurrentAnchorPoint()
2152         {
2153             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentAnchorPoint(swigCPtr), true);
2154             if (NDalicPINVOKE.SWIGPendingException.Pending)
2155                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2156             return ret;
2157         }
2158
2159         internal void SetSize(float width, float height)
2160         {
2161             NDalicPINVOKE.Actor_SetSize__SWIG_0(swigCPtr, width, height);
2162             if (NDalicPINVOKE.SWIGPendingException.Pending)
2163                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2164         }
2165
2166         internal void SetSize(float width, float height, float depth)
2167         {
2168             NDalicPINVOKE.Actor_SetSize__SWIG_1(swigCPtr, width, height, depth);
2169             if (NDalicPINVOKE.SWIGPendingException.Pending)
2170                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2171         }
2172
2173         internal void SetSize(Vector2 size)
2174         {
2175             NDalicPINVOKE.Actor_SetSize__SWIG_2(swigCPtr, Vector2.getCPtr(size));
2176             if (NDalicPINVOKE.SWIGPendingException.Pending)
2177                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2178         }
2179
2180         internal void SetSize(Vector3 size)
2181         {
2182             NDalicPINVOKE.Actor_SetSize__SWIG_3(swigCPtr, Vector3.getCPtr(size));
2183             if (NDalicPINVOKE.SWIGPendingException.Pending)
2184                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2185         }
2186
2187         internal Vector3 GetTargetSize()
2188         {
2189             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetTargetSize(swigCPtr), true);
2190             if (NDalicPINVOKE.SWIGPendingException.Pending)
2191                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2192             return ret;
2193         }
2194
2195         internal Size GetCurrentSize()
2196         {
2197             Size ret = new Size(NDalicPINVOKE.Actor_GetCurrentSize(swigCPtr), true);
2198             if (NDalicPINVOKE.SWIGPendingException.Pending)
2199                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2200             return ret;
2201         }
2202
2203         internal Vector3 GetNaturalSize()
2204         {
2205             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetNaturalSize(swigCPtr), true);
2206             if (NDalicPINVOKE.SWIGPendingException.Pending)
2207                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2208             return ret;
2209         }
2210
2211         internal void SetPosition(float x, float y)
2212         {
2213             NDalicPINVOKE.Actor_SetPosition__SWIG_0(swigCPtr, x, y);
2214             if (NDalicPINVOKE.SWIGPendingException.Pending)
2215                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2216         }
2217
2218         internal void SetPosition(float x, float y, float z)
2219         {
2220             NDalicPINVOKE.Actor_SetPosition__SWIG_1(swigCPtr, x, y, z);
2221             if (NDalicPINVOKE.SWIGPendingException.Pending)
2222                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2223         }
2224
2225         internal void SetPosition(Vector3 position)
2226         {
2227             NDalicPINVOKE.Actor_SetPosition__SWIG_2(swigCPtr, Vector3.getCPtr(position));
2228             if (NDalicPINVOKE.SWIGPendingException.Pending)
2229                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2230         }
2231
2232         internal void SetX(float x)
2233         {
2234             NDalicPINVOKE.Actor_SetX(swigCPtr, x);
2235             if (NDalicPINVOKE.SWIGPendingException.Pending)
2236                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2237         }
2238
2239         internal void SetY(float y)
2240         {
2241             NDalicPINVOKE.Actor_SetY(swigCPtr, y);
2242             if (NDalicPINVOKE.SWIGPendingException.Pending)
2243                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2244         }
2245
2246         internal void SetZ(float z)
2247         {
2248             NDalicPINVOKE.Actor_SetZ(swigCPtr, z);
2249             if (NDalicPINVOKE.SWIGPendingException.Pending)
2250                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2251         }
2252
2253         internal void TranslateBy(Vector3 distance)
2254         {
2255             NDalicPINVOKE.Actor_TranslateBy(swigCPtr, Vector3.getCPtr(distance));
2256             if (NDalicPINVOKE.SWIGPendingException.Pending)
2257                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2258         }
2259
2260         internal Position GetCurrentPosition()
2261         {
2262             Position ret = new Position(NDalicPINVOKE.Actor_GetCurrentPosition(swigCPtr), true);
2263             if (NDalicPINVOKE.SWIGPendingException.Pending)
2264                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2265             return ret;
2266         }
2267
2268         internal Vector3 GetCurrentWorldPosition()
2269         {
2270             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentWorldPosition(swigCPtr), true);
2271             if (NDalicPINVOKE.SWIGPendingException.Pending)
2272                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2273             return ret;
2274         }
2275
2276         internal void SetInheritPosition(bool inherit)
2277         {
2278             NDalicPINVOKE.Actor_SetInheritPosition(swigCPtr, inherit);
2279             if (NDalicPINVOKE.SWIGPendingException.Pending)
2280                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2281         }
2282
2283         internal bool IsPositionInherited()
2284         {
2285             bool ret = NDalicPINVOKE.Actor_IsPositionInherited(swigCPtr);
2286             if (NDalicPINVOKE.SWIGPendingException.Pending)
2287                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2288             return ret;
2289         }
2290
2291         internal void SetOrientation(Degree angle, Vector3 axis)
2292         {
2293             NDalicPINVOKE.Actor_SetOrientation__SWIG_0(swigCPtr, Degree.getCPtr(angle), Vector3.getCPtr(axis));
2294             if (NDalicPINVOKE.SWIGPendingException.Pending)
2295                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2296         }
2297
2298         internal void SetOrientation(Radian angle, Vector3 axis)
2299         {
2300             NDalicPINVOKE.Actor_SetOrientation__SWIG_1(swigCPtr, Radian.getCPtr(angle), Vector3.getCPtr(axis));
2301             if (NDalicPINVOKE.SWIGPendingException.Pending)
2302                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2303         }
2304
2305         internal void SetOrientation(Rotation orientation)
2306         {
2307             NDalicPINVOKE.Actor_SetOrientation__SWIG_2(swigCPtr, Rotation.getCPtr(orientation));
2308             if (NDalicPINVOKE.SWIGPendingException.Pending)
2309                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2310         }
2311
2312         internal void RotateBy(Degree angle, Vector3 axis)
2313         {
2314             NDalicPINVOKE.Actor_RotateBy__SWIG_0(swigCPtr, Degree.getCPtr(angle), Vector3.getCPtr(axis));
2315             if (NDalicPINVOKE.SWIGPendingException.Pending)
2316                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2317         }
2318
2319         internal void RotateBy(Radian angle, Vector3 axis)
2320         {
2321             NDalicPINVOKE.Actor_RotateBy__SWIG_1(swigCPtr, Radian.getCPtr(angle), Vector3.getCPtr(axis));
2322             if (NDalicPINVOKE.SWIGPendingException.Pending)
2323                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2324         }
2325
2326         internal void RotateBy(Rotation relativeRotation)
2327         {
2328             NDalicPINVOKE.Actor_RotateBy__SWIG_2(swigCPtr, Rotation.getCPtr(relativeRotation));
2329             if (NDalicPINVOKE.SWIGPendingException.Pending)
2330                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2331         }
2332
2333         internal Rotation GetCurrentOrientation()
2334         {
2335             Rotation ret = new Rotation(NDalicPINVOKE.Actor_GetCurrentOrientation(swigCPtr), true);
2336             if (NDalicPINVOKE.SWIGPendingException.Pending)
2337                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2338             return ret;
2339         }
2340
2341         internal void SetInheritOrientation(bool inherit)
2342         {
2343             NDalicPINVOKE.Actor_SetInheritOrientation(swigCPtr, inherit);
2344             if (NDalicPINVOKE.SWIGPendingException.Pending)
2345                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2346         }
2347
2348         internal bool IsOrientationInherited()
2349         {
2350             bool ret = NDalicPINVOKE.Actor_IsOrientationInherited(swigCPtr);
2351             if (NDalicPINVOKE.SWIGPendingException.Pending)
2352                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2353             return ret;
2354         }
2355
2356         internal Rotation GetCurrentWorldOrientation()
2357         {
2358             Rotation ret = new Rotation(NDalicPINVOKE.Actor_GetCurrentWorldOrientation(swigCPtr), true);
2359             if (NDalicPINVOKE.SWIGPendingException.Pending)
2360                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2361             return ret;
2362         }
2363
2364         internal void SetScale(float scale)
2365         {
2366             NDalicPINVOKE.Actor_SetScale__SWIG_0(swigCPtr, scale);
2367             if (NDalicPINVOKE.SWIGPendingException.Pending)
2368                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2369         }
2370
2371         internal void SetScale(float scaleX, float scaleY, float scaleZ)
2372         {
2373             NDalicPINVOKE.Actor_SetScale__SWIG_1(swigCPtr, scaleX, scaleY, scaleZ);
2374             if (NDalicPINVOKE.SWIGPendingException.Pending)
2375                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2376         }
2377
2378         internal void SetScale(Vector3 scale)
2379         {
2380             NDalicPINVOKE.Actor_SetScale__SWIG_2(swigCPtr, Vector3.getCPtr(scale));
2381             if (NDalicPINVOKE.SWIGPendingException.Pending)
2382                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2383         }
2384
2385         internal void ScaleBy(Vector3 relativeScale)
2386         {
2387             NDalicPINVOKE.Actor_ScaleBy(swigCPtr, Vector3.getCPtr(relativeScale));
2388             if (NDalicPINVOKE.SWIGPendingException.Pending)
2389                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2390         }
2391
2392         internal Vector3 GetCurrentScale()
2393         {
2394             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentScale(swigCPtr), true);
2395             if (NDalicPINVOKE.SWIGPendingException.Pending)
2396                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2397             return ret;
2398         }
2399
2400         internal Vector3 GetCurrentWorldScale()
2401         {
2402             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentWorldScale(swigCPtr), true);
2403             if (NDalicPINVOKE.SWIGPendingException.Pending)
2404                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2405             return ret;
2406         }
2407
2408         internal void SetInheritScale(bool inherit)
2409         {
2410             NDalicPINVOKE.Actor_SetInheritScale(swigCPtr, inherit);
2411             if (NDalicPINVOKE.SWIGPendingException.Pending)
2412                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2413         }
2414
2415         internal bool IsScaleInherited()
2416         {
2417             bool ret = NDalicPINVOKE.Actor_IsScaleInherited(swigCPtr);
2418             if (NDalicPINVOKE.SWIGPendingException.Pending)
2419                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2420             return ret;
2421         }
2422
2423         internal Matrix GetCurrentWorldMatrix()
2424         {
2425             Matrix ret = new Matrix(NDalicPINVOKE.Actor_GetCurrentWorldMatrix(swigCPtr), true);
2426             if (NDalicPINVOKE.SWIGPendingException.Pending)
2427                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2428             return ret;
2429         }
2430
2431         internal void SetVisible(bool visible)
2432         {
2433             NDalicPINVOKE.Actor_SetVisible(swigCPtr, visible);
2434             if (NDalicPINVOKE.SWIGPendingException.Pending)
2435                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2436         }
2437
2438         internal bool IsVisible()
2439         {
2440             bool ret = NDalicPINVOKE.Actor_IsVisible(swigCPtr);
2441             if (NDalicPINVOKE.SWIGPendingException.Pending)
2442                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2443             return ret;
2444         }
2445
2446         internal void SetOpacity(float opacity)
2447         {
2448             NDalicPINVOKE.Actor_SetOpacity(swigCPtr, opacity);
2449             if (NDalicPINVOKE.SWIGPendingException.Pending)
2450                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2451         }
2452
2453         internal float GetCurrentOpacity()
2454         {
2455             float ret = NDalicPINVOKE.Actor_GetCurrentOpacity(swigCPtr);
2456             if (NDalicPINVOKE.SWIGPendingException.Pending)
2457                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2458             return ret;
2459         }
2460
2461         internal void SetColor(Vector4 color)
2462         {
2463             NDalicPINVOKE.Actor_SetColor(swigCPtr, Vector4.getCPtr(color));
2464             if (NDalicPINVOKE.SWIGPendingException.Pending)
2465                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2466         }
2467
2468         internal Vector4 GetCurrentColor()
2469         {
2470             Vector4 ret = new Vector4(NDalicPINVOKE.Actor_GetCurrentColor(swigCPtr), true);
2471             if (NDalicPINVOKE.SWIGPendingException.Pending)
2472                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2473             return ret;
2474         }
2475
2476         internal void SetColorMode(ColorMode colorMode)
2477         {
2478             NDalicPINVOKE.Actor_SetColorMode(swigCPtr, (int)colorMode);
2479             if (NDalicPINVOKE.SWIGPendingException.Pending)
2480                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2481         }
2482
2483         internal ColorMode GetColorMode()
2484         {
2485             ColorMode ret = (ColorMode)NDalicPINVOKE.Actor_GetColorMode(swigCPtr);
2486             if (NDalicPINVOKE.SWIGPendingException.Pending)
2487                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2488             return ret;
2489         }
2490
2491         internal Vector4 GetCurrentWorldColor()
2492         {
2493             Vector4 ret = new Vector4(NDalicPINVOKE.Actor_GetCurrentWorldColor(swigCPtr), true);
2494             if (NDalicPINVOKE.SWIGPendingException.Pending)
2495                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2496             return ret;
2497         }
2498
2499         internal void SetDrawMode(DrawModeType drawMode)
2500         {
2501             NDalicPINVOKE.Actor_SetDrawMode(swigCPtr, (int)drawMode);
2502             if (NDalicPINVOKE.SWIGPendingException.Pending)
2503                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2504         }
2505
2506         internal DrawModeType GetDrawMode()
2507         {
2508             DrawModeType ret = (DrawModeType)NDalicPINVOKE.Actor_GetDrawMode(swigCPtr);
2509             if (NDalicPINVOKE.SWIGPendingException.Pending)
2510                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2511             return ret;
2512         }
2513
2514         internal void SetSensitive(bool sensitive)
2515         {
2516             NDalicPINVOKE.Actor_SetSensitive(swigCPtr, sensitive);
2517             if (NDalicPINVOKE.SWIGPendingException.Pending)
2518                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2519         }
2520
2521         internal bool IsSensitive()
2522         {
2523             bool ret = NDalicPINVOKE.Actor_IsSensitive(swigCPtr);
2524             if (NDalicPINVOKE.SWIGPendingException.Pending)
2525                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2526             return ret;
2527         }
2528
2529         /// <summary>
2530         /// Converts screen coordinates into the view's coordinate system using the default camera.
2531         /// </summary>
2532         /// <pre>The View has been initialized.</pre>
2533         /// <remarks>The view coordinates are relative to the top-left(0.0, 0.0, 0.5)</remarks>
2534         /// <param name="localX">On return, the X-coordinate relative to the view</param>
2535         /// <param name="localY">On return, the Y-coordinate relative to the view</param>
2536         /// <param name="screenX">The screen X-coordinate</param>
2537         /// <param name="screenY">The screen Y-coordinate</param>
2538         /// <returns>True if the conversion succeeded</returns>
2539         public bool ScreenToLocal(out float localX, out float localY, float screenX, float screenY)
2540         {
2541             bool ret = NDalicPINVOKE.Actor_ScreenToLocal(swigCPtr, out localX, out localY, screenX, screenY);
2542             if (NDalicPINVOKE.SWIGPendingException.Pending)
2543                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2544             return ret;
2545         }
2546
2547         internal void SetLeaveRequired(bool required)
2548         {
2549             NDalicPINVOKE.Actor_SetLeaveRequired(swigCPtr, required);
2550             if (NDalicPINVOKE.SWIGPendingException.Pending)
2551                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2552         }
2553
2554         internal bool GetLeaveRequired()
2555         {
2556             bool ret = NDalicPINVOKE.Actor_GetLeaveRequired(swigCPtr);
2557             if (NDalicPINVOKE.SWIGPendingException.Pending)
2558                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2559             return ret;
2560         }
2561
2562         internal void SetKeyboardFocusable(bool focusable)
2563         {
2564             NDalicPINVOKE.Actor_SetKeyboardFocusable(swigCPtr, focusable);
2565             if (NDalicPINVOKE.SWIGPendingException.Pending)
2566                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2567         }
2568
2569         internal bool IsKeyboardFocusable()
2570         {
2571             bool ret = NDalicPINVOKE.Actor_IsKeyboardFocusable(swigCPtr);
2572             if (NDalicPINVOKE.SWIGPendingException.Pending)
2573                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2574             return ret;
2575         }
2576
2577         internal void SetResizePolicy(ResizePolicyType policy, DimensionType dimension)
2578         {
2579             NDalicPINVOKE.Actor_SetResizePolicy(swigCPtr, (int)policy, (int)dimension);
2580             if (NDalicPINVOKE.SWIGPendingException.Pending)
2581                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2582         }
2583
2584         internal ResizePolicyType GetResizePolicy(DimensionType dimension)
2585         {
2586             ResizePolicyType ret = (ResizePolicyType)NDalicPINVOKE.Actor_GetResizePolicy(swigCPtr, (int)dimension);
2587             if (NDalicPINVOKE.SWIGPendingException.Pending)
2588                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2589             return ret;
2590         }
2591
2592         internal void SetSizeScalePolicy(SizeScalePolicyType policy)
2593         {
2594             NDalicPINVOKE.Actor_SetSizeScalePolicy(swigCPtr, (int)policy);
2595             if (NDalicPINVOKE.SWIGPendingException.Pending)
2596                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2597         }
2598
2599         internal SizeScalePolicyType GetSizeScalePolicy()
2600         {
2601             SizeScalePolicyType ret = (SizeScalePolicyType)NDalicPINVOKE.Actor_GetSizeScalePolicy(swigCPtr);
2602             if (NDalicPINVOKE.SWIGPendingException.Pending)
2603                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2604             return ret;
2605         }
2606
2607         /// <summary>
2608         /// Sets the relative to parent size factor of the view.<br>
2609         /// This factor is only used when ResizePolicy is set to either:
2610         /// ResizePolicy::SIZE_RELATIVE_TO_PARENT or ResizePolicy::SIZE_FIXED_OFFSET_FROM_PARENT.<br>
2611         /// This view's size is set to the view's size multiplied by or added to this factor, depending on ResizePolicy.<br>
2612         /// </summary>
2613         /// <pre>The View has been initialized.</pre>
2614         /// <param name="factor">A Vector3 representing the relative factor to be applied to each axis</param>
2615         public void SetSizeModeFactor(Vector3 factor)
2616         {
2617             NDalicPINVOKE.Actor_SetSizeModeFactor(swigCPtr, Vector3.getCPtr(factor));
2618             if (NDalicPINVOKE.SWIGPendingException.Pending)
2619                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2620         }
2621
2622         internal Vector3 GetSizeModeFactor()
2623         {
2624             Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetSizeModeFactor(swigCPtr), true);
2625             if (NDalicPINVOKE.SWIGPendingException.Pending)
2626                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2627             return ret;
2628         }
2629
2630         /// <summary>
2631         /// Calculates the height of the view given a width.<br>
2632         /// The natural size is used for default calculation. <br>
2633         /// size 0 is treated as aspect ratio 1:1.<br>
2634         /// </summary>
2635         /// <param name="width">Width to use</param>
2636         /// <returns>The height based on the width</returns>
2637         public float GetHeightForWidth(float width)
2638         {
2639             float ret = NDalicPINVOKE.Actor_GetHeightForWidth(swigCPtr, width);
2640             if (NDalicPINVOKE.SWIGPendingException.Pending)
2641                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2642             return ret;
2643         }
2644
2645         /// <summary>
2646         /// Calculates the width of the view given a height.<br>
2647         /// The natural size is used for default calculation.<br>
2648         /// size 0 is treated as aspect ratio 1:1.<br>
2649         /// </summary>
2650         /// <param name="height">Height to use</param>
2651         /// <returns>The width based on the height</returns>
2652         public float GetWidthForHeight(float height)
2653         {
2654             float ret = NDalicPINVOKE.Actor_GetWidthForHeight(swigCPtr, height);
2655             if (NDalicPINVOKE.SWIGPendingException.Pending)
2656                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2657             return ret;
2658         }
2659
2660         public float GetRelayoutSize(DimensionType dimension)
2661         {
2662             float ret = NDalicPINVOKE.Actor_GetRelayoutSize(swigCPtr, (int)dimension);
2663             if (NDalicPINVOKE.SWIGPendingException.Pending)
2664                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2665             return ret;
2666         }
2667
2668         public void SetPadding(PaddingType padding)
2669         {
2670             NDalicPINVOKE.Actor_SetPadding(swigCPtr, PaddingType.getCPtr(padding));
2671             if (NDalicPINVOKE.SWIGPendingException.Pending)
2672                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2673         }
2674
2675         public void GetPadding(PaddingType paddingOut)
2676         {
2677             NDalicPINVOKE.Actor_GetPadding(swigCPtr, PaddingType.getCPtr(paddingOut));
2678             if (NDalicPINVOKE.SWIGPendingException.Pending)
2679                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2680         }
2681
2682         internal void SetMinimumSize(Vector2 size)
2683         {
2684             NDalicPINVOKE.Actor_SetMinimumSize(swigCPtr, Vector2.getCPtr(size));
2685             if (NDalicPINVOKE.SWIGPendingException.Pending)
2686                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2687         }
2688
2689         internal Vector2 GetMinimumSize()
2690         {
2691             Vector2 ret = new Vector2(NDalicPINVOKE.Actor_GetMinimumSize(swigCPtr), true);
2692             if (NDalicPINVOKE.SWIGPendingException.Pending)
2693                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2694             return ret;
2695         }
2696
2697         internal void SetMaximumSize(Vector2 size)
2698         {
2699             NDalicPINVOKE.Actor_SetMaximumSize(swigCPtr, Vector2.getCPtr(size));
2700             if (NDalicPINVOKE.SWIGPendingException.Pending)
2701                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2702         }
2703
2704         internal Vector2 GetMaximumSize()
2705         {
2706             Vector2 ret = new Vector2(NDalicPINVOKE.Actor_GetMaximumSize(swigCPtr), true);
2707             if (NDalicPINVOKE.SWIGPendingException.Pending)
2708                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2709             return ret;
2710         }
2711
2712         internal int GetHierarchyDepth()
2713         {
2714             int ret = NDalicPINVOKE.Actor_GetHierarchyDepth(swigCPtr);
2715             if (NDalicPINVOKE.SWIGPendingException.Pending)
2716                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2717             return ret;
2718         }
2719
2720         internal uint AddRenderer(Renderer renderer)
2721         {
2722             uint ret = NDalicPINVOKE.Actor_AddRenderer(swigCPtr, Renderer.getCPtr(renderer));
2723             if (NDalicPINVOKE.SWIGPendingException.Pending)
2724                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2725             return ret;
2726         }
2727
2728         internal uint GetRendererCount()
2729         {
2730             uint ret = NDalicPINVOKE.Actor_GetRendererCount(swigCPtr);
2731             if (NDalicPINVOKE.SWIGPendingException.Pending)
2732                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2733             return ret;
2734         }
2735
2736         internal Renderer GetRendererAt(uint index)
2737         {
2738             Renderer ret = new Renderer(NDalicPINVOKE.Actor_GetRendererAt(swigCPtr, index), true);
2739             if (NDalicPINVOKE.SWIGPendingException.Pending)
2740                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2741             return ret;
2742         }
2743
2744         internal void RemoveRenderer(Renderer renderer)
2745         {
2746             NDalicPINVOKE.Actor_RemoveRenderer__SWIG_0(swigCPtr, Renderer.getCPtr(renderer));
2747             if (NDalicPINVOKE.SWIGPendingException.Pending)
2748                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2749         }
2750
2751         internal void RemoveRenderer(uint index)
2752         {
2753             NDalicPINVOKE.Actor_RemoveRenderer__SWIG_1(swigCPtr, index);
2754             if (NDalicPINVOKE.SWIGPendingException.Pending)
2755                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2756         }
2757
2758         internal TouchDataSignal TouchSignal()
2759         {
2760             TouchDataSignal ret = new TouchDataSignal(NDalicPINVOKE.Actor_TouchSignal(swigCPtr), false);
2761             if (NDalicPINVOKE.SWIGPendingException.Pending)
2762                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2763             return ret;
2764         }
2765
2766         internal HoverSignal HoveredSignal()
2767         {
2768             HoverSignal ret = new HoverSignal(NDalicPINVOKE.Actor_HoveredSignal(swigCPtr), false);
2769             if (NDalicPINVOKE.SWIGPendingException.Pending)
2770                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2771             return ret;
2772         }
2773
2774         internal WheelSignal WheelEventSignal()
2775         {
2776             WheelSignal ret = new WheelSignal(NDalicPINVOKE.Actor_WheelEventSignal(swigCPtr), false);
2777             if (NDalicPINVOKE.SWIGPendingException.Pending)
2778                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2779             return ret;
2780         }
2781
2782         internal ViewSignal OnWindowSignal()
2783         {
2784             ViewSignal ret = new ViewSignal(NDalicPINVOKE.Actor_OnStageSignal(swigCPtr), false);
2785             if (NDalicPINVOKE.SWIGPendingException.Pending)
2786                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2787             return ret;
2788         }
2789
2790         internal ViewSignal OffWindowSignal()
2791         {
2792             ViewSignal ret = new ViewSignal(NDalicPINVOKE.Actor_OffStageSignal(swigCPtr), false);
2793             if (NDalicPINVOKE.SWIGPendingException.Pending)
2794                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2795             return ret;
2796         }
2797
2798         internal ViewSignal OnRelayoutSignal()
2799         {
2800             ViewSignal ret = new ViewSignal(NDalicPINVOKE.Actor_OnRelayoutSignal(swigCPtr), false);
2801             if (NDalicPINVOKE.SWIGPendingException.Pending)
2802                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2803             return ret;
2804         }
2805
2806         internal ViewVisibilityChangedSignal VisibilityChangedSignal(View view) {
2807             ViewVisibilityChangedSignal ret = new ViewVisibilityChangedSignal(NDalicPINVOKE.VisibilityChangedSignal(View.getCPtr(view)), false);
2808             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2809             return ret;
2810         }
2811
2812         /// <summary>
2813         /// Gets/Sets the origin of an view, within its parent's area.<br>
2814         /// 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>
2815         /// The default parent-origin is ParentOrigin.TopLeft (0.0, 0.0, 0.5).<br>
2816         /// An view's position is the distance between this origin, and the view's anchor-point.<br>
2817         /// </summary>
2818         /// <pre>The View has been initialized.</pre>
2819         public Position ParentOrigin
2820         {
2821             get
2822             {
2823                 Position temp = new Position(0.0f, 0.0f, 0.0f);
2824                 GetProperty(View.Property.PARENT_ORIGIN).Get(temp);
2825                 return temp;
2826             }
2827             set
2828             {
2829                 SetProperty(View.Property.PARENT_ORIGIN, new Tizen.NUI.PropertyValue(value));
2830             }
2831         }
2832
2833         internal float ParentOriginX
2834         {
2835             get
2836             {
2837                 float temp = 0.0f;
2838                 GetProperty(View.Property.PARENT_ORIGIN_X).Get(ref temp);
2839                 return temp;
2840             }
2841             set
2842             {
2843                 SetProperty(View.Property.PARENT_ORIGIN_X, new Tizen.NUI.PropertyValue(value));
2844             }
2845         }
2846
2847         internal float ParentOriginY
2848         {
2849             get
2850             {
2851                 float temp = 0.0f;
2852                 GetProperty(View.Property.PARENT_ORIGIN_Y).Get(ref temp);
2853                 return temp;
2854             }
2855             set
2856             {
2857                 SetProperty(View.Property.PARENT_ORIGIN_Y, new Tizen.NUI.PropertyValue(value));
2858             }
2859         }
2860
2861         internal float ParentOriginZ
2862         {
2863             get
2864             {
2865                 float temp = 0.0f;
2866                 GetProperty(View.Property.PARENT_ORIGIN_Z).Get(ref temp);
2867                 return temp;
2868             }
2869             set
2870             {
2871                 SetProperty(View.Property.PARENT_ORIGIN_Z, new Tizen.NUI.PropertyValue(value));
2872             }
2873         }
2874
2875         /// <summary>
2876         /// Gets/Sets the anchor-point of an view.<br>
2877         /// 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>
2878         /// The default anchor point is AnchorPoint.Center (0.5, 0.5, 0.5).<br>
2879         /// An view position is the distance between its parent-origin and this anchor-point.<br>
2880         /// An view's orientation is the rotation from its default orientation, the rotation is centered around its anchor-point.<br>
2881         /// <pre>The View has been initialized.</pre>
2882         /// </summary>
2883         public Position AnchorPoint
2884         {
2885             get
2886             {
2887                 Position temp = new Position(0.0f, 0.0f, 0.0f);
2888                 GetProperty(View.Property.ANCHOR_POINT).Get(temp);
2889                 return temp;
2890             }
2891             set
2892             {
2893                 SetProperty(View.Property.ANCHOR_POINT, new Tizen.NUI.PropertyValue(value));
2894             }
2895         }
2896
2897         internal float AnchorPointX
2898         {
2899             get
2900             {
2901                 float temp = 0.0f;
2902                 GetProperty(View.Property.ANCHOR_POINT_X).Get(ref temp);
2903                 return temp;
2904             }
2905             set
2906             {
2907                 SetProperty(View.Property.ANCHOR_POINT_X, new Tizen.NUI.PropertyValue(value));
2908             }
2909         }
2910
2911         internal float AnchorPointY
2912         {
2913             get
2914             {
2915                 float temp = 0.0f;
2916                 GetProperty(View.Property.ANCHOR_POINT_Y).Get(ref temp);
2917                 return temp;
2918             }
2919             set
2920             {
2921                 SetProperty(View.Property.ANCHOR_POINT_Y, new Tizen.NUI.PropertyValue(value));
2922             }
2923         }
2924
2925         internal float AnchorPointZ
2926         {
2927             get
2928             {
2929                 float temp = 0.0f;
2930                 GetProperty(View.Property.ANCHOR_POINT_Z).Get(ref temp);
2931                 return temp;
2932             }
2933             set
2934             {
2935                 SetProperty(View.Property.ANCHOR_POINT_Z, new Tizen.NUI.PropertyValue(value));
2936             }
2937         }
2938
2939         /// <summary>
2940         /// Gets/Sets the size of an view.<br>
2941         /// Geometry can be scaled to fit within this area.<br>
2942         /// This does not interfere with the views scale factor.<br>
2943         /// </summary>
2944         public Size Size
2945         {
2946             get
2947             {
2948                 Size temp = new Size(0.0f, 0.0f, 0.0f);
2949                 GetProperty(View.Property.SIZE).Get(temp);
2950                 return temp;
2951             }
2952             set
2953             {
2954                 SetProperty(View.Property.SIZE, new Tizen.NUI.PropertyValue(value));
2955             }
2956         }
2957
2958         /// <summary>
2959         /// Gets/Sets the size width of an view.
2960         /// </summary>
2961         public float SizeWidth
2962         {
2963             get
2964             {
2965                 float temp = 0.0f;
2966                 GetProperty(View.Property.SIZE_WIDTH).Get(ref temp);
2967                 return temp;
2968             }
2969             set
2970             {
2971                 SetProperty(View.Property.SIZE_WIDTH, new Tizen.NUI.PropertyValue(value));
2972             }
2973         }
2974
2975         /// <summary>
2976         /// Gets/Sets the size height of an view.
2977         /// </summary>
2978         public float SizeHeight
2979         {
2980             get
2981             {
2982                 float temp = 0.0f;
2983                 GetProperty(View.Property.SIZE_HEIGHT).Get(ref temp);
2984                 return temp;
2985             }
2986             set
2987             {
2988                 SetProperty(View.Property.SIZE_HEIGHT, new Tizen.NUI.PropertyValue(value));
2989             }
2990         }
2991
2992         /// <summary>
2993         /// Gets/Sets the size depth of an view.
2994         /// </summary>
2995         public float SizeDepth
2996         {
2997             get
2998             {
2999                 float temp = 0.0f;
3000                 GetProperty(View.Property.SIZE_DEPTH).Get(ref temp);
3001                 return temp;
3002             }
3003             set
3004             {
3005                 SetProperty(View.Property.SIZE_DEPTH, new Tizen.NUI.PropertyValue(value));
3006             }
3007         }
3008
3009         /// <summary>
3010         /// Gets/Sets the position of the View.<br>
3011         /// By default, sets the position vector between the parent origin and anchor point(default).<br>
3012         /// If Position inheritance if disabled, sets the world position.<br>
3013         /// </summary>
3014         public Position Position
3015         {
3016             get
3017             {
3018                 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
3019                 GetProperty(View.Property.POSITION).Get(temp);
3020                 return temp;
3021             }
3022             set
3023             {
3024                 SetProperty(View.Property.POSITION, new Tizen.NUI.PropertyValue(value));
3025             }
3026         }
3027
3028         /// <summary>
3029         /// Gets/Sets the position x of the View.
3030         /// </summary>
3031         public float PositionX
3032         {
3033             get
3034             {
3035                 float temp = 0.0f;
3036                 GetProperty(View.Property.POSITION_X).Get(ref temp);
3037                 return temp;
3038             }
3039             set
3040             {
3041                 SetProperty(View.Property.POSITION_X, new Tizen.NUI.PropertyValue(value));
3042             }
3043         }
3044
3045         /// <summary>
3046         /// Gets/Sets the position y of the View.
3047         /// </summary>
3048         public float PositionY
3049         {
3050             get
3051             {
3052                 float temp = 0.0f;
3053                 GetProperty(View.Property.POSITION_Y).Get(ref temp);
3054                 return temp;
3055             }
3056             set
3057             {
3058                 SetProperty(View.Property.POSITION_Y, new Tizen.NUI.PropertyValue(value));
3059             }
3060         }
3061
3062         /// <summary>
3063         /// Gets/Sets the position z of the View.
3064         /// </summary>
3065         public float PositionZ
3066         {
3067             get
3068             {
3069                 float temp = 0.0f;
3070                 GetProperty(View.Property.POSITION_Z).Get(ref temp);
3071                 return temp;
3072             }
3073             set
3074             {
3075                 SetProperty(View.Property.POSITION_Z, new Tizen.NUI.PropertyValue(value));
3076             }
3077         }
3078
3079         /// <summary>
3080         /// Gets/Sets the world position of the View.
3081         /// </summary>
3082         public Vector3 WorldPosition
3083         {
3084             get
3085             {
3086                 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
3087                 GetProperty(View.Property.WORLD_POSITION).Get(temp);
3088                 return temp;
3089             }
3090         }
3091
3092         internal float WorldPositionX
3093         {
3094             get
3095             {
3096                 float temp = 0.0f;
3097                 GetProperty(View.Property.WORLD_POSITION_X).Get(ref temp);
3098                 return temp;
3099             }
3100         }
3101
3102         internal float WorldPositionY
3103         {
3104             get
3105             {
3106                 float temp = 0.0f;
3107                 GetProperty(View.Property.WORLD_POSITION_Y).Get(ref temp);
3108                 return temp;
3109             }
3110         }
3111
3112         internal float WorldPositionZ
3113         {
3114             get
3115             {
3116                 float temp = 0.0f;
3117                 GetProperty(View.Property.WORLD_POSITION_Z).Get(ref temp);
3118                 return temp;
3119             }
3120         }
3121
3122         /// <summary>
3123         /// Gets/Sets the orientation of the View.<br>
3124         /// An view's orientation is the rotation from its default orientation, and the rotation is centered around its anchor-point.<br>
3125         /// </summary>
3126         /// <remarks>This is an asynchronous method.</remarks>
3127         public Rotation Orientation
3128         {
3129             get
3130             {
3131                 Rotation temp = new Rotation();
3132                 GetProperty(View.Property.ORIENTATION).Get(temp);
3133                 return temp;
3134             }
3135             set
3136             {
3137                 SetProperty(View.Property.ORIENTATION, new Tizen.NUI.PropertyValue(value));
3138             }
3139         }
3140
3141         /// <summary>
3142         /// Gets/Sets the world orientation of the View.<br>
3143         /// </summary>
3144         public Rotation WorldOrientation
3145         {
3146             get
3147             {
3148                 Rotation temp = new Rotation();
3149                 GetProperty(View.Property.WORLD_ORIENTATION).Get(temp);
3150                 return temp;
3151             }
3152         }
3153
3154         /// <summary>
3155         /// Gets/Sets the scale factor applied to an view.<br>
3156         /// </summary>
3157         public Vector3 Scale
3158         {
3159             get
3160             {
3161                 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
3162                 GetProperty(View.Property.SCALE).Get(temp);
3163                 return temp;
3164             }
3165             set
3166             {
3167                 SetProperty(View.Property.SCALE, new Tizen.NUI.PropertyValue(value));
3168             }
3169         }
3170
3171         /// <summary>
3172         /// Gets/Sets the scale x factor applied to an view.
3173         /// </summary>
3174         public float ScaleX
3175         {
3176             get
3177             {
3178                 float temp = 0.0f;
3179                 GetProperty(View.Property.SCALE_X).Get(ref temp);
3180                 return temp;
3181             }
3182             set
3183             {
3184                 SetProperty(View.Property.SCALE_X, new Tizen.NUI.PropertyValue(value));
3185             }
3186         }
3187
3188         /// <summary>
3189         /// Gets/Sets the scale y factor applied to an view.
3190         /// </summary>
3191         public float ScaleY
3192         {
3193             get
3194             {
3195                 float temp = 0.0f;
3196                 GetProperty(View.Property.SCALE_Y).Get(ref temp);
3197                 return temp;
3198             }
3199             set
3200             {
3201                 SetProperty(View.Property.SCALE_Y, new Tizen.NUI.PropertyValue(value));
3202             }
3203         }
3204
3205         /// <summary>
3206         /// Gets/Sets the scale z factor applied to an view.
3207         /// </summary>
3208         public float ScaleZ
3209         {
3210             get
3211             {
3212                 float temp = 0.0f;
3213                 GetProperty(View.Property.SCALE_Z).Get(ref temp);
3214                 return temp;
3215             }
3216             set
3217             {
3218                 SetProperty(View.Property.SCALE_Z, new Tizen.NUI.PropertyValue(value));
3219             }
3220         }
3221
3222         /// <summary>
3223         /// Gets the world scale of View.
3224         /// </summary>
3225         public Vector3 WorldScale
3226         {
3227             get
3228             {
3229                 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
3230                 GetProperty(View.Property.WORLD_SCALE).Get(temp);
3231                 return temp;
3232             }
3233         }
3234
3235         /// <summary>
3236         /// Retrieves the visibility flag of an view.
3237         /// </summary>
3238         /// <remarks>
3239         /// If an view is not visible, then the view and its children will not be rendered.
3240         /// This is regardless of the individual visibility values of the children i.e.an view will only be rendered if all of its parents have visibility set to true.
3241         /// </remarks>
3242         public bool Visible
3243         {
3244             get
3245             {
3246                 bool temp = false;
3247                 GetProperty(View.Property.VISIBLE).Get(ref temp);
3248                 return temp;
3249             }/* only get is required : removed
3250             set
3251             {
3252                 SetProperty(View.Property.VISIBLE, new Tizen.NUI.PropertyValue(value));
3253             }*/
3254         }
3255
3256         /// <summary>
3257         /// Gets/Sets the view's mix color red.
3258         /// </summary>
3259         public float ColorRed
3260         {
3261             get
3262             {
3263                 float temp = 0.0f;
3264                 GetProperty(View.Property.COLOR_RED).Get(ref temp);
3265                 return temp;
3266             }
3267             set
3268             {
3269                 SetProperty(View.Property.COLOR_RED, new Tizen.NUI.PropertyValue(value));
3270             }
3271         }
3272
3273         /// <summary>
3274         /// Gets/Sets the view's mix color green.
3275         /// </summary>
3276         public float ColorGreen
3277         {
3278             get
3279             {
3280                 float temp = 0.0f;
3281                 GetProperty(View.Property.COLOR_GREEN).Get(ref temp);
3282                 return temp;
3283             }
3284             set
3285             {
3286                 SetProperty(View.Property.COLOR_GREEN, new Tizen.NUI.PropertyValue(value));
3287             }
3288         }
3289
3290         /// <summary>
3291         /// Gets/Sets the view's mix color blue
3292         /// </summary>
3293         public float ColorBlue
3294         {
3295             get
3296             {
3297                 float temp = 0.0f;
3298                 GetProperty(View.Property.COLOR_BLUE).Get(ref temp);
3299                 return temp;
3300             }
3301             set
3302             {
3303                 SetProperty(View.Property.COLOR_BLUE, new Tizen.NUI.PropertyValue(value));
3304             }
3305         }
3306
3307         /// <summary>
3308         /// Gets/Sets the view's mix color alpha.
3309         /// </summary>
3310         public float ColorAlpha
3311         {
3312             get
3313             {
3314                 float temp = 0.0f;
3315                 GetProperty(View.Property.COLOR_ALPHA).Get(ref temp);
3316                 return temp;
3317             }
3318             set
3319             {
3320                 SetProperty(View.Property.COLOR_ALPHA, new Tizen.NUI.PropertyValue(value));
3321             }
3322         }
3323
3324         /// <summary>
3325         /// Gets the view's world color.
3326         /// </summary>
3327         public Vector4 WorldColor
3328         {
3329             get
3330             {
3331                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
3332                 GetProperty(View.Property.WORLD_COLOR).Get(temp);
3333                 return temp;
3334             }
3335         }
3336
3337         internal Matrix WorldMatrix
3338         {
3339             get
3340             {
3341                 Matrix temp = new Matrix();
3342                 GetProperty(View.Property.WORLD_MATRIX).Get(temp);
3343                 return temp;
3344             }
3345         }
3346
3347         /// <summary>
3348         /// Gets/Sets the View's name.
3349         /// </summary>
3350         public string Name
3351         {
3352             get
3353             {
3354                 string temp;
3355                 GetProperty(View.Property.NAME).Get(out temp);
3356                 return temp;
3357             }
3358             set
3359             {
3360                 SetProperty(View.Property.NAME, new Tizen.NUI.PropertyValue(value));
3361             }
3362         }
3363
3364         /// <summary>
3365         /// Gets/Sets the status of whether an view should emit touch or hover signals.
3366         /// </summary>
3367         public bool Sensitive
3368         {
3369             get
3370             {
3371                 bool temp = false;
3372                 GetProperty(View.Property.SENSITIVE).Get(ref temp);
3373                 return temp;
3374             }
3375             set
3376             {
3377                 SetProperty(View.Property.SENSITIVE, new Tizen.NUI.PropertyValue(value));
3378             }
3379         }
3380
3381         /// <summary>
3382         /// Gets/Sets the status of whether the view should receive a notification when touch or hover motion events leave the boundary of the view.
3383         /// </summary>
3384         public bool LeaveRequired
3385         {
3386             get
3387             {
3388                 bool temp = false;
3389                 GetProperty(View.Property.LEAVE_REQUIRED).Get(ref temp);
3390                 return temp;
3391             }
3392             set
3393             {
3394                 SetProperty(View.Property.LEAVE_REQUIRED, new Tizen.NUI.PropertyValue(value));
3395             }
3396         }
3397
3398         /// <summary>
3399         /// Gets/Sets the status of whether a child view inherits it's parent's orientation.
3400         /// </summary>
3401         public bool InheritOrientation
3402         {
3403             get
3404             {
3405                 bool temp = false;
3406                 GetProperty(View.Property.INHERIT_ORIENTATION).Get(ref temp);
3407                 return temp;
3408             }
3409             set
3410             {
3411                 SetProperty(View.Property.INHERIT_ORIENTATION, new Tizen.NUI.PropertyValue(value));
3412             }
3413         }
3414
3415         /// <summary>
3416         /// Gets/Sets the status of whether a child view inherits it's parent's scale.
3417         /// </summary>
3418         public bool InheritScale
3419         {
3420             get
3421             {
3422                 bool temp = false;
3423                 GetProperty(View.Property.INHERIT_SCALE).Get(ref temp);
3424                 return temp;
3425             }
3426             set
3427             {
3428                 SetProperty(View.Property.INHERIT_SCALE, new Tizen.NUI.PropertyValue(value));
3429             }
3430         }
3431
3432         /// <summary>
3433         /// Gets/Sets the view's color mode.<br>
3434         /// This specifies whether the View uses its own color, or inherits its parent color.<br>
3435         /// The default is UseOwnMultiplyParentAlpha.<br>
3436         /// </summary>
3437         public ColorMode ColorMode
3438         {
3439             get
3440             {
3441                 string temp;
3442                 if (GetProperty(View.Property.COLOR_MODE).Get(out temp) == false)
3443                 {
3444 #if DEBUG_ON
3445                     Tizen.Log.Error("NUI", "ColorMode get error!");
3446 #endif
3447                 }
3448                 switch (temp)
3449                 {
3450                     case "USE_OWN_COLOR":
3451                     return ColorMode.UseOwnColor;
3452                     case "USE_PARENT_COLOR":
3453                     return ColorMode.UseParentColor;
3454                     case "USE_OWN_MULTIPLY_PARENT_COLOR":
3455                     return ColorMode.UseOwnMultiplyParentColor;
3456                     case "USE_OWN_MULTIPLY_PARENT_ALPHA":
3457                     return ColorMode.UseOwnMultiplyParentAlpha;
3458                     default:
3459                     return ColorMode.UseOwnMultiplyParentAlpha;
3460                 }
3461             }
3462             set
3463             {
3464                 SetProperty(View.Property.COLOR_MODE, new Tizen.NUI.PropertyValue((int)value));
3465             }
3466         }
3467
3468         public string PositionInheritance
3469         {
3470             get
3471             {
3472                 string temp;
3473                 GetProperty(View.Property.POSITION_INHERITANCE).Get(out temp);
3474                 return temp;
3475             }
3476             set
3477             {
3478                 SetProperty(View.Property.POSITION_INHERITANCE, new Tizen.NUI.PropertyValue(value));
3479             }
3480         }
3481
3482         /// <summary>
3483         /// Gets/Sets the status of how the view and its children should be drawn.<br>
3484         /// Not all views are renderable, but DrawMode can be inherited from any view.<br>
3485         /// 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>
3486         /// If DrawMode.Overlay2D is used, the view and its children will be drawn as a 2D overlay.<br>
3487         /// Overlay views are drawn in a separate pass, after all non-overlay views within the Layer.<br>
3488         /// For overlay views, the drawing order is with respect to tree levels of Views, and depth-testing will not be used.<br>
3489         /// </summary>
3490         public DrawModeType DrawMode
3491         {
3492             get
3493             {
3494                 string temp;
3495                 if (GetProperty(View.Property.DRAW_MODE).Get(out temp) == false)
3496                 {
3497 #if DEBUG_ON
3498                     Tizen.Log.Error("NUI", "DrawMode get error!");
3499 #endif
3500                 }
3501                 switch (temp)
3502                 {
3503                     case "NORMAL":
3504                     return DrawModeType.Normal;
3505                     case "OVERLAY_2D":
3506                     return DrawModeType.Overlay2D;
3507                     case "STENCIL":
3508                     return DrawModeType.Stencil;
3509                     default:
3510                     return DrawModeType.Normal;
3511                 }
3512             }
3513             set
3514             {
3515                 SetProperty(View.Property.DRAW_MODE, new Tizen.NUI.PropertyValue((int)value));
3516             }
3517         }
3518
3519         /// <summary>
3520         /// Gets/Sets the relative to parent size factor of the view.<br>
3521         /// This factor is only used when ResizePolicyType is set to either: ResizePolicyType.SizeRelativeToParent or ResizePolicyType.SizeFixedOffsetFromParent.<br>
3522         /// This view's size is set to the view's size multiplied by or added to this factor, depending on ResizePolicyType.<br>
3523         /// </summary>
3524         public Vector3 SizeModeFactor
3525         {
3526             get
3527             {
3528                 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
3529                 GetProperty(View.Property.SIZE_MODE_FACTOR).Get(temp);
3530                 return temp;
3531             }
3532             set
3533             {
3534                 SetProperty(View.Property.SIZE_MODE_FACTOR, new Tizen.NUI.PropertyValue(value));
3535             }
3536         }
3537
3538         /// <summary>
3539         /// Gets/Sets the width resize policy to be used.
3540         /// </summary>
3541         public ResizePolicyType WidthResizePolicy
3542         {
3543             get
3544             {
3545                 string temp;
3546                 if (GetProperty(View.Property.WIDTH_RESIZE_POLICY).Get(out temp) == false)
3547                 {
3548 #if DEBUG_ON
3549                     Tizen.Log.Error("NUI", "WidthResizePolicy get error!");
3550 #endif
3551                 }
3552                 switch (temp)
3553                 {
3554                     case "FIXED":
3555                         return ResizePolicyType.Fixed;
3556                     case "USE_NATURAL_SIZE":
3557                         return ResizePolicyType.UseNaturalSize;
3558                     case "FILL_TO_PARENT":
3559                         return ResizePolicyType.FillToParent;
3560                     case "SIZE_RELATIVE_TO_PARENT":
3561                         return ResizePolicyType.SizeRelativeToParent;
3562                     case "SIZE_FIXED_OFFSET_FROM_PARENT":
3563                         return ResizePolicyType.SizeFixedOffsetFromParent;
3564                     case "FIT_TO_CHILDREN":
3565                         return ResizePolicyType.FitToChildren;
3566                     case "DIMENSION_DEPENDENCY":
3567                         return ResizePolicyType.DimensionDependency;
3568                     case "USE_ASSIGNED_SIZE":
3569                         return ResizePolicyType.UseAssignedSize;
3570                     default:
3571                         return ResizePolicyType.Fixed;
3572                 }
3573             }
3574             set
3575             {
3576                 SetProperty(View.Property.WIDTH_RESIZE_POLICY, new Tizen.NUI.PropertyValue((int)value));
3577             }
3578         }
3579
3580         /// <summary>
3581         /// Gets/Sets the height resize policy to be used.
3582         /// </summary>
3583         public ResizePolicyType HeightResizePolicy
3584         {
3585             get
3586             {
3587                 string temp;
3588                 if (GetProperty(View.Property.HEIGHT_RESIZE_POLICY).Get(out temp) == false)
3589                 {
3590 #if DEBUG_ON
3591                     Tizen.Log.Error("NUI", "HeightResizePolicy get error!");
3592 #endif
3593                 }
3594                 switch (temp)
3595                 {
3596                     case "FIXED":
3597                         return ResizePolicyType.Fixed;
3598                     case "USE_NATURAL_SIZE":
3599                         return ResizePolicyType.UseNaturalSize;
3600                     case "FILL_TO_PARENT":
3601                         return ResizePolicyType.FillToParent;
3602                     case "SIZE_RELATIVE_TO_PARENT":
3603                         return ResizePolicyType.SizeRelativeToParent;
3604                     case "SIZE_FIXED_OFFSET_FROM_PARENT":
3605                         return ResizePolicyType.SizeFixedOffsetFromParent;
3606                     case "FIT_TO_CHILDREN":
3607                         return ResizePolicyType.FitToChildren;
3608                     case "DIMENSION_DEPENDENCY":
3609                         return ResizePolicyType.DimensionDependency;
3610                     case "USE_ASSIGNED_SIZE":
3611                         return ResizePolicyType.UseAssignedSize;
3612                     default:
3613                         return ResizePolicyType.Fixed;
3614                 }
3615             }
3616             set
3617             {
3618                 SetProperty(View.Property.HEIGHT_RESIZE_POLICY, new Tizen.NUI.PropertyValue((int)value));
3619             }
3620         }
3621
3622         /// <summary>
3623         /// Gets/Sets the policy to use when setting size with size negotiation.<br>
3624         /// Defaults to  SizeScalePolicyType.UseSizeSet.<br>
3625         /// </summary>
3626         public SizeScalePolicyType SizeScalePolicy
3627         {
3628             get
3629             {
3630                 string temp;
3631                 if (GetProperty(View.Property.SIZE_SCALE_POLICY).Get(out temp) == false)
3632                 {
3633 #if DEBUG_ON
3634                     Tizen.Log.Error("NUI", "SizeScalePolicy get error!");
3635 #endif
3636                 }
3637                 switch (temp)
3638                 {
3639                     case "USE_SIZE_SET":
3640                         return SizeScalePolicyType.UseSizeSet;
3641                     case "FIT_WITH_ASPECT_RATIO":
3642                         return SizeScalePolicyType.FitWithAspectRatio;
3643                     case "FILL_WITH_ASPECT_RATIO":
3644                         return SizeScalePolicyType.FillWithAspectRatio;
3645                     default:
3646                         return SizeScalePolicyType.UseSizeSet;
3647                 }
3648             }
3649             set
3650             {
3651                 string valueToString = "";
3652                 switch (value)
3653                 {
3654                     case SizeScalePolicyType.UseSizeSet:
3655                         {
3656                             valueToString = "USE_SIZE_SET";
3657                             break;
3658                         }
3659                     case SizeScalePolicyType.FitWithAspectRatio:
3660                         {
3661                             valueToString = "FIT_WITH_ASPECT_RATIO";
3662                             break;
3663                         }
3664                     case SizeScalePolicyType.FillWithAspectRatio:
3665                         {
3666                             valueToString = "FILL_WITH_ASPECT_RATIO";
3667                             break;
3668                         }
3669                     default:
3670                         {
3671                             valueToString = "USE_SIZE_SET";
3672                             break;
3673                         }
3674                 }
3675                 SetProperty(View.Property.SIZE_SCALE_POLICY, new Tizen.NUI.PropertyValue(valueToString));
3676             }
3677         }
3678
3679         /// <summary>
3680         ///  Gets/Sets the status of whether the width size is dependent on height size.
3681         /// </summary>
3682         public bool WidthForHeight
3683         {
3684             get
3685             {
3686                 bool temp = false;
3687                 GetProperty(View.Property.WIDTH_FOR_HEIGHT).Get(ref temp);
3688                 return temp;
3689             }
3690             set
3691             {
3692                 SetProperty(View.Property.WIDTH_FOR_HEIGHT, new Tizen.NUI.PropertyValue(value));
3693             }
3694         }
3695
3696         /// <summary>
3697         ///  Gets/Sets the status of whether the height size is dependent on width size.
3698         /// </summary>
3699         public bool HeightForWidth
3700         {
3701             get
3702             {
3703                 bool temp = false;
3704                 GetProperty(View.Property.HEIGHT_FOR_WIDTH).Get(ref temp);
3705                 return temp;
3706             }
3707             set
3708             {
3709                 SetProperty(View.Property.HEIGHT_FOR_WIDTH, new Tizen.NUI.PropertyValue(value));
3710             }
3711         }
3712
3713         /// <summary>
3714         /// Gets/Sets the padding for use in layout.
3715         /// </summary>
3716         public Vector4 Padding
3717         {
3718             get
3719             {
3720                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
3721                 GetProperty(View.Property.PADDING).Get(temp);
3722                 return temp;
3723             }
3724             set
3725             {
3726                 SetProperty(View.Property.PADDING, new Tizen.NUI.PropertyValue(value));
3727             }
3728         }
3729
3730         /// <summary>
3731         /// Gets/Sets the minimum size an view can be assigned in size negotiation.
3732         /// </summary>
3733         public Size2D MinimumSize
3734         {
3735             get
3736             {
3737                 Size2D temp = new Size2D(0, 0);
3738                 GetProperty(View.Property.MINIMUM_SIZE).Get(temp);
3739                 return temp;
3740             }
3741             set
3742             {
3743                 SetProperty(View.Property.MINIMUM_SIZE, new Tizen.NUI.PropertyValue(value));
3744             }
3745         }
3746
3747         /// <summary>
3748         /// Gets/Sets the maximum size an view can be assigned in size negotiation.
3749         /// </summary>
3750         public Size2D MaximumSize
3751         {
3752             get
3753             {
3754                 Size2D temp = new Size2D(0, 0);
3755                 GetProperty(View.Property.MAXIMUM_SIZE).Get(temp);
3756                 return temp;
3757             }
3758             set
3759             {
3760                 SetProperty(View.Property.MAXIMUM_SIZE, new Tizen.NUI.PropertyValue(value));
3761             }
3762         }
3763
3764         /// <summary>
3765         /// Gets/Sets whether a child view inherits it's parent's position.<br>
3766         /// Default is to inherit.<br>
3767         /// 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 anchor point of the view.<br>
3768         /// </summary>
3769         public bool InheritPosition
3770         {
3771             get
3772             {
3773                 bool temp = false;
3774                 GetProperty(View.Property.INHERIT_POSITION).Get(ref temp);
3775                 return temp;
3776             }
3777             set
3778             {
3779                 SetProperty(View.Property.INHERIT_POSITION, new Tizen.NUI.PropertyValue(value));
3780             }
3781         }
3782
3783         /// <summary>
3784         /// Gets/Sets clipping behavior(mode) of it's children.
3785         /// </summary>
3786         public ClippingModeType ClippingMode
3787         {
3788             get
3789             {
3790                 string temp;
3791                 if (GetProperty(View.Property.CLIPPING_MODE).Get(out temp) == false)
3792                 {
3793 #if DEBUG_ON
3794                     Tizen.Log.Error("NUI", "ClippingMode get error!");
3795 #endif
3796                 }
3797                 switch (temp)
3798                 {
3799                     case "DISABLED":
3800                     return ClippingModeType.Disabled;
3801                     case "CLIP_CHILDREN":
3802                     return ClippingModeType.ClipChildren;
3803                     default:
3804                     return ClippingModeType.Disabled;
3805                 }
3806             }
3807             set
3808             {
3809                 SetProperty(View.Property.CLIPPING_MODE, new Tizen.NUI.PropertyValue((int)value));
3810             }
3811         }
3812     }
3813
3814 }