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