[NUI] Remove OnAccessibilityTouch binding (#1914)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / ViewImpl.cs
1 /*
2  * Copyright(c) 2020 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 using System;
19 using System.ComponentModel;
20 using System.Reflection;
21 using Tizen.NUI.BaseComponents;
22
23 namespace Tizen.NUI
24 {
25     internal class ViewImpl : CustomActorImpl
26     {
27
28         internal ViewImpl(global::System.IntPtr cPtr, bool cMemoryOwn) : base(Interop.ViewImpl.ViewImpl_SWIGUpcast(cPtr), cMemoryOwn)
29         {
30         }
31
32         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ViewImpl obj)
33         {
34             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
35         }
36
37         protected override void ReleaseSwigCPtr(System.Runtime.InteropServices.HandleRef swigCPtr)
38         {
39             throw new global::System.MethodAccessException("C++ destructor does not have public access");
40         }
41
42         public static View New()
43         {
44             View ret = new View(Interop.ViewImpl.ViewImpl_New(), true);
45             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
46             return ret;
47         }
48
49         public void SetStyleName(string styleName)
50         {
51             Interop.ViewImpl.ViewImpl_SetStyleName(swigCPtr, styleName);
52             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
53         }
54
55         public string GetStyleName()
56         {
57             string ret = Interop.ViewImpl.ViewImpl_GetStyleName(swigCPtr);
58             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
59             return ret;
60         }
61
62         public void SetBackgroundColor(Vector4 color)
63         {
64             Interop.ViewImpl.ViewImpl_SetBackgroundColor(swigCPtr, Vector4.getCPtr(color));
65             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
66         }
67
68         public Vector4 GetBackgroundColor()
69         {
70             Vector4 ret = new Vector4(Interop.ViewImpl.ViewImpl_GetBackgroundColor(swigCPtr), true);
71             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
72             return ret;
73         }
74         public void SetBackground(PropertyMap map)
75         {
76             Interop.ViewImpl.ViewImpl_SetBackground(swigCPtr, PropertyMap.getCPtr(map));
77             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
78         }
79
80         public void ClearBackground()
81         {
82             Interop.ViewImpl.ViewImpl_ClearBackground(swigCPtr);
83             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
84         }
85
86         public void EnableGestureDetection(Gesture.GestureType type)
87         {
88             Interop.ViewImpl.ViewImpl_EnableGestureDetection(swigCPtr, (int)type);
89             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
90         }
91
92         public void DisableGestureDetection(Gesture.GestureType type)
93         {
94             Interop.ViewImpl.ViewImpl_DisableGestureDetection(swigCPtr, (int)type);
95             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
96         }
97
98         public PinchGestureDetector GetPinchGestureDetector()
99         {
100             PinchGestureDetector ret = new PinchGestureDetector(Interop.ViewImpl.ViewImpl_GetPinchGestureDetector(swigCPtr), true);
101             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
102             return ret;
103         }
104
105         public PanGestureDetector GetPanGestureDetector()
106         {
107             PanGestureDetector ret = new PanGestureDetector(Interop.ViewImpl.ViewImpl_GetPanGestureDetector(swigCPtr), true);
108             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
109             return ret;
110         }
111
112         public TapGestureDetector GetTapGestureDetector()
113         {
114             TapGestureDetector ret = new TapGestureDetector(Interop.ViewImpl.ViewImpl_GetTapGestureDetector(swigCPtr), true);
115             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
116             return ret;
117         }
118
119         public LongPressGestureDetector GetLongPressGestureDetector()
120         {
121             LongPressGestureDetector ret = new LongPressGestureDetector(Interop.ViewImpl.ViewImpl_GetLongPressGestureDetector(swigCPtr), true);
122             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
123             return ret;
124         }
125
126         public void SetKeyboardNavigationSupport(bool isSupported)
127         {
128             Interop.ViewImpl.ViewImpl_SetKeyboardNavigationSupport(swigCPtr, isSupported);
129             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
130         }
131
132         public bool IsKeyboardNavigationSupported()
133         {
134             bool ret = Interop.ViewImpl.ViewImpl_IsKeyboardNavigationSupported(swigCPtr);
135             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
136             return ret;
137         }
138
139         public void SetKeyInputFocus()
140         {
141             Interop.ViewImpl.ViewImpl_SetKeyInputFocus(swigCPtr);
142             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
143         }
144
145         public bool HasKeyInputFocus()
146         {
147             bool ret = Interop.ViewImpl.ViewImpl_HasKeyInputFocus(swigCPtr);
148             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
149             return ret;
150         }
151
152         public void ClearKeyInputFocus()
153         {
154             Interop.ViewImpl.ViewImpl_ClearKeyInputFocus(swigCPtr);
155             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
156         }
157
158         public void SetAsFocusGroup(bool isFocusGroup)
159         {
160             Interop.ViewImpl.ViewImpl_SetAsKeyboardFocusGroup(swigCPtr, isFocusGroup);
161             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
162         }
163
164         public bool IsFocusGroup()
165         {
166             bool ret = Interop.ViewImpl.ViewImpl_IsKeyboardFocusGroup(swigCPtr);
167             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
168             return ret;
169         }
170
171         /// <summary>
172         /// [Obsolete("Please do not use! this will be deprecated")]
173         /// </summary>
174         /// Please do not use! this will be deprecated!
175         /// <since_tizen> 5 </since_tizen>
176         [Obsolete("Please do not use! this will be deprecated.")]
177         [EditorBrowsable(EditorBrowsableState.Never)]
178         public void AccessibilityActivate()
179         {
180             Interop.ViewImpl.ViewImpl_AccessibilityActivate(swigCPtr);
181             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
182         }
183
184         /// <summary>
185         /// [Obsolete("Please do not use! this will be deprecated")]
186         /// </summary>
187         /// Please do not use! this will be deprecated!
188         /// <since_tizen> 5 </since_tizen>
189         [Obsolete("Please do not use! this will be deprecated.")]
190         [EditorBrowsable(EditorBrowsableState.Never)]
191         public void KeyboardEnter()
192         {
193             Interop.ViewImpl.ViewImpl_KeyboardEnter(swigCPtr);
194             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
195         }
196
197         internal ControlKeySignal KeyEventSignal()
198         {
199             ControlKeySignal ret = new ControlKeySignal(Interop.ViewImplSignal.ViewImpl_KeyEventSignal(swigCPtr), false);
200             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
201             return ret;
202         }
203
204         internal KeyInputFocusSignal KeyInputFocusGainedSignal()
205         {
206             KeyInputFocusSignal ret = new KeyInputFocusSignal(Interop.ViewImplSignal.ViewImpl_KeyInputFocusGainedSignal(swigCPtr), false);
207             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
208             return ret;
209         }
210
211         internal KeyInputFocusSignal KeyInputFocusLostSignal()
212         {
213             KeyInputFocusSignal ret = new KeyInputFocusSignal(Interop.ViewImplSignal.ViewImpl_KeyInputFocusLostSignal(swigCPtr), false);
214             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
215             return ret;
216         }
217
218         /// <summary>
219         /// [Obsolete("Please do not use! this will be deprecated")]
220         /// </summary>
221         /// Please do not use! this will be deprecated!
222         /// <since_tizen> 5 </since_tizen>
223         [Obsolete("Please do not use! this will be deprecated.")]
224         [EditorBrowsable(EditorBrowsableState.Never)]
225         public bool EmitKeyEventSignal(Key arg0)
226         {
227             bool ret = Interop.ViewImplSignal.ViewImpl_EmitKeyEventSignal(swigCPtr, Key.getCPtr(arg0));
228             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
229             return ret;
230         }
231
232         protected virtual new void OnSceneConnection(int depth)
233         {
234             if (SwigDerivedClassHasMethod("OnSceneConnection", swigMethodTypes0)) Interop.ViewImplSignal.ViewImpl_OnSceneConnectionSwigExplicitViewImpl(swigCPtr, depth); else Interop.ViewImplSignal.ViewImpl_OnSceneConnection(swigCPtr, depth);
235             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
236         }
237
238         protected virtual new void OnSceneDisconnection()
239         {
240             if (SwigDerivedClassHasMethod("OnSceneDisconnection", swigMethodTypes1)) Interop.ViewImplSignal.ViewImpl_OnSceneDisconnectionSwigExplicitViewImpl(swigCPtr); else Interop.ViewImplSignal.ViewImpl_OnSceneDisconnection(swigCPtr);
241             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
242         }
243
244         protected virtual new void OnChildAdd(View child)
245         {
246             if (SwigDerivedClassHasMethod("OnChildAdd", swigMethodTypes2)) Interop.ViewImplSignal.ViewImpl_OnChildAddSwigExplicitViewImpl(swigCPtr, View.getCPtr(child)); else Interop.ViewImplSignal.ViewImpl_OnChildAdd(swigCPtr, View.getCPtr(child));
247             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
248         }
249
250         protected virtual new void OnChildRemove(View child)
251         {
252             if (SwigDerivedClassHasMethod("OnChildRemove", swigMethodTypes3)) Interop.ViewImplSignal.ViewImpl_OnChildRemoveSwigExplicitViewImpl(swigCPtr, View.getCPtr(child)); else Interop.ViewImplSignal.ViewImpl_OnChildRemove(swigCPtr, View.getCPtr(child));
253             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
254         }
255
256         protected virtual new void OnPropertySet(int index, PropertyValue propertyValue)
257         {
258             if (SwigDerivedClassHasMethod("OnPropertySet", swigMethodTypes4)) Interop.ViewImplSignal.ViewImpl_OnPropertySetSwigExplicitViewImpl(swigCPtr, index, PropertyValue.getCPtr(propertyValue)); else Interop.ViewImplSignal.ViewImpl_OnPropertySet(swigCPtr, index, PropertyValue.getCPtr(propertyValue));
259             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
260         }
261
262         protected virtual new void OnSizeSet(Vector3 targetSize)
263         {
264             if (SwigDerivedClassHasMethod("OnSizeSet", swigMethodTypes5)) Interop.ViewImplSignal.ViewImpl_OnSizeSetSwigExplicitViewImpl(swigCPtr, Vector3.getCPtr(targetSize)); else Interop.ViewImplSignal.ViewImpl_OnSizeSet(swigCPtr, Vector3.getCPtr(targetSize));
265             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
266         }
267
268         protected virtual new void OnSizeAnimation(Animation animation, Vector3 targetSize)
269         {
270             if (SwigDerivedClassHasMethod("OnSizeAnimation", swigMethodTypes6)) Interop.ViewImplSignal.ViewImpl_OnSizeAnimationSwigExplicitViewImpl(swigCPtr, Animation.getCPtr(animation), Vector3.getCPtr(targetSize)); else Interop.ViewImplSignal.ViewImpl_OnSizeAnimation(swigCPtr, Animation.getCPtr(animation), Vector3.getCPtr(targetSize));
271             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
272         }
273
274         internal virtual new bool OnTouchEvent(SWIGTYPE_p_Dali__TouchEvent arg0)
275         {
276             bool ret = (SwigDerivedClassHasMethod("OnTouchEvent", swigMethodTypes7) ? Interop.ViewImplSignal.ViewImpl_OnTouchEventSwigExplicitViewImpl(swigCPtr, SWIGTYPE_p_Dali__TouchEvent.getCPtr(arg0)) : Interop.ViewImplSignal.ViewImpl_OnTouchEvent(swigCPtr, SWIGTYPE_p_Dali__TouchEvent.getCPtr(arg0)));
277             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
278             return ret;
279         }
280
281         protected virtual new bool OnHoverEvent(Hover arg0)
282         {
283             bool ret = (SwigDerivedClassHasMethod("OnHoverEvent", swigMethodTypes8) ? Interop.ViewImplSignal.ViewImpl_OnHoverEventSwigExplicitViewImpl(swigCPtr, Hover.getCPtr(arg0)) : Interop.ViewImplSignal.ViewImpl_OnHoverEvent(swigCPtr, Hover.getCPtr(arg0)));
284             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
285             return ret;
286         }
287
288         protected virtual new bool OnKeyEvent(Key arg0)
289         {
290             bool ret = (SwigDerivedClassHasMethod("OnKeyEvent", swigMethodTypes9) ? Interop.ViewImplSignal.ViewImpl_OnKeyEventSwigExplicitViewImpl(swigCPtr, Key.getCPtr(arg0)) : Interop.ViewImplSignal.ViewImpl_OnKeyEvent(swigCPtr, Key.getCPtr(arg0)));
291             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
292             return ret;
293         }
294
295         protected virtual new bool OnWheelEvent(Wheel arg0)
296         {
297             bool ret = (SwigDerivedClassHasMethod("OnWheelEvent", swigMethodTypes10) ? Interop.ViewImplSignal.ViewImpl_OnWheelEventSwigExplicitViewImpl(swigCPtr, Wheel.getCPtr(arg0)) : Interop.ViewImplSignal.ViewImpl_OnWheelEvent(swigCPtr, Wheel.getCPtr(arg0)));
298             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
299             return ret;
300         }
301
302         protected virtual new void OnRelayout(Vector2 size, RelayoutContainer container)
303         {
304             if (SwigDerivedClassHasMethod("OnRelayout", swigMethodTypes11)) Interop.ViewImplSignal.ViewImpl_OnRelayoutSwigExplicitViewImpl(swigCPtr, Vector2.getCPtr(size), RelayoutContainer.getCPtr(container)); else Interop.ViewImplSignal.ViewImpl_OnRelayout(swigCPtr, Vector2.getCPtr(size), RelayoutContainer.getCPtr(container));
305             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
306         }
307
308         protected virtual new void OnSetResizePolicy(ResizePolicyType policy, DimensionType dimension)
309         {
310             if (SwigDerivedClassHasMethod("OnSetResizePolicy", swigMethodTypes12)) Interop.ViewImplSignal.ViewImpl_OnSetResizePolicySwigExplicitViewImpl(swigCPtr, (int)policy, (int)dimension); else Interop.ViewImplSignal.ViewImpl_OnSetResizePolicy(swigCPtr, (int)policy, (int)dimension);
311             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
312         }
313
314         protected virtual new Vector3 GetNaturalSize()
315         {
316             Vector3 ret = new Vector3((SwigDerivedClassHasMethod("GetNaturalSize", swigMethodTypes13) ? Interop.ViewImpl.ViewImpl_GetNaturalSizeSwigExplicitViewImpl(swigCPtr) : Interop.ViewImpl.ViewImpl_GetNaturalSize(swigCPtr)), true);
317             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
318             return ret;
319         }
320
321         protected virtual new float CalculateChildSize(View child, DimensionType dimension)
322         {
323             float ret = (SwigDerivedClassHasMethod("CalculateChildSize", swigMethodTypes14) ? Interop.ViewImpl.ViewImpl_CalculateChildSizeSwigExplicitViewImpl(swigCPtr, View.getCPtr(child), (int)dimension) : Interop.ViewImpl.ViewImpl_CalculateChildSize(swigCPtr, View.getCPtr(child), (int)dimension));
324             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
325             return ret;
326         }
327
328         protected virtual new float GetHeightForWidth(float width)
329         {
330             float ret = (SwigDerivedClassHasMethod("GetHeightForWidth", swigMethodTypes15) ? Interop.ViewImpl.ViewImpl_GetHeightForWidthSwigExplicitViewImpl(swigCPtr, width) : Interop.ViewImpl.ViewImpl_GetHeightForWidth(swigCPtr, width));
331             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
332             return ret;
333         }
334
335         protected virtual new float GetWidthForHeight(float height)
336         {
337             float ret = (SwigDerivedClassHasMethod("GetWidthForHeight", swigMethodTypes16) ? Interop.ViewImpl.ViewImpl_GetWidthForHeightSwigExplicitViewImpl(swigCPtr, height) : Interop.ViewImpl.ViewImpl_GetWidthForHeight(swigCPtr, height));
338             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
339             return ret;
340         }
341
342         protected virtual new bool RelayoutDependentOnChildren(DimensionType dimension)
343         {
344             bool ret = (SwigDerivedClassHasMethod("RelayoutDependentOnChildren", swigMethodTypes17) ? Interop.ViewImpl.ViewImpl_RelayoutDependentOnChildrenSwigExplicitViewImpl__SWIG_0(swigCPtr, (int)dimension) : Interop.ViewImpl.ViewImpl_RelayoutDependentOnChildren__SWIG_0(swigCPtr, (int)dimension));
345             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
346             return ret;
347         }
348
349         protected virtual new bool RelayoutDependentOnChildren()
350         {
351             bool ret = (SwigDerivedClassHasMethod("RelayoutDependentOnChildren", swigMethodTypes18) ? Interop.ViewImpl.ViewImpl_RelayoutDependentOnChildrenSwigExplicitViewImpl__SWIG_1(swigCPtr) : Interop.ViewImpl.ViewImpl_RelayoutDependentOnChildren__SWIG_1(swigCPtr));
352             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
353             return ret;
354         }
355
356         protected virtual new void OnCalculateRelayoutSize(DimensionType dimension)
357         {
358             if (SwigDerivedClassHasMethod("OnCalculateRelayoutSize", swigMethodTypes19)) Interop.ViewImplSignal.ViewImpl_OnCalculateRelayoutSizeSwigExplicitViewImpl(swigCPtr, (int)dimension); else Interop.ViewImplSignal.ViewImpl_OnCalculateRelayoutSize(swigCPtr, (int)dimension);
359             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
360         }
361
362         protected virtual new void OnLayoutNegotiated(float size, DimensionType dimension)
363         {
364             if (SwigDerivedClassHasMethod("OnLayoutNegotiated", swigMethodTypes20)) Interop.ViewImplSignal.ViewImpl_OnLayoutNegotiatedSwigExplicitViewImpl(swigCPtr, size, (int)dimension); else Interop.ViewImplSignal.ViewImpl_OnLayoutNegotiated(swigCPtr, size, (int)dimension);
365             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
366         }
367
368         public virtual void OnInitialize()
369         {
370             if (SwigDerivedClassHasMethod("OnInitialize", swigMethodTypes21)) Interop.ViewImplSignal.ViewImpl_OnInitializeSwigExplicitViewImpl(swigCPtr); else Interop.ViewImplSignal.ViewImpl_OnInitialize(swigCPtr);
371             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
372         }
373
374         public virtual void OnStyleChange(StyleManager styleManager, StyleChangeType change)
375         {
376             if (SwigDerivedClassHasMethod("OnStyleChange", swigMethodTypes24)) Interop.ViewImplSignal.ViewImpl_OnStyleChangeSwigExplicitViewImpl(swigCPtr, StyleManager.getCPtr(styleManager), (int)change); else Interop.ViewImplSignal.ViewImpl_OnStyleChange(swigCPtr, StyleManager.getCPtr(styleManager), (int)change);
377             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
378         }
379
380         public virtual bool OnAccessibilityActivated()
381         {
382             bool ret = (SwigDerivedClassHasMethod("OnAccessibilityActivated", swigMethodTypes25) ? Interop.ViewImplSignal.ViewImpl_OnAccessibilityActivatedSwigExplicitViewImpl(swigCPtr) : Interop.ViewImplSignal.ViewImpl_OnAccessibilityActivated(swigCPtr));
383             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
384             return ret;
385         }
386
387         public virtual bool OnAccessibilityPan(PanGesture gesture)
388         {
389             bool ret = (SwigDerivedClassHasMethod("OnAccessibilityPan", swigMethodTypes26) ? Interop.ViewImplSignal.ViewImpl_OnAccessibilityPanSwigExplicitViewImpl(swigCPtr, PanGesture.getCPtr(gesture)) : Interop.ViewImplSignal.ViewImpl_OnAccessibilityPan(swigCPtr, PanGesture.getCPtr(gesture)));
390             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
391             return ret;
392         }
393
394         public virtual bool OnAccessibilityValueChange(bool isIncrease)
395         {
396             bool ret = (SwigDerivedClassHasMethod("OnAccessibilityValueChange", swigMethodTypes28) ? Interop.ViewImplSignal.ViewImpl_OnAccessibilityValueChangeSwigExplicitViewImpl(swigCPtr, isIncrease) : Interop.ViewImplSignal.ViewImpl_OnAccessibilityValueChange(swigCPtr, isIncrease));
397             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
398             return ret;
399         }
400
401         public virtual bool OnAccessibilityZoom()
402         {
403             bool ret = (SwigDerivedClassHasMethod("OnAccessibilityZoom", swigMethodTypes29) ? Interop.ViewImplSignal.ViewImpl_OnAccessibilityZoomSwigExplicitViewImpl(swigCPtr) : Interop.ViewImplSignal.ViewImpl_OnAccessibilityZoom(swigCPtr));
404             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
405             return ret;
406         }
407
408         public virtual void OnKeyInputFocusGained()
409         {
410             if (SwigDerivedClassHasMethod("OnKeyInputFocusGained", swigMethodTypes30)) Interop.ViewImplSignal.ViewImpl_OnKeyInputFocusGainedSwigExplicitViewImpl(swigCPtr); else Interop.ViewImplSignal.ViewImpl_OnKeyInputFocusGained(swigCPtr);
411             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
412         }
413
414         public virtual void OnKeyInputFocusLost()
415         {
416             if (SwigDerivedClassHasMethod("OnKeyInputFocusLost", swigMethodTypes31)) Interop.ViewImplSignal.ViewImpl_OnKeyInputFocusLostSwigExplicitViewImpl(swigCPtr); else Interop.ViewImplSignal.ViewImpl_OnKeyInputFocusLost(swigCPtr);
417             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
418         }
419
420         public virtual View GetNextFocusableView(View currentFocusedView, View.FocusDirection direction, bool loopEnabled)
421         {
422             View ret = new View((SwigDerivedClassHasMethod("GetNextFocusableView", swigMethodTypes32) ? Interop.ViewImpl.ViewImpl_GetNextKeyboardFocusableActorSwigExplicitViewImpl(swigCPtr, View.getCPtr(currentFocusedView), (int)direction, loopEnabled) : Interop.ViewImpl.ViewImpl_GetNextKeyboardFocusableActor(swigCPtr, View.getCPtr(currentFocusedView), (int)direction, loopEnabled)), true);
423             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
424             return ret;
425         }
426
427         public virtual void OnFocusChangeCommitted(View commitedFocusableView)
428         {
429             if (SwigDerivedClassHasMethod("OnFocusChangeCommitted", swigMethodTypes33)) Interop.ViewImplSignal.ViewImpl_OnKeyboardFocusChangeCommittedSwigExplicitViewImpl(swigCPtr, View.getCPtr(commitedFocusableView)); else Interop.ViewImplSignal.ViewImpl_OnKeyboardFocusChangeCommitted(swigCPtr, View.getCPtr(commitedFocusableView));
430             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
431         }
432
433         public virtual bool OnKeyboardEnter()
434         {
435             bool ret = (SwigDerivedClassHasMethod("OnKeyboardEnter", swigMethodTypes34) ? Interop.ViewImplSignal.ViewImpl_OnKeyboardEnterSwigExplicitViewImpl(swigCPtr) : Interop.ViewImplSignal.ViewImpl_OnKeyboardEnter(swigCPtr));
436             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
437             return ret;
438         }
439
440         public virtual void OnPinch(PinchGesture pinch)
441         {
442             if (SwigDerivedClassHasMethod("OnPinch", swigMethodTypes35)) Interop.ViewImplSignal.ViewImpl_OnPinchSwigExplicitViewImpl(swigCPtr, PinchGesture.getCPtr(pinch)); else Interop.ViewImplSignal.ViewImpl_OnPinch(swigCPtr, PinchGesture.getCPtr(pinch));
443             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
444         }
445
446         public virtual void OnPan(PanGesture pan)
447         {
448             if (SwigDerivedClassHasMethod("OnPan", swigMethodTypes36)) Interop.ViewImplSignal.ViewImpl_OnPanSwigExplicitViewImpl(swigCPtr, PanGesture.getCPtr(pan)); else Interop.ViewImplSignal.ViewImpl_OnPan(swigCPtr, PanGesture.getCPtr(pan));
449             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
450         }
451
452         public virtual void OnTap(TapGesture tap)
453         {
454             if (SwigDerivedClassHasMethod("OnTap", swigMethodTypes37)) Interop.ViewImplSignal.ViewImpl_OnTapSwigExplicitViewImpl(swigCPtr, TapGesture.getCPtr(tap)); else Interop.ViewImplSignal.ViewImpl_OnTap(swigCPtr, TapGesture.getCPtr(tap));
455             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
456         }
457
458         public virtual void OnLongPress(LongPressGesture longPress)
459         {
460             if (SwigDerivedClassHasMethod("OnLongPress", swigMethodTypes38)) Interop.ViewImplSignal.ViewImpl_OnLongPressSwigExplicitViewImpl(swigCPtr, LongPressGesture.getCPtr(longPress)); else Interop.ViewImplSignal.ViewImpl_OnLongPress(swigCPtr, LongPressGesture.getCPtr(longPress));
461             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
462         }
463
464         internal virtual void SignalConnected(SlotObserver slotObserver, SWIGTYPE_p_Dali__CallbackBase callback)
465         {
466             if (SwigDerivedClassHasMethod("SignalConnected", swigMethodTypes39)) Interop.ViewImplSignal.ViewImpl_SignalConnectedSwigExplicitViewImpl(swigCPtr, SlotObserver.getCPtr(slotObserver), SWIGTYPE_p_Dali__CallbackBase.getCPtr(callback)); else Interop.ViewImplSignal.ViewImpl_SignalConnected(swigCPtr, SlotObserver.getCPtr(slotObserver), SWIGTYPE_p_Dali__CallbackBase.getCPtr(callback));
467             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
468         }
469
470         internal virtual void SignalDisconnected(SlotObserver slotObserver, SWIGTYPE_p_Dali__CallbackBase callback)
471         {
472             if (SwigDerivedClassHasMethod("SignalDisconnected", swigMethodTypes40)) Interop.ViewImplSignal.ViewImpl_SignalDisconnectedSwigExplicitViewImpl(swigCPtr, SlotObserver.getCPtr(slotObserver), SWIGTYPE_p_Dali__CallbackBase.getCPtr(callback)); else Interop.ViewImplSignal.ViewImpl_SignalDisconnected(swigCPtr, SlotObserver.getCPtr(slotObserver), SWIGTYPE_p_Dali__CallbackBase.getCPtr(callback));
473             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
474         }
475
476         private void SwigDirectorConnect()
477         {
478             if (SwigDerivedClassHasMethod("OnSceneConnection", swigMethodTypes0))
479                 swigDelegate0 = new SwigDelegateViewImpl_0(SwigDirectorOnSceneConnection);
480             if (SwigDerivedClassHasMethod("OnSceneDisconnection", swigMethodTypes1))
481                 swigDelegate1 = new SwigDelegateViewImpl_1(SwigDirectorOnSceneDisconnection);
482             if (SwigDerivedClassHasMethod("OnChildAdd", swigMethodTypes2))
483                 swigDelegate2 = new SwigDelegateViewImpl_2(SwigDirectorOnChildAdd);
484             if (SwigDerivedClassHasMethod("OnChildRemove", swigMethodTypes3))
485                 swigDelegate3 = new SwigDelegateViewImpl_3(SwigDirectorOnChildRemove);
486             if (SwigDerivedClassHasMethod("OnPropertySet", swigMethodTypes4))
487                 swigDelegate4 = new SwigDelegateViewImpl_4(SwigDirectorOnPropertySet);
488             if (SwigDerivedClassHasMethod("OnSizeSet", swigMethodTypes5))
489                 swigDelegate5 = new SwigDelegateViewImpl_5(SwigDirectorOnSizeSet);
490             if (SwigDerivedClassHasMethod("OnSizeAnimation", swigMethodTypes6))
491                 swigDelegate6 = new SwigDelegateViewImpl_6(SwigDirectorOnSizeAnimation);
492             if (SwigDerivedClassHasMethod("OnTouchEvent", swigMethodTypes7))
493                 swigDelegate7 = new SwigDelegateViewImpl_7(SwigDirectorOnTouchEvent);
494             if (SwigDerivedClassHasMethod("OnHoverEvent", swigMethodTypes8))
495                 swigDelegate8 = new SwigDelegateViewImpl_8(SwigDirectorOnHoverEvent);
496             if (SwigDerivedClassHasMethod("OnKeyEvent", swigMethodTypes9))
497                 swigDelegate9 = new SwigDelegateViewImpl_9(SwigDirectorOnKeyEvent);
498             if (SwigDerivedClassHasMethod("OnWheelEvent", swigMethodTypes10))
499                 swigDelegate10 = new SwigDelegateViewImpl_10(SwigDirectorOnWheelEvent);
500             if (SwigDerivedClassHasMethod("OnRelayout", swigMethodTypes11))
501                 swigDelegate11 = new SwigDelegateViewImpl_11(SwigDirectorOnRelayout);
502             if (SwigDerivedClassHasMethod("OnSetResizePolicy", swigMethodTypes12))
503                 swigDelegate12 = new SwigDelegateViewImpl_12(SwigDirectorOnSetResizePolicy);
504             if (SwigDerivedClassHasMethod("GetNaturalSize", swigMethodTypes13))
505                 swigDelegate13 = new SwigDelegateViewImpl_13(SwigDirectorGetNaturalSize);
506             if (SwigDerivedClassHasMethod("CalculateChildSize", swigMethodTypes14))
507                 swigDelegate14 = new SwigDelegateViewImpl_14(SwigDirectorCalculateChildSize);
508             if (SwigDerivedClassHasMethod("GetHeightForWidth", swigMethodTypes15))
509                 swigDelegate15 = new SwigDelegateViewImpl_15(SwigDirectorGetHeightForWidth);
510             if (SwigDerivedClassHasMethod("GetWidthForHeight", swigMethodTypes16))
511                 swigDelegate16 = new SwigDelegateViewImpl_16(SwigDirectorGetWidthForHeight);
512             if (SwigDerivedClassHasMethod("RelayoutDependentOnChildren", swigMethodTypes17))
513                 swigDelegate17 = new SwigDelegateViewImpl_17(SwigDirectorRelayoutDependentOnChildren__SWIG_0);
514             if (SwigDerivedClassHasMethod("RelayoutDependentOnChildren", swigMethodTypes18))
515                 swigDelegate18 = new SwigDelegateViewImpl_18(SwigDirectorRelayoutDependentOnChildren__SWIG_1);
516             if (SwigDerivedClassHasMethod("OnCalculateRelayoutSize", swigMethodTypes19))
517                 swigDelegate19 = new SwigDelegateViewImpl_19(SwigDirectorOnCalculateRelayoutSize);
518             if (SwigDerivedClassHasMethod("OnLayoutNegotiated", swigMethodTypes20))
519                 swigDelegate20 = new SwigDelegateViewImpl_20(SwigDirectorOnLayoutNegotiated);
520             if (SwigDerivedClassHasMethod("OnInitialize", swigMethodTypes21))
521                 swigDelegate21 = new SwigDelegateViewImpl_21(SwigDirectorOnInitialize);
522             if (SwigDerivedClassHasMethod("OnStyleChange", swigMethodTypes24))
523                 swigDelegate24 = new SwigDelegateViewImpl_24(SwigDirectorOnStyleChange);
524             if (SwigDerivedClassHasMethod("OnAccessibilityActivated", swigMethodTypes25))
525                 swigDelegate25 = new SwigDelegateViewImpl_25(SwigDirectorOnAccessibilityActivated);
526             if (SwigDerivedClassHasMethod("OnAccessibilityPan", swigMethodTypes26))
527                 swigDelegate26 = new SwigDelegateViewImpl_26(SwigDirectorOnAccessibilityPan);
528             if (SwigDerivedClassHasMethod("OnAccessibilityValueChange", swigMethodTypes28))
529                 swigDelegate28 = new SwigDelegateViewImpl_28(SwigDirectorOnAccessibilityValueChange);
530             if (SwigDerivedClassHasMethod("OnAccessibilityZoom", swigMethodTypes29))
531                 swigDelegate29 = new SwigDelegateViewImpl_29(SwigDirectorOnAccessibilityZoom);
532             if (SwigDerivedClassHasMethod("OnKeyInputFocusGained", swigMethodTypes30))
533                 swigDelegate30 = new SwigDelegateViewImpl_30(SwigDirectorOnKeyInputFocusGained);
534             if (SwigDerivedClassHasMethod("OnKeyInputFocusLost", swigMethodTypes31))
535                 swigDelegate31 = new SwigDelegateViewImpl_31(SwigDirectorOnKeyInputFocusLost);
536             if (SwigDerivedClassHasMethod("GetNextFocusableView", swigMethodTypes32))
537                 swigDelegate32 = new SwigDelegateViewImpl_32(SwigDirectorGetNextKeyboardFocusableView);
538             if (SwigDerivedClassHasMethod("OnFocusChangeCommitted", swigMethodTypes33))
539                 swigDelegate33 = new SwigDelegateViewImpl_33(SwigDirectorOnKeyboardFocusChangeCommitted);
540             if (SwigDerivedClassHasMethod("OnKeyboardEnter", swigMethodTypes34))
541                 swigDelegate34 = new SwigDelegateViewImpl_34(SwigDirectorOnKeyboardEnter);
542             if (SwigDerivedClassHasMethod("OnPinch", swigMethodTypes35))
543                 swigDelegate35 = new SwigDelegateViewImpl_35(SwigDirectorOnPinch);
544             if (SwigDerivedClassHasMethod("OnPan", swigMethodTypes36))
545                 swigDelegate36 = new SwigDelegateViewImpl_36(SwigDirectorOnPan);
546             if (SwigDerivedClassHasMethod("OnTap", swigMethodTypes37))
547                 swigDelegate37 = new SwigDelegateViewImpl_37(SwigDirectorOnTap);
548             if (SwigDerivedClassHasMethod("OnLongPress", swigMethodTypes38))
549                 swigDelegate38 = new SwigDelegateViewImpl_38(SwigDirectorOnLongPress);
550             if (SwigDerivedClassHasMethod("SignalConnected", swigMethodTypes39))
551                 swigDelegate39 = new SwigDelegateViewImpl_39(SwigDirectorSignalConnected);
552             if (SwigDerivedClassHasMethod("SignalDisconnected", swigMethodTypes40))
553                 swigDelegate40 = new SwigDelegateViewImpl_40(SwigDirectorSignalDisconnected);
554             Interop.ViewImpl.ViewImpl_director_connect(swigCPtr, swigDelegate0, swigDelegate1, swigDelegate2, swigDelegate3, swigDelegate4, swigDelegate5, swigDelegate6, swigDelegate7, swigDelegate8, swigDelegate9, swigDelegate10, swigDelegate11, swigDelegate12, swigDelegate13, swigDelegate14, swigDelegate15, swigDelegate16, swigDelegate17, swigDelegate18, swigDelegate19, swigDelegate20, swigDelegate21, swigDelegate24, swigDelegate25, swigDelegate26, null, swigDelegate28, swigDelegate29, swigDelegate30, swigDelegate31, swigDelegate32, swigDelegate33, swigDelegate34, swigDelegate35, swigDelegate36, swigDelegate37, swigDelegate38, swigDelegate39, swigDelegate40);
555         }
556
557
558         private bool SwigDerivedClassHasMethod(string methodName, global::System.Type[] methodTypes)
559         {
560             global::System.Reflection.MethodInfo methodInfo = this.GetType().GetMethod(methodName, methodTypes);
561             bool hasDerivedMethod = this.GetType().GetTypeInfo().IsSubclassOf(typeof(ViewImpl));
562
563             NUILog.Debug("hasDerivedMethod=" + hasDerivedMethod);
564
565             return hasDerivedMethod && (methodInfo != null);
566         }
567
568         private void SwigDirectorOnSceneConnection(int depth)
569         {
570             OnSceneConnection(depth);
571         }
572
573         private void SwigDirectorOnSceneDisconnection()
574         {
575             OnSceneDisconnection();
576         }
577
578         private void SwigDirectorOnChildAdd(global::System.IntPtr child)
579         {
580             View view = Registry.GetManagedBaseHandleFromNativePtr(child) as View;
581
582             if (view)
583             {
584                 OnChildAdd(view);
585             }
586         }
587
588         private void SwigDirectorOnChildRemove(global::System.IntPtr child)
589         {
590             View view = Registry.GetManagedBaseHandleFromNativePtr(child) as View;
591
592             if (view)
593             {
594                 OnChildRemove(view);
595             }
596         }
597
598         private void SwigDirectorOnPropertySet(int index, global::System.IntPtr propertyValue)
599         {
600             OnPropertySet(index, new PropertyValue(propertyValue, true));
601         }
602
603         private void SwigDirectorOnSizeSet(global::System.IntPtr targetSize)
604         {
605             OnSizeSet(new Vector3(targetSize, false));
606         }
607
608         private void SwigDirectorOnSizeAnimation(global::System.IntPtr animation, global::System.IntPtr targetSize)
609         {
610             OnSizeAnimation(new Animation(animation, false), new Vector3(targetSize, false));
611         }
612
613         private bool SwigDirectorOnTouchEvent(global::System.IntPtr arg0)
614         {
615             return OnTouchEvent(new SWIGTYPE_p_Dali__TouchEvent(arg0, false));
616         }
617
618         private bool SwigDirectorOnHoverEvent(global::System.IntPtr arg0)
619         {
620             return OnHoverEvent(new Hover(arg0, false));
621         }
622
623         private bool SwigDirectorOnKeyEvent(global::System.IntPtr arg0)
624         {
625             return OnKeyEvent(new Key(arg0, false));
626         }
627
628         private bool SwigDirectorOnWheelEvent(global::System.IntPtr arg0)
629         {
630             return OnWheelEvent(new Wheel(arg0, false));
631         }
632
633         private void SwigDirectorOnRelayout(global::System.IntPtr size, global::System.IntPtr container)
634         {
635             OnRelayout(new Vector2(size, false), new RelayoutContainer(container, false));
636         }
637
638         private void SwigDirectorOnSetResizePolicy(int policy, int dimension)
639         {
640             OnSetResizePolicy((ResizePolicyType)policy, (DimensionType)dimension);
641         }
642
643         private global::System.IntPtr SwigDirectorGetNaturalSize()
644         {
645             return Vector3.getCPtr(GetNaturalSize()).Handle;
646         }
647
648         private float SwigDirectorCalculateChildSize(global::System.IntPtr child, int dimension)
649         {
650             View view = Registry.GetManagedBaseHandleFromNativePtr(child) as View;
651             if (view)
652             {
653                 return CalculateChildSize(view, (DimensionType)dimension);
654             }
655             return 0.0f;
656         }
657
658         private float SwigDirectorGetHeightForWidth(float width)
659         {
660             return GetHeightForWidth(width);
661         }
662
663         private float SwigDirectorGetWidthForHeight(float height)
664         {
665             return GetWidthForHeight(height);
666         }
667
668         private bool SwigDirectorRelayoutDependentOnChildren__SWIG_0(int dimension)
669         {
670             return RelayoutDependentOnChildren((DimensionType)dimension);
671         }
672
673         private bool SwigDirectorRelayoutDependentOnChildren__SWIG_1()
674         {
675             return RelayoutDependentOnChildren();
676         }
677
678         private void SwigDirectorOnCalculateRelayoutSize(int dimension)
679         {
680             OnCalculateRelayoutSize((DimensionType)dimension);
681         }
682
683         private void SwigDirectorOnLayoutNegotiated(float size, int dimension)
684         {
685             OnLayoutNegotiated(size, (DimensionType)dimension);
686         }
687
688         private void SwigDirectorOnInitialize()
689         {
690             OnInitialize();
691         }
692
693         private void SwigDirectorOnStyleChange(global::System.IntPtr styleManager, int change)
694         {
695             StyleManager stManager = Registry.GetManagedBaseHandleFromNativePtr(styleManager) as StyleManager;
696             if (stManager)
697             {
698                 OnStyleChange(stManager, (StyleChangeType)change);
699             }
700         }
701
702         private bool SwigDirectorOnAccessibilityActivated()
703         {
704             return OnAccessibilityActivated();
705         }
706
707         private bool SwigDirectorOnAccessibilityPan(global::System.IntPtr gesture)
708         {
709             return OnAccessibilityPan(new PanGesture(gesture, true));
710         }
711
712         private bool SwigDirectorOnAccessibilityValueChange(bool isIncrease)
713         {
714             return OnAccessibilityValueChange(isIncrease);
715         }
716
717         private bool SwigDirectorOnAccessibilityZoom()
718         {
719             return OnAccessibilityZoom();
720         }
721
722         private void SwigDirectorOnKeyInputFocusGained()
723         {
724             OnKeyInputFocusGained();
725         }
726
727         private void SwigDirectorOnKeyInputFocusLost()
728         {
729             OnKeyInputFocusLost();
730         }
731
732         private global::System.IntPtr SwigDirectorGetNextKeyboardFocusableView(global::System.IntPtr currentFocusedView, int direction, bool loopEnabled)
733         {
734             return View.getCPtr(GetNextFocusableView(Registry.GetManagedBaseHandleFromNativePtr(currentFocusedView) as View, (View.FocusDirection)direction, loopEnabled)).Handle;
735         }
736
737         private void SwigDirectorOnKeyboardFocusChangeCommitted(global::System.IntPtr commitedFocusableView)
738         {
739             OnFocusChangeCommitted(Registry.GetManagedBaseHandleFromNativePtr(commitedFocusableView) as View);
740         }
741
742         private bool SwigDirectorOnKeyboardEnter()
743         {
744             return OnKeyboardEnter();
745         }
746
747         private void SwigDirectorOnPinch(global::System.IntPtr pinch)
748         {
749             OnPinch(new PinchGesture(pinch, false));
750         }
751
752         private void SwigDirectorOnPan(global::System.IntPtr pan)
753         {
754             OnPan(new PanGesture(pan, false));
755         }
756
757         private void SwigDirectorOnTap(global::System.IntPtr tap)
758         {
759             OnTap(new TapGesture(tap, false));
760         }
761
762         private void SwigDirectorOnLongPress(global::System.IntPtr longPress)
763         {
764             OnLongPress(new LongPressGesture(longPress, false));
765         }
766
767         private void SwigDirectorSignalConnected(global::System.IntPtr slotObserver, global::System.IntPtr callback)
768         {
769             SignalConnected((slotObserver == global::System.IntPtr.Zero) ? null : new SlotObserver(slotObserver, false), (callback == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_Dali__CallbackBase(callback, false));
770         }
771
772         private void SwigDirectorSignalDisconnected(global::System.IntPtr slotObserver, global::System.IntPtr callback)
773         {
774             SignalDisconnected((slotObserver == global::System.IntPtr.Zero) ? null : new SlotObserver(slotObserver, false), (callback == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_Dali__CallbackBase(callback, false));
775         }
776
777         /// <since_tizen> 3 </since_tizen>
778         public delegate void SwigDelegateViewImpl_0(int depth);
779         /// <since_tizen> 3 </since_tizen>
780         public delegate void SwigDelegateViewImpl_1();
781         /// <since_tizen> 3 </since_tizen>
782         public delegate void SwigDelegateViewImpl_2(global::System.IntPtr child);
783         /// <since_tizen> 3 </since_tizen>
784         public delegate void SwigDelegateViewImpl_3(global::System.IntPtr child);
785         /// <since_tizen> 3 </since_tizen>
786         public delegate void SwigDelegateViewImpl_4(int index, global::System.IntPtr propertyValue);
787         /// <since_tizen> 3 </since_tizen>
788         public delegate void SwigDelegateViewImpl_5(global::System.IntPtr targetSize);
789         /// <since_tizen> 3 </since_tizen>
790         public delegate void SwigDelegateViewImpl_6(global::System.IntPtr animation, global::System.IntPtr targetSize);
791         /// <since_tizen> 3 </since_tizen>
792         public delegate bool SwigDelegateViewImpl_7(global::System.IntPtr arg0);
793         /// <since_tizen> 3 </since_tizen>
794         public delegate bool SwigDelegateViewImpl_8(global::System.IntPtr arg0);
795         /// <since_tizen> 3 </since_tizen>
796         public delegate bool SwigDelegateViewImpl_9(global::System.IntPtr arg0);
797         /// <since_tizen> 3 </since_tizen>
798         public delegate bool SwigDelegateViewImpl_10(global::System.IntPtr arg0);
799         /// <since_tizen> 3 </since_tizen>
800         public delegate void SwigDelegateViewImpl_11(global::System.IntPtr size, global::System.IntPtr container);
801         /// <since_tizen> 3 </since_tizen>
802         public delegate void SwigDelegateViewImpl_12(int policy, int dimension);
803         /// <since_tizen> 3 </since_tizen>
804         public delegate global::System.IntPtr SwigDelegateViewImpl_13();
805         /// <since_tizen> 3 </since_tizen>
806         public delegate float SwigDelegateViewImpl_14(global::System.IntPtr child, int dimension);
807         /// <since_tizen> 3 </since_tizen>
808         public delegate float SwigDelegateViewImpl_15(float width);
809         /// <since_tizen> 3 </since_tizen>
810         public delegate float SwigDelegateViewImpl_16(float height);
811         /// <since_tizen> 3 </since_tizen>
812         public delegate bool SwigDelegateViewImpl_17(int dimension);
813         /// <since_tizen> 3 </since_tizen>
814         public delegate bool SwigDelegateViewImpl_18();
815         /// <since_tizen> 3 </since_tizen>
816         public delegate void SwigDelegateViewImpl_19(int dimension);
817         /// <since_tizen> 3 </since_tizen>
818         public delegate void SwigDelegateViewImpl_20(float size, int dimension);
819         /// <since_tizen> 3 </since_tizen>
820         public delegate void SwigDelegateViewImpl_21();
821         /// <since_tizen> 3 </since_tizen>
822         public delegate void SwigDelegateViewImpl_22(global::System.IntPtr child);
823         /// <since_tizen> 3 </since_tizen>
824         public delegate void SwigDelegateViewImpl_23(global::System.IntPtr child);
825         /// <since_tizen> 3 </since_tizen>
826         public delegate void SwigDelegateViewImpl_24(global::System.IntPtr styleManager, int change);
827         /// <since_tizen> 3 </since_tizen>
828         public delegate bool SwigDelegateViewImpl_25();
829         /// <since_tizen> 3 </since_tizen>
830         public delegate bool SwigDelegateViewImpl_26(global::System.IntPtr gesture);
831         /// <since_tizen> 3 </since_tizen>
832         public delegate bool SwigDelegateViewImpl_27(global::System.IntPtr touchEvent);
833         /// <since_tizen> 3 </since_tizen>
834         public delegate bool SwigDelegateViewImpl_28(bool isIncrease);
835         /// <since_tizen> 3 </since_tizen>
836         public delegate bool SwigDelegateViewImpl_29();
837         /// <since_tizen> 3 </since_tizen>
838         public delegate void SwigDelegateViewImpl_30();
839         /// <since_tizen> 3 </since_tizen>
840         public delegate void SwigDelegateViewImpl_31();
841         /// <since_tizen> 3 </since_tizen>
842         public delegate global::System.IntPtr SwigDelegateViewImpl_32(global::System.IntPtr currentFocusedActor, int direction, bool loopEnabled);
843         /// <since_tizen> 3 </since_tizen>
844         public delegate void SwigDelegateViewImpl_33(global::System.IntPtr commitedFocusableActor);
845         /// <since_tizen> 3 </since_tizen>
846         public delegate bool SwigDelegateViewImpl_34();
847         /// <since_tizen> 3 </since_tizen>
848         public delegate void SwigDelegateViewImpl_35(global::System.IntPtr pinch);
849         /// <since_tizen> 3 </since_tizen>
850         public delegate void SwigDelegateViewImpl_36(global::System.IntPtr pan);
851         /// <since_tizen> 3 </since_tizen>
852         public delegate void SwigDelegateViewImpl_37(global::System.IntPtr tap);
853         /// <since_tizen> 3 </since_tizen>
854         public delegate void SwigDelegateViewImpl_38(global::System.IntPtr longPress);
855         /// <since_tizen> 3 </since_tizen>
856         public delegate void SwigDelegateViewImpl_39(global::System.IntPtr slotObserver, global::System.IntPtr callback);
857         /// <since_tizen> 3 </since_tizen>
858         public delegate void SwigDelegateViewImpl_40(global::System.IntPtr slotObserver, global::System.IntPtr callback);
859
860         private SwigDelegateViewImpl_0 swigDelegate0;
861         private SwigDelegateViewImpl_1 swigDelegate1;
862         private SwigDelegateViewImpl_2 swigDelegate2;
863         private SwigDelegateViewImpl_3 swigDelegate3;
864         private SwigDelegateViewImpl_4 swigDelegate4;
865         private SwigDelegateViewImpl_5 swigDelegate5;
866         private SwigDelegateViewImpl_6 swigDelegate6;
867         private SwigDelegateViewImpl_7 swigDelegate7;
868         private SwigDelegateViewImpl_8 swigDelegate8;
869         private SwigDelegateViewImpl_9 swigDelegate9;
870         private SwigDelegateViewImpl_10 swigDelegate10;
871         private SwigDelegateViewImpl_11 swigDelegate11;
872         private SwigDelegateViewImpl_12 swigDelegate12;
873         private SwigDelegateViewImpl_13 swigDelegate13;
874         private SwigDelegateViewImpl_14 swigDelegate14;
875         private SwigDelegateViewImpl_15 swigDelegate15;
876         private SwigDelegateViewImpl_16 swigDelegate16;
877         private SwigDelegateViewImpl_17 swigDelegate17;
878         private SwigDelegateViewImpl_18 swigDelegate18;
879         private SwigDelegateViewImpl_19 swigDelegate19;
880         private SwigDelegateViewImpl_20 swigDelegate20;
881         private SwigDelegateViewImpl_21 swigDelegate21;
882         private SwigDelegateViewImpl_22 swigDelegate22;
883         private SwigDelegateViewImpl_23 swigDelegate23;
884         private SwigDelegateViewImpl_24 swigDelegate24;
885         private SwigDelegateViewImpl_25 swigDelegate25;
886         private SwigDelegateViewImpl_26 swigDelegate26;
887         private SwigDelegateViewImpl_28 swigDelegate28;
888         private SwigDelegateViewImpl_29 swigDelegate29;
889         private SwigDelegateViewImpl_30 swigDelegate30;
890         private SwigDelegateViewImpl_31 swigDelegate31;
891         private SwigDelegateViewImpl_32 swigDelegate32;
892         private SwigDelegateViewImpl_33 swigDelegate33;
893         private SwigDelegateViewImpl_34 swigDelegate34;
894         private SwigDelegateViewImpl_35 swigDelegate35;
895         private SwigDelegateViewImpl_36 swigDelegate36;
896         private SwigDelegateViewImpl_37 swigDelegate37;
897         private SwigDelegateViewImpl_38 swigDelegate38;
898         private SwigDelegateViewImpl_39 swigDelegate39;
899         private SwigDelegateViewImpl_40 swigDelegate40;
900
901         private static global::System.Type[] swigMethodTypes0 = new global::System.Type[] { typeof(int) };
902         private static global::System.Type[] swigMethodTypes1 = new global::System.Type[] { };
903         private static global::System.Type[] swigMethodTypes2 = new global::System.Type[] { typeof(View) };
904         private static global::System.Type[] swigMethodTypes3 = new global::System.Type[] { typeof(View) };
905         private static global::System.Type[] swigMethodTypes4 = new global::System.Type[] { typeof(int), typeof(PropertyValue) };
906         private static global::System.Type[] swigMethodTypes5 = new global::System.Type[] { typeof(Vector3) };
907         private static global::System.Type[] swigMethodTypes6 = new global::System.Type[] { typeof(Animation), typeof(Vector3) };
908         private static global::System.Type[] swigMethodTypes7 = new global::System.Type[] { typeof(SWIGTYPE_p_Dali__TouchEvent) };
909         private static global::System.Type[] swigMethodTypes8 = new global::System.Type[] { typeof(Hover) };
910         private static global::System.Type[] swigMethodTypes9 = new global::System.Type[] { typeof(Key) };
911         private static global::System.Type[] swigMethodTypes10 = new global::System.Type[] { typeof(Wheel) };
912         private static global::System.Type[] swigMethodTypes11 = new global::System.Type[] { typeof(Vector2), typeof(RelayoutContainer) };
913         private static global::System.Type[] swigMethodTypes12 = new global::System.Type[] { typeof(ResizePolicyType), typeof(DimensionType) };
914         private static global::System.Type[] swigMethodTypes13 = new global::System.Type[] { };
915         private static global::System.Type[] swigMethodTypes14 = new global::System.Type[] { typeof(View), typeof(DimensionType) };
916         private static global::System.Type[] swigMethodTypes15 = new global::System.Type[] { typeof(float) };
917         private static global::System.Type[] swigMethodTypes16 = new global::System.Type[] { typeof(float) };
918         private static global::System.Type[] swigMethodTypes17 = new global::System.Type[] { typeof(DimensionType) };
919         private static global::System.Type[] swigMethodTypes18 = new global::System.Type[] { };
920         private static global::System.Type[] swigMethodTypes19 = new global::System.Type[] { typeof(DimensionType) };
921         private static global::System.Type[] swigMethodTypes20 = new global::System.Type[] { typeof(float), typeof(DimensionType) };
922         private static global::System.Type[] swigMethodTypes21 = new global::System.Type[] { };
923         private static global::System.Type[] swigMethodTypes22 = new global::System.Type[] { typeof(View) };
924         private static global::System.Type[] swigMethodTypes23 = new global::System.Type[] { typeof(View) };
925         private static global::System.Type[] swigMethodTypes24 = new global::System.Type[] { typeof(StyleManager), typeof(StyleChangeType) };
926         private static global::System.Type[] swigMethodTypes25 = new global::System.Type[] { };
927         private static global::System.Type[] swigMethodTypes26 = new global::System.Type[] { typeof(PanGesture) };
928         private static global::System.Type[] swigMethodTypes27 = new global::System.Type[] { typeof(SWIGTYPE_p_Dali__TouchEvent) };
929         private static global::System.Type[] swigMethodTypes28 = new global::System.Type[] { typeof(bool) };
930         private static global::System.Type[] swigMethodTypes29 = new global::System.Type[] { };
931         private static global::System.Type[] swigMethodTypes30 = new global::System.Type[] { };
932         private static global::System.Type[] swigMethodTypes31 = new global::System.Type[] { };
933         private static global::System.Type[] swigMethodTypes32 = new global::System.Type[] { typeof(View), typeof(View.FocusDirection), typeof(bool) };
934         private static global::System.Type[] swigMethodTypes33 = new global::System.Type[] { typeof(View) };
935         private static global::System.Type[] swigMethodTypes34 = new global::System.Type[] { };
936         private static global::System.Type[] swigMethodTypes35 = new global::System.Type[] { typeof(PinchGesture) };
937         private static global::System.Type[] swigMethodTypes36 = new global::System.Type[] { typeof(PanGesture) };
938         private static global::System.Type[] swigMethodTypes37 = new global::System.Type[] { typeof(TapGesture) };
939         private static global::System.Type[] swigMethodTypes38 = new global::System.Type[] { typeof(LongPressGesture) };
940         private static global::System.Type[] swigMethodTypes39 = new global::System.Type[] { typeof(SlotObserver), typeof(SWIGTYPE_p_Dali__CallbackBase) };
941         private static global::System.Type[] swigMethodTypes40 = new global::System.Type[] { typeof(SlotObserver), typeof(SWIGTYPE_p_Dali__CallbackBase) };
942     }
943 }