[NUI][Xaml] Fix issue that BindingContext can't be used in C# code
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / BaseComponents / ViewPublicMethods.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 System.Runtime.InteropServices;
22 using Tizen.NUI.Binding;
23
24 namespace Tizen.NUI.BaseComponents
25 {
26     /// <summary>
27     /// View is the base class for all views.
28     /// </summary>
29     /// <since_tizen> 3 </since_tizen>
30     public partial class View
31     {
32         /// <summary>
33         /// Perform an action on a visual registered to this view. <br />
34         /// Visuals will have actions. This API is used to perform one of these actions with the given attributes.
35         /// </summary>
36         /// <param name="propertyIndexOfVisual">The Property index of the visual.</param>
37         /// <param name="propertyIndexOfActionId">The action to perform. See Visual to find the supported actions.</param>
38         /// <param name="attributes">Optional attributes for the action.</param>
39         /// <since_tizen> 5 </since_tizen>
40         public void DoAction(int propertyIndexOfVisual, int propertyIndexOfActionId, PropertyValue attributes)
41         {
42             Interop.View.DoAction(SwigCPtr, propertyIndexOfVisual, propertyIndexOfActionId, PropertyValue.getCPtr(attributes));
43             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
44         }
45
46         /// <summary>
47         /// Creates an animation to animate the background color visual. If there is no
48         /// background visual, creates one with transparent black as it's mixColor.
49         /// </summary>
50         /// <since_tizen> 3 </since_tizen>
51         public Animation AnimateBackgroundColor(object destinationValue,
52                                                  int startTime,
53                                                  int endTime,
54                                                  AlphaFunction.BuiltinFunctions? alphaFunction = null,
55                                                  object initialValue = null)
56         {
57             Tizen.NUI.PropertyMap background = Background;
58
59             if (background.Empty())
60             {
61                 // If there is no background yet, ensure there is a transparent
62                 // color visual
63                 BackgroundColor = new Color(0.0f, 0.0f, 0.0f, 0.0f);
64                 background = Background;
65             }
66             return AnimateColor("background", destinationValue, startTime, endTime, alphaFunction, initialValue);
67         }
68
69         /// <summary>
70         /// Creates an animation to animate the mixColor of the named visual.
71         /// </summary>
72         /// <since_tizen> 3 </since_tizen>
73         public Animation AnimateColor(string targetVisual, object destinationColor, int startTime, int endTime, AlphaFunction.BuiltinFunctions? alphaFunction = null, object initialColor = null)
74         {
75             Animation animation = null;
76             using (PropertyMap animator = new PropertyMap())
77             using (PropertyMap timePeriod = new PropertyMap())
78             using (PropertyValue pvDuration = new PropertyValue((endTime - startTime) / 1000.0f))
79             using (PropertyValue pvDelay = new PropertyValue(startTime / 1000.0f))
80             using (PropertyMap transition = new PropertyMap())
81             using (PropertyValue pvTarget = new PropertyValue(targetVisual))
82             using (PropertyValue pvProperty = new PropertyValue("mixColor"))
83             using (PropertyValue destValue = PropertyValue.CreateFromObject(destinationColor))
84             {
85                 if (alphaFunction != null)
86                 {
87                     using (PropertyValue pvAlpha = new PropertyValue(AlphaFunction.BuiltinToPropertyKey(alphaFunction)))
88                     {
89                         animator.Add("alphaFunction", pvAlpha);
90                     }
91                 }
92
93                 timePeriod.Add("duration", pvDuration);
94                 timePeriod.Add("delay", pvDelay);
95                 using (PropertyValue pvTimePeriod = new PropertyValue(timePeriod))
96                 {
97                     animator.Add("timePeriod", pvTimePeriod);
98                 }
99                 using (PropertyValue pvAnimator = new PropertyValue(animator))
100                 {
101                     transition.Add("animator", pvAnimator);
102                 }
103                 transition.Add("target", pvTarget);
104                 transition.Add("property", pvProperty);
105
106                 if (initialColor != null)
107                 {
108                     using (PropertyValue initValue = PropertyValue.CreateFromObject(initialColor))
109                     {
110                         transition.Add("initialValue", initValue);
111                     }
112                 }
113
114                 transition.Add("targetValue", destValue);
115                 using (TransitionData transitionData = new TransitionData(transition))
116                 {
117                     animation = new Animation(Interop.View.CreateTransition(SwigCPtr, TransitionData.getCPtr(transitionData)), true);
118                 }
119                 if (NDalicPINVOKE.SWIGPendingException.Pending)
120                     throw NDalicPINVOKE.SWIGPendingException.Retrieve();
121             }
122             return animation;
123         }
124
125         // From Container Base class
126         /// <summary>
127         /// Adds a child view to this view.
128         /// </summary>
129         /// <seealso cref="Container.Add" />
130         /// <since_tizen> 4 </since_tizen>
131         public override void Add(View child)
132         {
133             bool hasLayout = (layout != null);
134
135             if (null == child)
136             {
137                 Tizen.Log.Fatal("NUI", "Child is null");
138                 return;
139             }
140
141             Container oldParent = child.GetParent();
142             if (oldParent != this)
143             {
144                 // If child already has a parent then re-parent child
145                 if (oldParent != null)
146                 {
147                     if (child.Layout != null)
148                     {
149                         child.Layout.SetReplaceFlag();
150                     }
151                     oldParent.Remove(child);
152                 }
153                 child.InternalParent = this;
154
155                 Interop.Actor.Add(SwigCPtr, View.getCPtr(child));
156
157                 if (NDalicPINVOKE.SWIGPendingException.Pending)
158                     throw NDalicPINVOKE.SWIGPendingException.Retrieve();
159                 Children.Add(child);
160
161                 if (ChildAdded != null)
162                 {
163                     ChildAddedEventArgs e = new ChildAddedEventArgs
164                     {
165                         Added = child
166                     };
167                     ChildAdded(this, e);
168                 }
169
170                 AddChildBindableObject(child);
171             }
172         }
173
174         /// <summary>
175         /// Removes a child view from this View. If the view was not a child of this view, this is a no-op.
176         /// </summary>
177         /// <seealso cref="Container.Remove" />
178         /// <since_tizen> 4 </since_tizen>
179         /// <exception cref="InvalidOperationException">Thrown when deleting a view that is not a child of this view</exception>
180         public override void Remove(View child)
181         {
182             if (child == null || child.GetParent() == null) // Early out if child null.
183                 return;
184
185             if (child.GetParent() != this)
186             {
187                 //throw new System.InvalidOperationException("You have deleted a view that is not a child of this view.");
188                 Tizen.Log.Error("NUI", "You have deleted a view that is not a child of this view.");
189             }
190
191             bool hasLayout = (layout != null);
192
193             // If View has a layout then do a deferred child removal
194             // Actual child removal is performed by the layouting system so
195             // transitions can be completed.
196             if (hasLayout)
197             {
198                 (layout as LayoutGroup)?.RemoveChildFromLayoutGroup(child);
199             }
200
201             RemoveChild(child);
202         }
203
204         /// <summary>
205         /// Retrieves a child view by index.
206         /// </summary>
207         /// <seealso cref="Container.GetChildAt" />
208         /// <since_tizen> 4 </since_tizen>
209         public override View GetChildAt(uint index)
210         {
211             if (index < Children.Count)
212             {
213                 return Children[Convert.ToInt32(index)];
214             }
215             else
216             {
217                 return null;
218             }
219         }
220
221         /// <summary>
222         /// Retrieves the number of children held by the view.
223         /// </summary>
224         /// <seealso cref="Container.GetChildCount" />
225         /// <since_tizen> 4 </since_tizen>
226         [Obsolete("Deprecated in API9, will be removed in API11. Please use ChildCount property instead!")]
227         public override uint GetChildCount()
228         {
229             return Convert.ToUInt32(Children.Count);
230         }
231
232         /// <summary>
233         /// Gets the views parent.
234         /// </summary>
235         /// <seealso cref="Container.GetParent()" />
236         /// <since_tizen> 4 </since_tizen>
237         public override Container GetParent()
238         {
239             return this.InternalParent as Container;
240         }
241
242         /// <summary>
243         /// Queries whether the view has a focus.
244         /// </summary>
245         /// <returns>True if this view has a focus.</returns>
246         /// <since_tizen> 3 </since_tizen>
247         public bool HasFocus()
248         {
249             bool ret = false;
250             if (SwigCPtr.Handle != global::System.IntPtr.Zero)
251             {
252                 ret = Interop.View.HasKeyInputFocus(SwigCPtr);
253                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
254             }
255             else
256             {
257                 Tizen.Log.Error("NUI", "swigCPtr of view is already disposed.");
258             }
259             return ret;
260         }
261
262         /// <summary>
263         /// Sets the name of the style to be applied to the view.
264         /// </summary>
265         /// <param name="styleName">A string matching a style described in a stylesheet.</param>
266         /// <since_tizen> 3 </since_tizen>
267         [Obsolete("Deprecated in API9, will be removed in API11. Please use StyleName property instead!")]
268         public void SetStyleName(string styleName)
269         {
270             Interop.View.SetStyleName(SwigCPtr, styleName);
271             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
272         }
273
274         /// <summary>
275         /// Retrieves the name of the style to be applied to the view (if any).
276         /// </summary>
277         /// <returns>A string matching a style, or an empty string.</returns>
278         /// <since_tizen> 3 </since_tizen>
279         [Obsolete("Deprecated in API9, will be removed in API11. Please use StyleName property instead!")]
280         public string GetStyleName()
281         {
282             string ret = Interop.View.GetStyleName(SwigCPtr);
283             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
284             return ret;
285         }
286
287         /// <summary>
288         /// Clears the background.
289         /// </summary>
290         /// <since_tizen> 3 </since_tizen>
291         public void ClearBackground()
292         {
293             Interop.View.ClearBackground(SwigCPtr);
294             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
295         }
296
297         /// <summary>
298         /// Shows the view.
299         /// </summary>
300         /// <remarks>
301         /// This is an asynchronous method.
302         /// </remarks>
303         /// <since_tizen> 3 </since_tizen>
304         public void Show()
305         {
306             if ((AccessibilityCalculateStates() & AccessibilityStates.Modal) != 0)
307             {
308                 RegisterPopup();
309             }
310
311             SetVisible(true);
312         }
313
314         /// <summary>
315         /// Hides the view.
316         /// </summary>
317         /// <remarks>
318         /// This is an asynchronous method.
319         /// If the view is hidden, then the view and its children will not be rendered.
320         /// This is regardless of the individual visibility of the children, i.e., the view will only be rendered if all of its parents are shown.
321         /// </remarks>
322         /// <since_tizen> 3 </since_tizen>
323         public void Hide()
324         {
325             SetVisible(false);
326
327             if ((AccessibilityCalculateStates() & AccessibilityStates.Modal) != 0)
328             {
329                 RemovePopup();
330             }
331         }
332
333         /// <summary>
334         /// Raises the view above all other views.
335         /// </summary>
336         /// <remarks>
337         /// Sibling order of views within the parent will be updated automatically.
338         /// Once a raise or lower API is used, that view will then have an exclusive sibling order independent of insertion.
339         /// </remarks>
340         /// <since_tizen> 3 </since_tizen>
341         public void RaiseToTop()
342         {
343             var parentChildren = GetParent()?.Children;
344
345             if (parentChildren != null)
346             {
347                 parentChildren.Remove(this);
348                 parentChildren.Add(this);
349
350                 LayoutGroup layout = Layout as LayoutGroup;
351                 layout?.ChangeLayoutSiblingOrder(parentChildren.Count - 1);
352
353                 Interop.NDalic.RaiseToTop(SwigCPtr);
354                 if (NDalicPINVOKE.SWIGPendingException.Pending)
355                     throw NDalicPINVOKE.SWIGPendingException.Retrieve();
356             }
357
358         }
359
360         /// <summary>
361         /// Lowers the view to the bottom of all views.
362         /// </summary>
363         /// <remarks>
364         /// The sibling order of views within the parent will be updated automatically.
365         /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
366         /// </remarks>
367         /// <since_tizen> 3 </since_tizen>
368         public void LowerToBottom()
369         {
370             var parentChildren = GetParent()?.Children;
371
372             if (parentChildren != null)
373             {
374                 parentChildren.Remove(this);
375                 parentChildren.Insert(0, this);
376
377                 LayoutGroup layout = Layout as LayoutGroup;
378                 layout?.ChangeLayoutSiblingOrder(0);
379
380                 Interop.NDalic.LowerToBottom(SwigCPtr);
381                 if (NDalicPINVOKE.SWIGPendingException.Pending)
382                     throw NDalicPINVOKE.SWIGPendingException.Retrieve();
383             }
384         }
385
386         /// <summary>
387         /// Queries if all resources required by a view are loaded and ready.
388         /// </summary>
389         /// <remarks>Most resources are only loaded when the control is placed on the stage.
390         /// </remarks>
391         /// <since_tizen> 3 </since_tizen>
392         public bool IsResourceReady()
393         {
394             bool ret = Interop.View.IsResourceReady(SwigCPtr);
395             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
396             return ret;
397         }
398
399         /// <summary>
400         /// Gets the parent layer of this view.If a view has no parent, this method does not do anything.
401         /// </summary>
402         /// <pre>The view has been initialized. </pre>
403         /// <returns>The parent layer of view </returns>
404         /// <since_tizen> 5 </since_tizen>
405         public Layer GetLayer()
406         {
407             //to fix memory leak issue, match the handle count with native side.
408             IntPtr cPtr = Interop.Actor.GetLayer(SwigCPtr);
409             Layer ret = this.GetInstanceSafely<Layer>(cPtr);
410             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
411             return ret;
412         }
413
414         /// <summary>
415         /// Removes a view from its parent view or layer. If a view has no parent, this method does nothing.
416         /// </summary>
417         /// <pre>The (child) view has been initialized. </pre>
418         /// <since_tizen> 4 </since_tizen>
419         public void Unparent()
420         {
421             GetParent()?.Remove(this);
422         }
423
424         /// <summary>
425         /// Search through this view's hierarchy for a view with the given name.
426         /// The view itself is also considered in the search.
427         /// </summary>
428         /// <pre>The view has been initialized.</pre>
429         /// <param name="viewName">The name of the view to find.</param>
430         /// <returns>A handle to the view if found, or an empty handle if not.</returns>
431         /// <since_tizen> 3 </since_tizen>
432         public View FindChildByName(string viewName)
433         {
434             //to fix memory leak issue, match the handle count with native side.
435             IntPtr cPtr = Interop.Actor.FindChildByName(SwigCPtr, viewName);
436             View ret = this.GetInstanceSafely<View>(cPtr);
437             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
438             return ret;
439         }
440
441         /// <summary>
442         /// Converts screen coordinates into the view's coordinate system using the default camera.
443         /// </summary>
444         /// <pre>The view has been initialized.</pre>
445         /// <remarks>The view coordinates are relative to the top-left(0.0, 0.0, 0.5).</remarks>
446         /// <param name="localX">On return, the X-coordinate relative to the view.</param>
447         /// <param name="localY">On return, the Y-coordinate relative to the view.</param>
448         /// <param name="screenX">The screen X-coordinate.</param>
449         /// <param name="screenY">The screen Y-coordinate.</param>
450         /// <returns>True if the conversion succeeded.</returns>
451         /// <since_tizen> 3 </since_tizen>
452         public bool ScreenToLocal(out float localX, out float localY, float screenX, float screenY)
453         {
454             bool ret = Interop.Actor.ScreenToLocal(SwigCPtr, out localX, out localY, screenX, screenY);
455             if (NDalicPINVOKE.SWIGPendingException.Pending)
456                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
457             return ret;
458         }
459
460         /// <summary>
461         /// Sets the relative to parent size factor of the view.<br />
462         /// This factor is only used when ResizePolicy is set to either:
463         /// ResizePolicy::SIZE_RELATIVE_TO_PARENT or ResizePolicy::SIZE_FIXED_OFFSET_FROM_PARENT.<br />
464         /// This view's size is set to the view's size multiplied by or added to this factor, depending on ResizePolicy.<br />
465         /// </summary>
466         /// <pre>The view has been initialized.</pre>
467         /// <param name="factor">A Vector3 representing the relative factor to be applied to each axis.</param>
468         /// <since_tizen> 3 </since_tizen>
469         public void SetSizeModeFactor(Vector3 factor)
470         {
471             Interop.Actor.SetSizeModeFactor(SwigCPtr, Vector3.getCPtr(factor));
472             if (NDalicPINVOKE.SWIGPendingException.Pending)
473                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
474         }
475         /// <summary>
476         /// Calculates the height of the view given a width.<br />
477         /// The natural size is used for default calculation.<br />
478         /// Size 0 is treated as aspect ratio 1:1.<br />
479         /// </summary>
480         /// <param name="width">The width to use.</param>
481         /// <returns>The height based on the width.</returns>
482         /// <since_tizen> 3 </since_tizen>
483         [Obsolete("Deprecated in API9, will be removed in API11. Please use HeightForWidth property instead!")]
484         public float GetHeightForWidth(float width)
485         {
486             float ret = Interop.Actor.GetHeightForWidth(SwigCPtr, width);
487             if (NDalicPINVOKE.SWIGPendingException.Pending)
488                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
489             return ret;
490         }
491
492         /// <summary>
493         /// Calculates the width of the view given a height.<br />
494         /// The natural size is used for default calculation.<br />
495         /// Size 0 is treated as aspect ratio 1:1.<br />
496         /// </summary>
497         /// <param name="height">The height to use.</param>
498         /// <returns>The width based on the height.</returns>
499         /// <since_tizen> 3 </since_tizen>
500         [Obsolete("Deprecated in API9, will be removed in API11. Please use WidthForHeight property instead!")]
501         public float GetWidthForHeight(float height)
502         {
503             float ret = Interop.Actor.GetWidthForHeight(SwigCPtr, height);
504             if (NDalicPINVOKE.SWIGPendingException.Pending)
505                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
506             return ret;
507         }
508
509         /// <summary>
510         /// Return the amount of size allocated for relayout.
511         /// </summary>
512         /// <param name="dimension">The dimension to retrieve.</param>
513         /// <returns>Return the size.</returns>
514         /// <since_tizen> 3 </since_tizen>
515         public float GetRelayoutSize(DimensionType dimension)
516         {
517             float ret = Interop.Actor.GetRelayoutSize(SwigCPtr, (int)dimension);
518             if (NDalicPINVOKE.SWIGPendingException.Pending)
519                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
520             return ret;
521         }
522
523         /// <summary>
524         /// Set the padding for the view.
525         /// </summary>
526         /// <param name="padding">Padding for the view.</param>
527         /// <since_tizen> 3 </since_tizen>
528         // [Obsolete("Deprecated in API9, will be removed in API11. Please use Padding property instead!")]
529         public void SetPadding(PaddingType padding)
530         {
531             Interop.Actor.SetPadding(SwigCPtr, PaddingType.getCPtr(padding));
532             if (NDalicPINVOKE.SWIGPendingException.Pending)
533                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
534         }
535
536         /// <summary>
537         /// Return the value of padding for the view.
538         /// </summary>
539         /// <param name="paddingOut">the value of padding for the view</param>
540         /// <since_tizen> 3 </since_tizen>
541         [Obsolete("Deprecated in API9, will be removed in API11. Please use Padding property instead!")]
542         public void GetPadding(PaddingType paddingOut)
543         {
544             Interop.Actor.GetPadding(SwigCPtr, PaddingType.getCPtr(paddingOut));
545             if (NDalicPINVOKE.SWIGPendingException.Pending)
546                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
547         }
548
549         /// <since_tizen> 3 </since_tizen>
550         public uint AddRenderer(Renderer renderer)
551         {
552             uint ret = Interop.Actor.AddRenderer(SwigCPtr, Renderer.getCPtr(renderer));
553             if (NDalicPINVOKE.SWIGPendingException.Pending)
554                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
555             return ret;
556         }
557
558         /// <since_tizen> 3 </since_tizen>
559         public Renderer GetRendererAt(uint index)
560         {
561             //to fix memory leak issue, match the handle count with native side.
562             IntPtr cPtr = Interop.Actor.GetRendererAt(SwigCPtr, index);
563             HandleRef CPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
564             Renderer ret = Registry.GetManagedBaseHandleFromNativePtr(CPtr.Handle) as Renderer;
565             if (cPtr != null && ret == null)
566             {
567                 ret = new Renderer(cPtr, false);
568                 if (NDalicPINVOKE.SWIGPendingException.Pending)
569                     throw NDalicPINVOKE.SWIGPendingException.Retrieve();
570                 return ret;
571             }
572             Interop.BaseHandle.DeleteBaseHandle(CPtr);
573             CPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
574
575             if (NDalicPINVOKE.SWIGPendingException.Pending)
576                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
577             return ret;
578         }
579
580         /// <since_tizen> 3 </since_tizen>
581         public void RemoveRenderer(Renderer renderer)
582         {
583             Interop.Actor.RemoveRenderer(SwigCPtr, Renderer.getCPtr(renderer));
584             if (NDalicPINVOKE.SWIGPendingException.Pending)
585                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
586         }
587
588         /// <since_tizen> 3 </since_tizen>
589         public void RemoveRenderer(uint index)
590         {
591             Interop.Actor.RemoveRenderer(SwigCPtr, index);
592             if (NDalicPINVOKE.SWIGPendingException.Pending)
593                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
594         }
595
596         /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
597         [EditorBrowsable(EditorBrowsableState.Never)]
598         public void RotateBy(Degree angle, Vector3 axis)
599         {
600             Interop.ActorInternal.RotateByDegree(SwigCPtr, Degree.getCPtr(angle), Vector3.getCPtr(axis));
601             if (NDalicPINVOKE.SWIGPendingException.Pending)
602                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
603         }
604
605         /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
606         [EditorBrowsable(EditorBrowsableState.Never)]
607         public void RotateBy(Radian angle, Vector3 axis)
608         {
609             Interop.ActorInternal.RotateByRadian(SwigCPtr, Radian.getCPtr(angle), Vector3.getCPtr(axis));
610             if (NDalicPINVOKE.SWIGPendingException.Pending)
611                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
612         }
613
614         /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
615         [EditorBrowsable(EditorBrowsableState.Never)]
616         public void RotateBy(Rotation relativeRotation)
617         {
618             Interop.ActorInternal.RotateByQuaternion(SwigCPtr, Rotation.getCPtr(relativeRotation));
619             if (NDalicPINVOKE.SWIGPendingException.Pending)
620                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
621         }
622
623         /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
624         [EditorBrowsable(EditorBrowsableState.Never)]
625         public void ScaleBy(Vector3 relativeScale)
626         {
627             Interop.ActorInternal.ScaleBy(SwigCPtr, Vector3.getCPtr(relativeScale));
628             if (NDalicPINVOKE.SWIGPendingException.Pending)
629                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
630         }
631
632         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
633         [EditorBrowsable(EditorBrowsableState.Never)]
634         public void SetColorMode(ColorMode colorMode)
635         {
636             Interop.ActorInternal.SetColorMode(SwigCPtr, (int)colorMode);
637             if (NDalicPINVOKE.SWIGPendingException.Pending)
638                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
639         }
640
641         /// This will be public opened in tizen_next after ACR done. Before ACR, need to be hidden as inhouse API.
642         [EditorBrowsable(EditorBrowsableState.Never)]
643         public void ObjectDump()
644         {
645             if (0 == Children.Count)
646             {
647                 Type type = this.GetType();
648                 PropertyInfo[] properties = type.GetProperties(BindingFlags.Public | BindingFlags.Instance);
649                 foreach (var property in properties)
650                 {
651                     if (null != property && property.CanRead)
652                     {
653                         Tizen.Log.Fatal("NUI", $"{type.Name} {property.Name} ({property.PropertyType.Name}): {property.GetValueString(this, property.PropertyType)}");
654                     }
655                 }
656                 return;
657             }
658
659             foreach (View view in Children)
660             {
661                 view.ObjectDump();
662             }
663         }
664
665         /// <summary>
666         /// Search through this View's hierarchy for a View with the given unique ID.
667         /// The View itself is also considered in the search.
668         /// </summary>
669         /// <param name="id">The ID of the View to find</param>
670         /// <returns>A View if found or a null if not</returns>
671         [EditorBrowsable(EditorBrowsableState.Never)]
672         public View FindChildByID(uint id)
673         {
674             IntPtr cPtr = Interop.Actor.FindChildById(SwigCPtr, id);
675             View ret = this.GetInstanceSafely<View>(cPtr);
676             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
677             return ret;
678         }
679
680     }
681 }