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