1 /** Copyright (c) 2017 Samsung Electronics Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
7 * http://www.apache.org/licenses/LICENSE-2.0
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
17 namespace Tizen.NUI.BaseComponents
21 using System.Runtime.InteropServices;
24 /// View is the base class for all views.
26 public class View : Animatable //CustomActor => Animatable
28 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
30 internal View(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.View_SWIGUpcast(cPtr), cMemoryOwn)
32 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
34 // Register this instance of view in the view registry.
35 ViewRegistry.RegisterView(this);
38 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(View obj)
40 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
43 //you can override it to clean-up your own resources.
44 protected override void Dispose(DisposeTypes type)
51 if(type == DisposeTypes.Explicit)
54 //Release your own managed resources here.
55 //You should release all of your own disposable objects here.
58 //Release your own unmanaged resources here.
59 //You should not access any managed member here except static instance.
60 //because the execution order of Finalizes is non-deterministic.
62 //Unreference this from if a static instance refer to this.
63 ViewRegistry.UnregisterView(this);
65 if (swigCPtr.Handle != global::System.IntPtr.Zero)
70 NDalicPINVOKE.delete_View(swigCPtr);
72 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
78 private EventHandler _keyInputFocusGainedEventHandler;
79 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
80 private delegate void KeyInputFocusGainedCallbackType(IntPtr control);
81 private KeyInputFocusGainedCallbackType _keyInputFocusGainedCallback;
84 /// Event for KeyInputFocusGained signal which can be used to subscribe/unsubscribe the event handler provided by the user.<br>
85 /// KeyInputFocusGained signal is emitted when the control gets Key Input Focus.<br>
87 public event EventHandler FocusGained
91 if (_keyInputFocusGainedEventHandler == null)
93 _keyInputFocusGainedCallback = OnKeyInputFocusGained;
94 this.KeyInputFocusGainedSignal().Connect(_keyInputFocusGainedCallback);
97 _keyInputFocusGainedEventHandler += value;
102 _keyInputFocusGainedEventHandler -= value;
104 if (_keyInputFocusGainedEventHandler == null && KeyInputFocusGainedSignal().Empty() == false)
106 this.KeyInputFocusGainedSignal().Disconnect(_keyInputFocusGainedCallback);
111 private void OnKeyInputFocusGained(IntPtr view)
113 if (_keyInputFocusGainedEventHandler != null)
115 _keyInputFocusGainedEventHandler(this, null);
120 private EventHandler _keyInputFocusLostEventHandler;
121 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
122 private delegate void KeyInputFocusLostCallbackType(IntPtr control);
123 private KeyInputFocusLostCallbackType _keyInputFocusLostCallback;
126 /// Event for KeyInputFocusLost signal which can be used to subscribe/unsubscribe the event handler provided by the user.<br>
127 /// KeyInputFocusLost signal is emitted when the control loses Key Input Focus.<br>
129 public event EventHandler FocusLost
133 if (_keyInputFocusLostEventHandler == null)
135 _keyInputFocusLostCallback = OnKeyInputFocusLost;
136 this.KeyInputFocusLostSignal().Connect(_keyInputFocusLostCallback);
139 _keyInputFocusLostEventHandler += value;
144 _keyInputFocusLostEventHandler -= value;
146 if (_keyInputFocusLostEventHandler == null && KeyInputFocusLostSignal().Empty() == false)
148 this.KeyInputFocusLostSignal().Disconnect(_keyInputFocusLostCallback);
153 private void OnKeyInputFocusLost(IntPtr view)
155 if (_keyInputFocusLostEventHandler != null)
157 _keyInputFocusLostEventHandler(this, null);
162 /// Event arguments that passed via KeyEvent signal.
164 public class KeyEventArgs : EventArgs
169 /// Key - is the key sent to the View.
184 private EventHandlerWithReturnType<object, KeyEventArgs, bool> _keyEventHandler;
185 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
186 private delegate bool KeyCallbackType(IntPtr control, IntPtr keyEvent);
187 private KeyCallbackType _keyCallback;
190 /// Event for KeyPressed signal which can be used to subscribe/unsubscribe the event handler provided by the user.<br>
191 /// KeyPressed signal is emitted when key event is received.<br>
193 public event EventHandlerWithReturnType<object, KeyEventArgs, bool> Key
197 if (_keyEventHandler == null)
199 _keyCallback = OnKeyEvent;
200 this.KeyEventSignal().Connect(_keyCallback);
203 _keyEventHandler += value;
208 _keyEventHandler -= value;
210 if (_keyEventHandler == null && KeyEventSignal().Empty() == false)
212 this.KeyEventSignal().Disconnect(_keyCallback);
217 private bool OnKeyEvent(IntPtr view, IntPtr keyEvent)
219 KeyEventArgs e = new KeyEventArgs();
221 e.Key = Tizen.NUI.Key.GetKeyFromPtr(keyEvent);
223 if (_keyEventHandler != null)
225 return _keyEventHandler(this, e);
231 private EventHandler _onRelayoutEventHandler;
232 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
233 private delegate void OnRelayoutEventCallbackType(IntPtr control);
234 private OnRelayoutEventCallbackType _onRelayoutEventCallback;
237 /// Event for OnRelayout signal which can be used to subscribe/unsubscribe the event handler.<br>
238 /// OnRelayout signal is emitted after the size has been set on the view during relayout.<br>
240 public event EventHandler Relayout
244 if (_onRelayoutEventHandler == null)
246 _onRelayoutEventCallback = OnRelayout;
247 this.OnRelayoutSignal().Connect(_onRelayoutEventCallback);
250 _onRelayoutEventHandler += value;
255 _onRelayoutEventHandler -= value;
257 if (_onRelayoutEventHandler == null && OnRelayoutSignal().Empty() == false)
259 this.OnRelayoutSignal().Disconnect(_onRelayoutEventCallback);
265 // Callback for View OnRelayout signal
266 private void OnRelayout(IntPtr data)
268 if (_onRelayoutEventHandler != null)
270 _onRelayoutEventHandler(this, null);
275 /// Event arguments that passed via Touch signal.
277 public class TouchEventArgs : EventArgs
279 private Touch _touch;
282 /// Touch - contains the information of touch points
297 private EventHandlerWithReturnType<object, TouchEventArgs, bool> _touchDataEventHandler;
298 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
299 private delegate bool TouchDataCallbackType(IntPtr view, IntPtr touchData);
300 private TouchDataCallbackType _touchDataCallback;
303 /// Event for Touched signal which can be used to subscribe/unsubscribe the event handler provided by the user.<br>
304 /// Touched signal is emitted when touch input is received.<br>
306 public event EventHandlerWithReturnType<object, TouchEventArgs, bool> Touch
310 if (_touchDataEventHandler == null)
312 _touchDataCallback = OnTouch;
313 this.TouchSignal().Connect(_touchDataCallback);
316 _touchDataEventHandler += value;
321 _touchDataEventHandler -= value;
323 if (_touchDataEventHandler == null && TouchSignal().Empty() == false)
325 this.TouchSignal().Disconnect(_touchDataCallback);
331 // Callback for View TouchSignal
332 private bool OnTouch(IntPtr view, IntPtr touchData)
334 TouchEventArgs e = new TouchEventArgs();
336 e.Touch = Tizen.NUI.Touch.GetTouchFromPtr(touchData);
338 if (_touchDataEventHandler != null)
340 return _touchDataEventHandler(this, e);
347 /// Event arguments that passed via Hover signal.
349 public class HoverEventArgs : EventArgs
351 private Hover _hover;
354 /// Hover - contains touch points that represent the points that are currently being hovered or the points where a hover has stopped.
369 private EventHandlerWithReturnType<object, HoverEventArgs, bool> _hoverEventHandler;
370 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
371 private delegate bool HoverEventCallbackType(IntPtr view, IntPtr hoverEvent);
372 private HoverEventCallbackType _hoverEventCallback;
375 /// Event for Hovered signal which can be used to subscribe/unsubscribe the event handler provided by the user.<br>
376 /// Hovered signal is emitted when hover input is received.<br>
378 public event EventHandlerWithReturnType<object, HoverEventArgs, bool> Hover
382 if (_hoverEventHandler == null)
384 _hoverEventCallback = OnHoverEvent;
385 this.HoveredSignal().Connect(_hoverEventCallback);
388 _hoverEventHandler += value;
393 _hoverEventHandler -= value;
395 if (_hoverEventHandler == null && HoveredSignal().Empty() == false)
397 this.HoveredSignal().Disconnect(_hoverEventCallback);
403 // Callback for View Hover signal
404 private bool OnHoverEvent(IntPtr view, IntPtr hoverEvent)
406 HoverEventArgs e = new HoverEventArgs();
408 e.Hover = Tizen.NUI.Hover.GetHoverFromPtr(hoverEvent);
410 if (_hoverEventHandler != null)
412 return _hoverEventHandler(this, e);
419 /// Event arguments that passed via Wheel signal.
421 public class WheelEventArgs : EventArgs
423 private Wheel _wheel;
426 /// WheelEvent - store a wheel rolling type : MOUSE_WHEEL or CUSTOM_WHEEL
441 private EventHandlerWithReturnType<object, WheelEventArgs, bool> _wheelEventHandler;
442 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
443 private delegate bool WheelEventCallbackType(IntPtr view, IntPtr wheelEvent);
444 private WheelEventCallbackType _wheelEventCallback;
447 /// Event for WheelMoved signal which can be used to subscribe/unsubscribe the event handler provided by the user.<br>
448 /// WheelMoved signal is emitted when wheel event is received.<br>
450 public event EventHandlerWithReturnType<object, WheelEventArgs, bool> WheelRoll
454 if (_wheelEventHandler == null)
456 _wheelEventCallback = OnWheelEvent;
457 this.WheelEventSignal().Connect(_wheelEventCallback);
460 _wheelEventHandler += value;
465 _wheelEventHandler -= value;
467 if (_wheelEventHandler == null && WheelEventSignal().Empty() == false)
469 this.WheelEventSignal().Disconnect(_wheelEventCallback);
475 // Callback for View Wheel signal
476 private bool OnWheelEvent(IntPtr view, IntPtr wheelEvent)
478 WheelEventArgs e = new WheelEventArgs();
480 e.Wheel = Tizen.NUI.Wheel.GetWheelFromPtr(wheelEvent);
482 if (_wheelEventHandler != null)
484 return _wheelEventHandler(this, e);
490 private EventHandler _onWindowEventHandler;
491 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
492 private delegate void OnWindowEventCallbackType(IntPtr control);
493 private OnWindowEventCallbackType _onWindowEventCallback;
496 /// Event for OnWindow signal which can be used to subscribe/unsubscribe the event handler.<br>
497 /// OnWindow signal is emitted after the view has been connected to the Window.<br>
499 public event EventHandler AddedToWindow
503 if (_onWindowEventHandler == null)
505 _onWindowEventCallback = OnWindow;
506 this.OnWindowSignal().Connect(_onWindowEventCallback);
509 _onWindowEventHandler += value;
514 _onWindowEventHandler -= value;
516 if (_onWindowEventHandler == null && OnWindowSignal().Empty() == false)
518 this.OnWindowSignal().Disconnect(_onWindowEventCallback);
523 // Callback for View OnWindow signal
524 private void OnWindow(IntPtr data)
526 if (_onWindowEventHandler != null)
528 _onWindowEventHandler(this, null);
533 private EventHandler _offWindowEventHandler;
534 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
535 private delegate void OffWindowEventCallbackType(IntPtr control);
536 private OffWindowEventCallbackType _offWindowEventCallback;
539 /// Event for OffWindow signal which can be used to subscribe/unsubscribe the event handler.<br>
540 /// OffWindow signal is emitted after the view has been disconnected from the Window.<br>
542 public event EventHandler RemovedFromWindow
546 if (_offWindowEventHandler == null)
548 _offWindowEventCallback = OffWindow;
549 this.OffWindowSignal().Connect(_offWindowEventCallback);
552 _offWindowEventHandler += value;
557 _offWindowEventHandler -= value;
559 if (_offWindowEventHandler == null && OffWindowSignal().Empty() == false)
561 this.OffWindowSignal().Disconnect(_offWindowEventCallback);
566 // Callback for View OffWindow signal
567 private void OffWindow(IntPtr data)
569 if (_offWindowEventHandler != null)
571 _offWindowEventHandler(this, null);
576 /// Event arguments of visibility changed.
578 public class VisibilityChangedEventArgs : EventArgs
581 private bool _visibility;
582 private VisibilityChangeType _type;
585 /// The view, or child of view, whose visibility has changed.
600 /// Whether the view is now visible or not.
602 public bool Visibility
615 /// Whether the view's visible property has changed or a parent's.
617 public VisibilityChangeType Type
630 private EventHandler<VisibilityChangedEventArgs> _visibilityChangedEventHandler;
631 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
632 private delegate void VisibilityChangedEventCallbackType(IntPtr data, bool visibility, VisibilityChangeType type);
633 private VisibilityChangedEventCallbackType _visibilityChangedEventCallback;
636 /// Event for visibility change which can be used to subscribe/unsubscribe the event handler.<br>
637 /// This signal is emitted when the visible property of this or a parent view is changed.<br>
639 public event EventHandler<VisibilityChangedEventArgs> VisibilityChanged
643 if (_visibilityChangedEventHandler == null)
645 _visibilityChangedEventCallback = OnVisibilityChanged;
646 VisibilityChangedSignal(this).Connect(_visibilityChangedEventCallback);
649 _visibilityChangedEventHandler += value;
654 _visibilityChangedEventHandler -= value;
656 if (_visibilityChangedEventHandler == null && VisibilityChangedSignal(this).Empty() == false)
658 VisibilityChangedSignal(this).Disconnect(_visibilityChangedEventCallback);
663 // Callback for View visibility change signal
664 private void OnVisibilityChanged(IntPtr data, bool visibility, VisibilityChangeType type)
666 VisibilityChangedEventArgs e = new VisibilityChangedEventArgs();
669 e.View = View.GetViewFromPtr(data);
671 e.Visibility = visibility;
674 if (_visibilityChangedEventHandler != null)
676 _visibilityChangedEventHandler(this, e);
680 internal static View GetViewFromPtr(global::System.IntPtr cPtr)
682 View ret = new View(cPtr, false);
683 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
687 internal IntPtr GetPtrfromView()
689 return (IntPtr)swigCPtr;
692 internal class Property
694 internal static readonly int TOOLTIP = NDalicManualPINVOKE.View_Property_TOOLTIP_get();
695 internal static readonly int STATE = NDalicManualPINVOKE.View_Property_STATE_get();
696 internal static readonly int SUB_STATE = NDalicManualPINVOKE.View_Property_SUB_STATE_get();
697 internal static readonly int LEFT_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_LEFT_FOCUSABLE_ACTOR_ID_get();
698 internal static readonly int RIGHT_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_RIGHT_FOCUSABLE_ACTOR_ID_get();
699 internal static readonly int UP_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_UP_FOCUSABLE_ACTOR_ID_get();
700 internal static readonly int DOWN_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_DOWN_FOCUSABLE_ACTOR_ID_get();
701 internal static readonly int STYLE_NAME = NDalicPINVOKE.View_Property_STYLE_NAME_get();
702 internal static readonly int BACKGROUND = NDalicPINVOKE.View_Property_BACKGROUND_get();
703 internal static readonly int SIBLING_ORDER = NDalicManualPINVOKE.Actor_Property_SIBLING_ORDER_get();
704 internal static readonly int OPACITY = NDalicManualPINVOKE.Actor_Property_OPACITY_get();
705 internal static readonly int SCREEN_POSITION = NDalicManualPINVOKE.Actor_Property_SCREEN_POSITION_get();
706 internal static readonly int POSITION_USES_ANCHOR_POINT = NDalicManualPINVOKE.Actor_Property_POSITION_USES_ANCHOR_POINT_get();
707 internal static readonly int PARENT_ORIGIN = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_get();
708 internal static readonly int PARENT_ORIGIN_X = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_X_get();
709 internal static readonly int PARENT_ORIGIN_Y = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_Y_get();
710 internal static readonly int PARENT_ORIGIN_Z = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_Z_get();
711 internal static readonly int ANCHOR_POINT = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_get();
712 internal static readonly int ANCHOR_POINT_X = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_X_get();
713 internal static readonly int ANCHOR_POINT_Y = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_Y_get();
714 internal static readonly int ANCHOR_POINT_Z = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_Z_get();
715 internal static readonly int SIZE = NDalicPINVOKE.Actor_Property_SIZE_get();
716 internal static readonly int SIZE_WIDTH = NDalicPINVOKE.Actor_Property_SIZE_WIDTH_get();
717 internal static readonly int SIZE_HEIGHT = NDalicPINVOKE.Actor_Property_SIZE_HEIGHT_get();
718 internal static readonly int SIZE_DEPTH = NDalicPINVOKE.Actor_Property_SIZE_DEPTH_get();
719 internal static readonly int POSITION = NDalicPINVOKE.Actor_Property_POSITION_get();
720 internal static readonly int POSITION_X = NDalicPINVOKE.Actor_Property_POSITION_X_get();
721 internal static readonly int POSITION_Y = NDalicPINVOKE.Actor_Property_POSITION_Y_get();
722 internal static readonly int POSITION_Z = NDalicPINVOKE.Actor_Property_POSITION_Z_get();
723 internal static readonly int WORLD_POSITION = NDalicPINVOKE.Actor_Property_WORLD_POSITION_get();
724 internal static readonly int WORLD_POSITION_X = NDalicPINVOKE.Actor_Property_WORLD_POSITION_X_get();
725 internal static readonly int WORLD_POSITION_Y = NDalicPINVOKE.Actor_Property_WORLD_POSITION_Y_get();
726 internal static readonly int WORLD_POSITION_Z = NDalicPINVOKE.Actor_Property_WORLD_POSITION_Z_get();
727 internal static readonly int ORIENTATION = NDalicPINVOKE.Actor_Property_ORIENTATION_get();
728 internal static readonly int WORLD_ORIENTATION = NDalicPINVOKE.Actor_Property_WORLD_ORIENTATION_get();
729 internal static readonly int SCALE = NDalicPINVOKE.Actor_Property_SCALE_get();
730 internal static readonly int SCALE_X = NDalicPINVOKE.Actor_Property_SCALE_X_get();
731 internal static readonly int SCALE_Y = NDalicPINVOKE.Actor_Property_SCALE_Y_get();
732 internal static readonly int SCALE_Z = NDalicPINVOKE.Actor_Property_SCALE_Z_get();
733 internal static readonly int WORLD_SCALE = NDalicPINVOKE.Actor_Property_WORLD_SCALE_get();
734 internal static readonly int VISIBLE = NDalicPINVOKE.Actor_Property_VISIBLE_get();
735 internal static readonly int WORLD_COLOR = NDalicPINVOKE.Actor_Property_WORLD_COLOR_get();
736 internal static readonly int WORLD_MATRIX = NDalicPINVOKE.Actor_Property_WORLD_MATRIX_get();
737 internal static readonly int NAME = NDalicPINVOKE.Actor_Property_NAME_get();
738 internal static readonly int SENSITIVE = NDalicPINVOKE.Actor_Property_SENSITIVE_get();
739 internal static readonly int LEAVE_REQUIRED = NDalicPINVOKE.Actor_Property_LEAVE_REQUIRED_get();
740 internal static readonly int INHERIT_ORIENTATION = NDalicPINVOKE.Actor_Property_INHERIT_ORIENTATION_get();
741 internal static readonly int INHERIT_SCALE = NDalicPINVOKE.Actor_Property_INHERIT_SCALE_get();
742 internal static readonly int DRAW_MODE = NDalicPINVOKE.Actor_Property_DRAW_MODE_get();
743 internal static readonly int SIZE_MODE_FACTOR = NDalicPINVOKE.Actor_Property_SIZE_MODE_FACTOR_get();
744 internal static readonly int WIDTH_RESIZE_POLICY = NDalicPINVOKE.Actor_Property_WIDTH_RESIZE_POLICY_get();
745 internal static readonly int HEIGHT_RESIZE_POLICY = NDalicPINVOKE.Actor_Property_HEIGHT_RESIZE_POLICY_get();
746 internal static readonly int SIZE_SCALE_POLICY = NDalicPINVOKE.Actor_Property_SIZE_SCALE_POLICY_get();
747 internal static readonly int WIDTH_FOR_HEIGHT = NDalicPINVOKE.Actor_Property_WIDTH_FOR_HEIGHT_get();
748 internal static readonly int HEIGHT_FOR_WIDTH = NDalicPINVOKE.Actor_Property_HEIGHT_FOR_WIDTH_get();
749 internal static readonly int PADDING = NDalicPINVOKE.Actor_Property_PADDING_get();
750 internal static readonly int MINIMUM_SIZE = NDalicPINVOKE.Actor_Property_MINIMUM_SIZE_get();
751 internal static readonly int MAXIMUM_SIZE = NDalicPINVOKE.Actor_Property_MAXIMUM_SIZE_get();
752 internal static readonly int INHERIT_POSITION = NDalicPINVOKE.Actor_Property_INHERIT_POSITION_get();
753 internal static readonly int CLIPPING_MODE = NDalicPINVOKE.Actor_Property_CLIPPING_MODE_get();
758 /// Describes the direction to move the focus towards.
760 public enum FocusDirection
771 /// Creates a new instance of a View.
773 public View() : this(NDalicPINVOKE.View_New(), true)
775 PositionUsesAnchorPoint = false;
776 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
779 internal View(View uiControl) : this(NDalicPINVOKE.new_View__SWIG_1(View.getCPtr(uiControl)), true)
781 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
785 /// Downcasts a handle to View handle.<br>
786 /// If handle points to a View, the downcast produces valid handle.<br>
787 /// If not, the returned handle is left uninitialized.<br>
789 /// <param name="handle">Handle to an object</param>
790 /// <returns>A handle to a View or an uninitialized handle</returns>
791 public new static View DownCast(BaseHandle handle)
793 View ret = new View(NDalicPINVOKE.View_DownCast(BaseHandle.getCPtr(handle)), true);
794 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
799 /// Downcasts a handle to class which inherit View handle.
801 /// <typeparam name="T">Class which inherit View</typeparam>
802 /// <param name="view">View to an object</param>
803 /// <returns>A object which inherit View</returns>
804 public static T DownCast<T>(View view) where T : View
806 View ret = ViewRegistry.GetViewFromBaseHandle(view);
814 private View ConvertIdToView(uint id)
820 view = Parent.FindChildById(id);
825 view = Window.Instance.GetRootLayer().FindChildById(id);
831 internal void SetKeyInputFocus()
833 NDalicPINVOKE.View_SetKeyInputFocus(swigCPtr);
834 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
838 /// Quries whether the view has focus.
840 /// <returns>true if this view has focus</returns>
841 public bool HasFocus()
843 bool ret = NDalicPINVOKE.View_HasKeyInputFocus(swigCPtr);
844 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
848 internal void ClearKeyInputFocus()
850 NDalicPINVOKE.View_ClearKeyInputFocus(swigCPtr);
851 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
854 internal PinchGestureDetector GetPinchGestureDetector()
856 PinchGestureDetector ret = new PinchGestureDetector(NDalicPINVOKE.View_GetPinchGestureDetector(swigCPtr), true);
857 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
861 internal PanGestureDetector GetPanGestureDetector()
863 PanGestureDetector ret = new PanGestureDetector(NDalicPINVOKE.View_GetPanGestureDetector(swigCPtr), true);
864 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
868 internal TapGestureDetector GetTapGestureDetector()
870 TapGestureDetector ret = new TapGestureDetector(NDalicPINVOKE.View_GetTapGestureDetector(swigCPtr), true);
871 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
875 internal LongPressGestureDetector GetLongPressGestureDetector()
877 LongPressGestureDetector ret = new LongPressGestureDetector(NDalicPINVOKE.View_GetLongPressGestureDetector(swigCPtr), true);
878 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
883 /// Sets the name of the style to be applied to the view.
885 /// <param name="styleName">A string matching a style described in a stylesheet</param>
886 public void SetStyleName(string styleName)
888 NDalicPINVOKE.View_SetStyleName(swigCPtr, styleName);
889 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
893 /// Retrieves the name of the style to be applied to the view (if any).
895 /// <returns>A string matching a style, or an empty string</returns>
896 public string GetStyleName()
898 string ret = NDalicPINVOKE.View_GetStyleName(swigCPtr);
899 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
903 internal void SetBackgroundColor(Vector4 color)
905 NDalicPINVOKE.View_SetBackgroundColor(swigCPtr, Vector4.getCPtr(color));
906 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
909 internal Vector4 GetBackgroundColor()
911 Vector4 ret = new Vector4(NDalicPINVOKE.View_GetBackgroundColor(swigCPtr), true);
912 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
916 internal void SetBackgroundImage(Image image)
918 NDalicPINVOKE.View_SetBackgroundImage(swigCPtr, Image.getCPtr(image));
919 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
923 /// Clears the background.
925 public void ClearBackground()
927 NDalicPINVOKE.View_ClearBackground(swigCPtr);
928 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
931 internal ControlKeySignal KeyEventSignal()
933 ControlKeySignal ret = new ControlKeySignal(NDalicPINVOKE.View_KeyEventSignal(swigCPtr), false);
934 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
938 internal KeyInputFocusSignal KeyInputFocusGainedSignal()
940 KeyInputFocusSignal ret = new KeyInputFocusSignal(NDalicPINVOKE.View_KeyInputFocusGainedSignal(swigCPtr), false);
941 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
945 internal KeyInputFocusSignal KeyInputFocusLostSignal()
947 KeyInputFocusSignal ret = new KeyInputFocusSignal(NDalicPINVOKE.View_KeyInputFocusLostSignal(swigCPtr), false);
948 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
952 internal View(ViewImpl implementation) : this(NDalicPINVOKE.new_View__SWIG_2(ViewImpl.getCPtr(implementation)), true)
954 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
957 internal enum PropertyRange
959 PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX,
960 CONTROL_PROPERTY_START_INDEX = PROPERTY_START_INDEX,
961 CONTROL_PROPERTY_END_INDEX = CONTROL_PROPERTY_START_INDEX + 1000
965 /// styleName, type string.
967 public string StyleName
972 GetProperty(View.Property.STYLE_NAME).Get(out temp);
977 SetProperty(View.Property.STYLE_NAME, new Tizen.NUI.PropertyValue(value));
982 /// mutually exclusive with BACKGROUND_IMAGE & BACKGROUND, type Vector4.
984 public Color BackgroundColor
988 Color backgroundColor = new Color(0.0f, 0.0f, 0.0f, 0.0f);
990 Tizen.NUI.PropertyMap background = Background;
992 background.Find(Visual.Property.Type)?.Get(out visualType);
993 if (visualType == (int)Visual.Type.Color)
995 background.Find(ColorVisualProperty.MixColor)?.Get(backgroundColor);
998 return backgroundColor;
1002 SetProperty(View.Property.BACKGROUND, new Tizen.NUI.PropertyValue(value));
1007 /// mutually exclusive with BACKGROUND_COLOR & BACKGROUND, type Map.
1009 public string BackgroundImage
1013 string backgroundImage = "";
1015 Tizen.NUI.PropertyMap background = Background;
1017 background.Find(Visual.Property.Type)?.Get(out visualType);
1018 if (visualType == (int)Visual.Type.Image)
1020 background.Find(ImageVisualProperty.URL)?.Get(out backgroundImage);
1023 return backgroundImage;
1027 SetProperty(View.Property.BACKGROUND, new Tizen.NUI.PropertyValue(value));
1032 /// mutually exclusive with BACKGROUND_COLOR & BACKGROUND_IMAGE, type Map or string for URL.
1034 public Tizen.NUI.PropertyMap Background
1038 Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
1039 GetProperty(View.Property.BACKGROUND).Get(temp);
1044 SetProperty(View.Property.BACKGROUND, new Tizen.NUI.PropertyValue(value));
1049 /// The current state of the view.
1056 if (GetProperty(View.Property.STATE).Get(out temp) == false)
1059 Tizen.Log.Error("NUI", "State get error!");
1066 return States.Normal;
1070 return States.Focused;
1074 return States.Disabled;
1078 return States.Normal;
1084 SetProperty(View.Property.STATE, new Tizen.NUI.PropertyValue((int)value));
1089 /// The current sub state of the view.
1091 public States SubState
1096 if (GetProperty(View.Property.SUB_STATE).Get(out temp) == false)
1099 Tizen.Log.Error("NUI", "subState get error!");
1105 return States.Normal;
1107 return States.Focused;
1109 return States.Disabled;
1111 return States.Normal;
1116 string valueToString = "";
1121 valueToString = "NORMAL";
1124 case States.Focused:
1126 valueToString = "FOCUSED";
1129 case States.Disabled:
1131 valueToString = "DISABLED";
1136 valueToString = "NORMAL";
1140 SetProperty(View.Property.SUB_STATE, new Tizen.NUI.PropertyValue(valueToString));
1145 /// Displays a tooltip
1147 public Tizen.NUI.PropertyMap Tooltip
1151 Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
1152 GetProperty(View.Property.TOOLTIP).Get(temp);
1157 SetProperty(View.Property.TOOLTIP, new Tizen.NUI.PropertyValue(value));
1162 /// Displays a tooltip as Text
1164 public string TooltipText
1168 SetProperty(View.Property.TOOLTIP, new Tizen.NUI.PropertyValue(value));
1172 private int LeftFocusableViewId
1177 GetProperty(View.Property.LEFT_FOCUSABLE_VIEW_ID).Get(out temp);
1182 SetProperty(View.Property.LEFT_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
1186 private int RightFocusableViewId
1191 GetProperty(View.Property.RIGHT_FOCUSABLE_VIEW_ID).Get(out temp);
1196 SetProperty(View.Property.RIGHT_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
1200 private int UpFocusableViewId
1205 GetProperty(View.Property.UP_FOCUSABLE_VIEW_ID).Get(out temp);
1210 SetProperty(View.Property.UP_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
1214 private int DownFocusableViewId
1219 GetProperty(View.Property.DOWN_FOCUSABLE_VIEW_ID).Get(out temp);
1224 SetProperty(View.Property.DOWN_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
1229 /// Child Property of FlexContainer.<br>
1230 /// The proportion of the free space in the container the flex item will receive.<br>
1231 /// If all items in the container set this property, their sizes will be proportional to the specified flex factor.<br>
1238 GetProperty(FlexContainer.ChildProperty.FLEX).Get(out temp);
1243 SetProperty(FlexContainer.ChildProperty.FLEX, new Tizen.NUI.PropertyValue(value));
1248 /// Child Property of FlexContainer.<br>
1249 /// The alignment of the flex item along the cross axis, which, if set, overides the default alignment for all items in the container.<br>
1251 public int AlignSelf
1256 GetProperty(FlexContainer.ChildProperty.ALIGN_SELF).Get(out temp);
1261 SetProperty(FlexContainer.ChildProperty.ALIGN_SELF, new Tizen.NUI.PropertyValue(value));
1266 /// Child Property of FlexContainer.<br>
1267 /// The space around the flex item.<br>
1269 public Vector4 FlexMargin
1273 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
1274 GetProperty(FlexContainer.ChildProperty.FLEX_MARGIN).Get(temp);
1279 SetProperty(FlexContainer.ChildProperty.FLEX_MARGIN, new Tizen.NUI.PropertyValue(value));
1284 /// The top-left cell this child occupies, if not set, the first available cell is used
1286 public Vector2 CellIndex
1290 Vector2 temp = new Vector2(0.0f, 0.0f);
1291 GetProperty(TableView.ChildProperty.CELL_INDEX).Get(temp);
1296 SetProperty(TableView.ChildProperty.CELL_INDEX, new Tizen.NUI.PropertyValue(value));
1301 /// The number of rows this child occupies, if not set, default value is 1
1303 public float RowSpan
1308 GetProperty(TableView.ChildProperty.ROW_SPAN).Get(out temp);
1313 SetProperty(TableView.ChildProperty.ROW_SPAN, new Tizen.NUI.PropertyValue(value));
1318 /// The number of columns this child occupies, if not set, default value is 1
1320 public float ColumnSpan
1325 GetProperty(TableView.ChildProperty.COLUMN_SPAN).Get(out temp);
1330 SetProperty(TableView.ChildProperty.COLUMN_SPAN, new Tizen.NUI.PropertyValue(value));
1335 /// The horizontal alignment of this child inside the cells, if not set, default value is 'left'
1337 public Tizen.NUI.HorizontalAlignmentType CellHorizontalAlignment
1342 if (GetProperty(TableView.ChildProperty.CELL_HORIZONTAL_ALIGNMENT).Get(out temp) == false)
1345 Tizen.Log.Error("NUI", "CellHorizontalAlignment get error!");
1352 return Tizen.NUI.HorizontalAlignmentType.Left;
1354 return Tizen.NUI.HorizontalAlignmentType.Center;
1356 return Tizen.NUI.HorizontalAlignmentType.Right;
1358 return Tizen.NUI.HorizontalAlignmentType.Left;
1363 string valueToString = "";
1366 case Tizen.NUI.HorizontalAlignmentType.Left:
1368 valueToString = "left";
1371 case Tizen.NUI.HorizontalAlignmentType.Center:
1373 valueToString = "center";
1376 case Tizen.NUI.HorizontalAlignmentType.Right:
1378 valueToString = "right";
1383 valueToString = "left";
1387 SetProperty(TableView.ChildProperty.CELL_HORIZONTAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
1392 /// The vertical alignment of this child inside the cells, if not set, default value is 'top'
1394 public Tizen.NUI.VerticalAlignmentType CellVerticalAlignment
1399 GetProperty(TableView.ChildProperty.CELL_VERTICAL_ALIGNMENT).Get(out temp);
1402 Tizen.Log.Error("NUI", "CellVerticalAlignment get error!");
1409 return Tizen.NUI.VerticalAlignmentType.Top;
1411 return Tizen.NUI.VerticalAlignmentType.Center;
1413 return Tizen.NUI.VerticalAlignmentType.Bottom;
1415 return Tizen.NUI.VerticalAlignmentType.Top;
1420 string valueToString = "";
1423 case Tizen.NUI.VerticalAlignmentType.Top:
1425 valueToString = "top";
1428 case Tizen.NUI.VerticalAlignmentType.Center:
1430 valueToString = "center";
1433 case Tizen.NUI.VerticalAlignmentType.Bottom:
1435 valueToString = "bottom";
1440 valueToString = "top";
1444 SetProperty(TableView.ChildProperty.CELL_VERTICAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
1449 /// The left focusable view.<br>
1450 /// This will return NULL if not set.<br>
1451 /// This will also return NULL if the specified left focusable view is not on Window.<br>
1453 public View LeftFocusableView
1455 // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
1458 if (LeftFocusableViewId >= 0)
1460 return ConvertIdToView((uint)LeftFocusableViewId);
1466 LeftFocusableViewId = (int)value.GetId();
1471 /// The right focusable view.<br>
1472 /// This will return NULL if not set.<br>
1473 /// This will also return NULL if the specified right focusable view is not on Window.<br>
1475 public View RightFocusableView
1477 // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
1480 if (RightFocusableViewId >= 0)
1482 return ConvertIdToView((uint)RightFocusableViewId);
1488 RightFocusableViewId = (int)value.GetId();
1493 /// The up focusable view.<br>
1494 /// This will return NULL if not set.<br>
1495 /// This will also return NULL if the specified up focusable view is not on Window.<br>
1497 public View UpFocusableView
1499 // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
1502 if (UpFocusableViewId >= 0)
1504 return ConvertIdToView((uint)UpFocusableViewId);
1510 UpFocusableViewId = (int)value.GetId();
1515 /// The down focusable view.<br>
1516 /// This will return NULL if not set.<br>
1517 /// This will also return NULL if the specified down focusable view is not on Window.<br>
1519 public View DownFocusableView
1521 // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
1524 if (DownFocusableViewId >= 0)
1526 return ConvertIdToView((uint)DownFocusableViewId);
1532 DownFocusableViewId = (int)value.GetId();
1537 /// whether the view should be focusable by keyboard navigation.
1539 public bool Focusable
1543 SetKeyboardFocusable(value);
1547 return IsKeyboardFocusable();
1552 /// Enumeration for describing the states of view.
1571 /// Retrieves the position of the View.<br>
1572 /// The coordinates are relative to the View's parent.<br>
1574 public Position CurrentPosition
1578 return GetCurrentPosition();
1583 /// Sets the size of an view for width and height.<br>
1584 /// Geometry can be scaled to fit within this area.<br>
1585 /// This does not interfere with the views scale factor.<br>
1586 /// The views default depth is the minimum of width & height.<br>
1588 public Size2D Size2D
1592 Size temp = new Size(0.0f, 0.0f, 0.0f);
1593 GetProperty(View.Property.SIZE).Get(temp);
1594 return new Size2D(temp);
1598 SetProperty(View.Property.SIZE, new Tizen.NUI.PropertyValue(new Size(value)));
1603 /// Retrieves the size of the View.<br>
1604 /// The coordinates are relative to the View's parent.<br>
1606 public Size CurrentSize
1610 return GetCurrentSize();
1615 /// Retrieves the view's parent.<br>
1625 public bool Visibility
1634 /// Retrieves and sets the view's opacity.<br>
1636 public float Opacity
1641 GetProperty(View.Property.OPACITY).Get(out temp);
1646 SetProperty(View.Property.OPACITY, new Tizen.NUI.PropertyValue(value));
1651 /// Sets the position of the View for X and Y.<br>
1652 /// By default, sets the position vector between the parent origin and anchor point(default).<br>
1653 /// If Position inheritance if disabled, sets the world position.<br>
1655 public Position2D Position2D
1659 Position temp = new Position(0.0f, 0.0f, 0.0f);
1660 GetProperty(View.Property.POSITION).Get(temp);
1661 return new Position2D(temp);
1665 SetProperty(View.Property.POSITION, new Tizen.NUI.PropertyValue(new Position(value)));
1670 /// Retrieves screen postion of view's.<br>
1672 public Vector2 ScreenPosition
1676 Vector2 temp = new Vector2(0.0f, 0.0f);
1677 GetProperty(View.Property.SCREEN_POSITION).Get(temp);
1683 /// Determines whether the anchor point should be used to determine the position of the view.
1684 /// This is true by default.
1686 /// <remarks>If false, then the top-left of the view is used for the position.
1687 /// Setting this to false will allow scaling or rotation around the anchor-point without affecting the view's position.
1689 public bool PositionUsesAnchorPoint
1694 GetProperty(View.Property.POSITION_USES_ANCHOR_POINT).Get(out temp);
1699 SetProperty(View.Property.POSITION_USES_ANCHOR_POINT, new Tizen.NUI.PropertyValue(value));
1703 internal bool FocusState
1707 return IsKeyboardFocusable();
1711 SetKeyboardFocusable(value);
1716 /// Queries whether the view is connected to the Stage.<br>
1717 /// When an view is connected, it will be directly or indirectly parented to the root View.<br>
1719 public bool IsOnWindow
1728 /// Gets depth in the hierarchy for the view.
1730 public int HierarchyDepth
1734 return GetHierarchyDepth();
1739 /// Sets the sibling order of the view so depth position can be defined within the same parent.
1742 /// Note The initial value is 0.
1743 /// Raise, Lower, RaiseToTop, LowerToBottom, RaiseAbove and LowerBelow will override the sibling order.
1744 /// The values set by this Property will likely change.
1746 public int SiblingOrder
1751 GetProperty(View.Property.SIBLING_ORDER).Get(out temp);
1756 SetProperty(View.Property.SIBLING_ORDER, new Tizen.NUI.PropertyValue(value));
1761 /// Gets the natural size of the view.<br>
1766 internal Vector3 NaturalSize
1770 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetNaturalSize(swigCPtr), true);
1771 if (NDalicPINVOKE.SWIGPendingException.Pending)
1772 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1781 /// This is an asynchronous method.
1792 /// This is an asynchronous method.
1793 /// If an view is hidden, then the view and its children will not be rendered.
1794 /// This is regardless of the individual visibility of the children i.e.an view will only be rendered if all of its parents are shown.
1801 internal void Raise()
1803 NDalicPINVOKE.Raise(swigCPtr);
1804 if (NDalicPINVOKE.SWIGPendingException.Pending)
1805 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1808 internal void Lower()
1810 NDalicPINVOKE.Lower(swigCPtr);
1811 if (NDalicPINVOKE.SWIGPendingException.Pending)
1812 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1816 /// Raise view above all other views.
1819 /// Sibling order of views within the parent will be updated automatically.
1820 /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
1822 public void RaiseToTop()
1824 NDalicPINVOKE.RaiseToTop(swigCPtr);
1825 if (NDalicPINVOKE.SWIGPendingException.Pending)
1826 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1830 /// Lower view to the bottom of all views.
1833 /// Sibling order of views within the parent will be updated automatically.
1834 /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
1836 public void LowerToBottom()
1838 NDalicPINVOKE.LowerToBottom(swigCPtr);
1839 if (NDalicPINVOKE.SWIGPendingException.Pending)
1840 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1844 /// Raise the view to above the target view.
1846 /// <remarks>Sibling order of views within the parent will be updated automatically.
1847 /// Views on the level above the target view will still be shown above this view.
1848 /// Raising this view above views with the same sibling order as each other will raise this view above them.
1849 /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
1851 /// <param name="target">Will be raised above this view</param>
1852 internal void RaiseAbove(View target)
1854 NDalicPINVOKE.RaiseAbove(swigCPtr, View.getCPtr(target));
1855 if (NDalicPINVOKE.SWIGPendingException.Pending)
1856 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1860 /// Lower the view to below the target view.
1862 /// <remarks>Sibling order of views within the parent will be updated automatically.
1863 /// Lowering this view below views with the same sibling order as each other will lower this view above them.
1864 /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
1866 /// <param name="target">Will be lowered below this view</param>
1867 internal void LowerBelow(View target)
1869 NDalicPINVOKE.RaiseAbove(swigCPtr, View.getCPtr(target));
1870 if (NDalicPINVOKE.SWIGPendingException.Pending)
1871 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1874 internal string GetName()
1876 string ret = NDalicPINVOKE.Actor_GetName(swigCPtr);
1877 if (NDalicPINVOKE.SWIGPendingException.Pending)
1878 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1882 internal void SetName(string name)
1884 NDalicPINVOKE.Actor_SetName(swigCPtr, name);
1885 if (NDalicPINVOKE.SWIGPendingException.Pending)
1886 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1889 internal uint GetId()
1891 uint ret = NDalicPINVOKE.Actor_GetId(swigCPtr);
1892 if (NDalicPINVOKE.SWIGPendingException.Pending)
1893 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1897 internal bool IsRoot()
1899 bool ret = NDalicPINVOKE.Actor_IsRoot(swigCPtr);
1900 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1904 internal bool OnWindow()
1906 bool ret = NDalicPINVOKE.Actor_OnStage(swigCPtr);
1907 if (NDalicPINVOKE.SWIGPendingException.Pending)
1908 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1912 internal Layer GetLayer()
1914 Layer ret = new Layer(NDalicPINVOKE.Actor_GetLayer(swigCPtr), true);
1915 if (NDalicPINVOKE.SWIGPendingException.Pending)
1916 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1921 /// Adds a child view to this View.
1923 /// <pre>This View(the parent) has been initialized. The child view has been initialized. The child view is not the same as the parent view.</pre>
1924 /// <post>The child will be referenced by its parent. This means that the child will be kept alive, even if the handle passed into this method is reset or destroyed.</post>
1925 /// <remarks>If the child already has a parent, it will be removed from old parent and reparented to this view. This may change child's position, color, scale etc as it now inherits them from this view.</remarks>
1926 /// <param name="child">The child</param>
1927 public void Add(View child)
1929 NDalicPINVOKE.Actor_Add(swigCPtr, View.getCPtr(child));
1930 if (NDalicPINVOKE.SWIGPendingException.Pending)
1931 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1935 /// Removes a child View from this View. If the view was not a child of this view, this is a no-op.
1937 /// <pre>This View(the parent) has been initialized. The child view is not the same as the parent view.</pre>
1938 /// <param name="child">The child</param>
1939 public void Remove(View child)
1941 NDalicPINVOKE.Actor_Remove(swigCPtr, View.getCPtr(child));
1942 if (NDalicPINVOKE.SWIGPendingException.Pending)
1943 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1946 internal void Unparent()
1948 NDalicPINVOKE.Actor_Unparent(swigCPtr);
1949 if (NDalicPINVOKE.SWIGPendingException.Pending)
1950 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1954 /// Retrieves the number of children held by the view.
1956 /// <pre>The View has been initialized.</pre>
1957 /// <returns>The number of children</returns>
1958 internal uint GetChildCount()
1960 uint ret = NDalicPINVOKE.Actor_GetChildCount(swigCPtr);
1961 if (NDalicPINVOKE.SWIGPendingException.Pending)
1962 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1967 /// Retrieves child view by index.
1969 /// <pre>The View has been initialized.</pre>
1970 /// <param name="index">The index of the child to retrieve</param>
1971 /// <returns>The view for the given index or empty handle if children not initialized</returns>
1972 public View GetChildAt(uint index)
1974 IntPtr cPtr = NDalicPINVOKE.Actor_GetChildAt(swigCPtr, index);
1975 cPtr = NDalicPINVOKE.View_SWIGUpcast(cPtr);
1976 cPtr = NDalicPINVOKE.Handle_SWIGUpcast(cPtr);
1978 BaseHandle ret = new BaseHandle(cPtr, false);
1980 View temp = ViewRegistry.GetViewFromBaseHandle(ret);
1982 if (NDalicPINVOKE.SWIGPendingException.Pending)
1983 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1985 return temp ?? null;
1989 /// Search through this view's hierarchy for an view with the given name.
1990 /// The view itself is also considered in the search.
1992 /// <pre>The View has been initialized.</pre>
1993 /// <param name="viewName">The name of the view to find</param>
1994 /// <returns>A handle to the view if found, or an empty handle if not</returns>
1995 public View FindChildByName(string viewName)
1997 View ret = new View(NDalicPINVOKE.Actor_FindChildByName(swigCPtr, viewName), true);
1998 if (NDalicPINVOKE.SWIGPendingException.Pending)
1999 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2003 internal View FindChildById(uint id)
2005 View ret = new View(NDalicPINVOKE.Actor_FindChildById(swigCPtr, id), true);
2006 if (NDalicPINVOKE.SWIGPendingException.Pending)
2007 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2011 internal View GetParent()
2013 View ret = new View(NDalicPINVOKE.Actor_GetParent(swigCPtr), true);
2014 if (NDalicPINVOKE.SWIGPendingException.Pending)
2015 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2019 internal void SetParentOrigin(Vector3 origin)
2021 NDalicPINVOKE.Actor_SetParentOrigin(swigCPtr, Vector3.getCPtr(origin));
2022 if (NDalicPINVOKE.SWIGPendingException.Pending)
2023 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2026 internal Vector3 GetCurrentParentOrigin()
2028 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentParentOrigin(swigCPtr), true);
2029 if (NDalicPINVOKE.SWIGPendingException.Pending)
2030 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2034 internal void SetAnchorPoint(Vector3 anchorPoint)
2036 NDalicPINVOKE.Actor_SetAnchorPoint(swigCPtr, Vector3.getCPtr(anchorPoint));
2037 if (NDalicPINVOKE.SWIGPendingException.Pending)
2038 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2041 internal Vector3 GetCurrentAnchorPoint()
2043 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentAnchorPoint(swigCPtr), true);
2044 if (NDalicPINVOKE.SWIGPendingException.Pending)
2045 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2049 internal void SetSize(float width, float height)
2051 NDalicPINVOKE.Actor_SetSize__SWIG_0(swigCPtr, width, height);
2052 if (NDalicPINVOKE.SWIGPendingException.Pending)
2053 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2056 internal void SetSize(float width, float height, float depth)
2058 NDalicPINVOKE.Actor_SetSize__SWIG_1(swigCPtr, width, height, depth);
2059 if (NDalicPINVOKE.SWIGPendingException.Pending)
2060 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2063 internal void SetSize(Vector2 size)
2065 NDalicPINVOKE.Actor_SetSize__SWIG_2(swigCPtr, Vector2.getCPtr(size));
2066 if (NDalicPINVOKE.SWIGPendingException.Pending)
2067 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2070 internal void SetSize(Vector3 size)
2072 NDalicPINVOKE.Actor_SetSize__SWIG_3(swigCPtr, Vector3.getCPtr(size));
2073 if (NDalicPINVOKE.SWIGPendingException.Pending)
2074 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2077 internal Vector3 GetTargetSize()
2079 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetTargetSize(swigCPtr), true);
2080 if (NDalicPINVOKE.SWIGPendingException.Pending)
2081 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2085 internal Size GetCurrentSize()
2087 Size ret = new Size(NDalicPINVOKE.Actor_GetCurrentSize(swigCPtr), true);
2088 if (NDalicPINVOKE.SWIGPendingException.Pending)
2089 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2093 internal Vector3 GetNaturalSize()
2095 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetNaturalSize(swigCPtr), true);
2096 if (NDalicPINVOKE.SWIGPendingException.Pending)
2097 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2101 internal void SetPosition(float x, float y)
2103 NDalicPINVOKE.Actor_SetPosition__SWIG_0(swigCPtr, x, y);
2104 if (NDalicPINVOKE.SWIGPendingException.Pending)
2105 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2108 internal void SetPosition(float x, float y, float z)
2110 NDalicPINVOKE.Actor_SetPosition__SWIG_1(swigCPtr, x, y, z);
2111 if (NDalicPINVOKE.SWIGPendingException.Pending)
2112 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2115 internal void SetPosition(Vector3 position)
2117 NDalicPINVOKE.Actor_SetPosition__SWIG_2(swigCPtr, Vector3.getCPtr(position));
2118 if (NDalicPINVOKE.SWIGPendingException.Pending)
2119 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2122 internal void SetX(float x)
2124 NDalicPINVOKE.Actor_SetX(swigCPtr, x);
2125 if (NDalicPINVOKE.SWIGPendingException.Pending)
2126 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2129 internal void SetY(float y)
2131 NDalicPINVOKE.Actor_SetY(swigCPtr, y);
2132 if (NDalicPINVOKE.SWIGPendingException.Pending)
2133 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2136 internal void SetZ(float z)
2138 NDalicPINVOKE.Actor_SetZ(swigCPtr, z);
2139 if (NDalicPINVOKE.SWIGPendingException.Pending)
2140 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2143 internal void TranslateBy(Vector3 distance)
2145 NDalicPINVOKE.Actor_TranslateBy(swigCPtr, Vector3.getCPtr(distance));
2146 if (NDalicPINVOKE.SWIGPendingException.Pending)
2147 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2150 internal Position GetCurrentPosition()
2152 Position ret = new Position(NDalicPINVOKE.Actor_GetCurrentPosition(swigCPtr), true);
2153 if (NDalicPINVOKE.SWIGPendingException.Pending)
2154 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2158 internal Vector3 GetCurrentWorldPosition()
2160 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentWorldPosition(swigCPtr), true);
2161 if (NDalicPINVOKE.SWIGPendingException.Pending)
2162 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2166 internal void SetInheritPosition(bool inherit)
2168 NDalicPINVOKE.Actor_SetInheritPosition(swigCPtr, inherit);
2169 if (NDalicPINVOKE.SWIGPendingException.Pending)
2170 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2173 internal bool IsPositionInherited()
2175 bool ret = NDalicPINVOKE.Actor_IsPositionInherited(swigCPtr);
2176 if (NDalicPINVOKE.SWIGPendingException.Pending)
2177 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2181 internal void SetOrientation(Degree angle, Vector3 axis)
2183 NDalicPINVOKE.Actor_SetOrientation__SWIG_0(swigCPtr, Degree.getCPtr(angle), Vector3.getCPtr(axis));
2184 if (NDalicPINVOKE.SWIGPendingException.Pending)
2185 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2188 internal void SetOrientation(Radian angle, Vector3 axis)
2190 NDalicPINVOKE.Actor_SetOrientation__SWIG_1(swigCPtr, Radian.getCPtr(angle), Vector3.getCPtr(axis));
2191 if (NDalicPINVOKE.SWIGPendingException.Pending)
2192 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2195 internal void SetOrientation(Rotation orientation)
2197 NDalicPINVOKE.Actor_SetOrientation__SWIG_2(swigCPtr, Rotation.getCPtr(orientation));
2198 if (NDalicPINVOKE.SWIGPendingException.Pending)
2199 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2202 internal void RotateBy(Degree angle, Vector3 axis)
2204 NDalicPINVOKE.Actor_RotateBy__SWIG_0(swigCPtr, Degree.getCPtr(angle), Vector3.getCPtr(axis));
2205 if (NDalicPINVOKE.SWIGPendingException.Pending)
2206 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2209 internal void RotateBy(Radian angle, Vector3 axis)
2211 NDalicPINVOKE.Actor_RotateBy__SWIG_1(swigCPtr, Radian.getCPtr(angle), Vector3.getCPtr(axis));
2212 if (NDalicPINVOKE.SWIGPendingException.Pending)
2213 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2216 internal void RotateBy(Rotation relativeRotation)
2218 NDalicPINVOKE.Actor_RotateBy__SWIG_2(swigCPtr, Rotation.getCPtr(relativeRotation));
2219 if (NDalicPINVOKE.SWIGPendingException.Pending)
2220 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2223 internal Rotation GetCurrentOrientation()
2225 Rotation ret = new Rotation(NDalicPINVOKE.Actor_GetCurrentOrientation(swigCPtr), true);
2226 if (NDalicPINVOKE.SWIGPendingException.Pending)
2227 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2231 internal void SetInheritOrientation(bool inherit)
2233 NDalicPINVOKE.Actor_SetInheritOrientation(swigCPtr, inherit);
2234 if (NDalicPINVOKE.SWIGPendingException.Pending)
2235 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2238 internal bool IsOrientationInherited()
2240 bool ret = NDalicPINVOKE.Actor_IsOrientationInherited(swigCPtr);
2241 if (NDalicPINVOKE.SWIGPendingException.Pending)
2242 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2246 internal Rotation GetCurrentWorldOrientation()
2248 Rotation ret = new Rotation(NDalicPINVOKE.Actor_GetCurrentWorldOrientation(swigCPtr), true);
2249 if (NDalicPINVOKE.SWIGPendingException.Pending)
2250 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2254 internal void SetScale(float scale)
2256 NDalicPINVOKE.Actor_SetScale__SWIG_0(swigCPtr, scale);
2257 if (NDalicPINVOKE.SWIGPendingException.Pending)
2258 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2261 internal void SetScale(float scaleX, float scaleY, float scaleZ)
2263 NDalicPINVOKE.Actor_SetScale__SWIG_1(swigCPtr, scaleX, scaleY, scaleZ);
2264 if (NDalicPINVOKE.SWIGPendingException.Pending)
2265 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2268 internal void SetScale(Vector3 scale)
2270 NDalicPINVOKE.Actor_SetScale__SWIG_2(swigCPtr, Vector3.getCPtr(scale));
2271 if (NDalicPINVOKE.SWIGPendingException.Pending)
2272 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2275 internal void ScaleBy(Vector3 relativeScale)
2277 NDalicPINVOKE.Actor_ScaleBy(swigCPtr, Vector3.getCPtr(relativeScale));
2278 if (NDalicPINVOKE.SWIGPendingException.Pending)
2279 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2282 internal Vector3 GetCurrentScale()
2284 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentScale(swigCPtr), true);
2285 if (NDalicPINVOKE.SWIGPendingException.Pending)
2286 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2290 internal Vector3 GetCurrentWorldScale()
2292 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentWorldScale(swigCPtr), true);
2293 if (NDalicPINVOKE.SWIGPendingException.Pending)
2294 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2298 internal void SetInheritScale(bool inherit)
2300 NDalicPINVOKE.Actor_SetInheritScale(swigCPtr, inherit);
2301 if (NDalicPINVOKE.SWIGPendingException.Pending)
2302 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2305 internal bool IsScaleInherited()
2307 bool ret = NDalicPINVOKE.Actor_IsScaleInherited(swigCPtr);
2308 if (NDalicPINVOKE.SWIGPendingException.Pending)
2309 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2313 internal Matrix GetCurrentWorldMatrix()
2315 Matrix ret = new Matrix(NDalicPINVOKE.Actor_GetCurrentWorldMatrix(swigCPtr), true);
2316 if (NDalicPINVOKE.SWIGPendingException.Pending)
2317 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2321 internal void SetVisible(bool visible)
2323 NDalicPINVOKE.Actor_SetVisible(swigCPtr, visible);
2324 if (NDalicPINVOKE.SWIGPendingException.Pending)
2325 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2328 internal bool IsVisible()
2330 bool ret = NDalicPINVOKE.Actor_IsVisible(swigCPtr);
2331 if (NDalicPINVOKE.SWIGPendingException.Pending)
2332 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2336 internal void SetOpacity(float opacity)
2338 NDalicPINVOKE.Actor_SetOpacity(swigCPtr, opacity);
2339 if (NDalicPINVOKE.SWIGPendingException.Pending)
2340 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2343 internal float GetCurrentOpacity()
2345 float ret = NDalicPINVOKE.Actor_GetCurrentOpacity(swigCPtr);
2346 if (NDalicPINVOKE.SWIGPendingException.Pending)
2347 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2351 internal void SetColor(Vector4 color)
2353 NDalicPINVOKE.Actor_SetColor(swigCPtr, Vector4.getCPtr(color));
2354 if (NDalicPINVOKE.SWIGPendingException.Pending)
2355 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2358 internal Vector4 GetCurrentColor()
2360 Vector4 ret = new Vector4(NDalicPINVOKE.Actor_GetCurrentColor(swigCPtr), true);
2361 if (NDalicPINVOKE.SWIGPendingException.Pending)
2362 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2366 internal void SetColorMode(ColorMode colorMode)
2368 NDalicPINVOKE.Actor_SetColorMode(swigCPtr, (int)colorMode);
2369 if (NDalicPINVOKE.SWIGPendingException.Pending)
2370 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2373 internal ColorMode GetColorMode()
2375 ColorMode ret = (ColorMode)NDalicPINVOKE.Actor_GetColorMode(swigCPtr);
2376 if (NDalicPINVOKE.SWIGPendingException.Pending)
2377 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2381 internal Vector4 GetCurrentWorldColor()
2383 Vector4 ret = new Vector4(NDalicPINVOKE.Actor_GetCurrentWorldColor(swigCPtr), true);
2384 if (NDalicPINVOKE.SWIGPendingException.Pending)
2385 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2389 internal void SetDrawMode(DrawModeType drawMode)
2391 NDalicPINVOKE.Actor_SetDrawMode(swigCPtr, (int)drawMode);
2392 if (NDalicPINVOKE.SWIGPendingException.Pending)
2393 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2396 internal DrawModeType GetDrawMode()
2398 DrawModeType ret = (DrawModeType)NDalicPINVOKE.Actor_GetDrawMode(swigCPtr);
2399 if (NDalicPINVOKE.SWIGPendingException.Pending)
2400 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2405 /// Converts screen coordinates into the view's coordinate system using the default camera.
2407 /// <pre>The View has been initialized.</pre>
2408 /// <remarks>The view coordinates are relative to the top-left(0.0, 0.0, 0.5)</remarks>
2409 /// <param name="localX">On return, the X-coordinate relative to the view</param>
2410 /// <param name="localY">On return, the Y-coordinate relative to the view</param>
2411 /// <param name="screenX">The screen X-coordinate</param>
2412 /// <param name="screenY">The screen Y-coordinate</param>
2413 /// <returns>True if the conversion succeeded</returns>
2414 public bool ScreenToLocal(out float localX, out float localY, float screenX, float screenY)
2416 bool ret = NDalicPINVOKE.Actor_ScreenToLocal(swigCPtr, out localX, out localY, screenX, screenY);
2417 if (NDalicPINVOKE.SWIGPendingException.Pending)
2418 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2422 internal void SetKeyboardFocusable(bool focusable)
2424 NDalicPINVOKE.Actor_SetKeyboardFocusable(swigCPtr, focusable);
2425 if (NDalicPINVOKE.SWIGPendingException.Pending)
2426 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2429 internal bool IsKeyboardFocusable()
2431 bool ret = NDalicPINVOKE.Actor_IsKeyboardFocusable(swigCPtr);
2432 if (NDalicPINVOKE.SWIGPendingException.Pending)
2433 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2437 internal void SetResizePolicy(ResizePolicyType policy, DimensionType dimension)
2439 NDalicPINVOKE.Actor_SetResizePolicy(swigCPtr, (int)policy, (int)dimension);
2440 if (NDalicPINVOKE.SWIGPendingException.Pending)
2441 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2444 internal ResizePolicyType GetResizePolicy(DimensionType dimension)
2446 ResizePolicyType ret = (ResizePolicyType)NDalicPINVOKE.Actor_GetResizePolicy(swigCPtr, (int)dimension);
2447 if (NDalicPINVOKE.SWIGPendingException.Pending)
2448 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2453 /// Sets the relative to parent size factor of the view.<br>
2454 /// This factor is only used when ResizePolicy is set to either:
2455 /// ResizePolicy::SIZE_RELATIVE_TO_PARENT or ResizePolicy::SIZE_FIXED_OFFSET_FROM_PARENT.<br>
2456 /// This view's size is set to the view's size multiplied by or added to this factor, depending on ResizePolicy.<br>
2458 /// <pre>The View has been initialized.</pre>
2459 /// <param name="factor">A Vector3 representing the relative factor to be applied to each axis</param>
2460 public void SetSizeModeFactor(Vector3 factor)
2462 NDalicPINVOKE.Actor_SetSizeModeFactor(swigCPtr, Vector3.getCPtr(factor));
2463 if (NDalicPINVOKE.SWIGPendingException.Pending)
2464 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2467 internal Vector3 GetSizeModeFactor()
2469 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetSizeModeFactor(swigCPtr), true);
2470 if (NDalicPINVOKE.SWIGPendingException.Pending)
2471 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2476 /// Calculates the height of the view given a width.<br>
2477 /// The natural size is used for default calculation. <br>
2478 /// size 0 is treated as aspect ratio 1:1.<br>
2480 /// <param name="width">Width to use</param>
2481 /// <returns>The height based on the width</returns>
2482 public float GetHeightForWidth(float width)
2484 float ret = NDalicPINVOKE.Actor_GetHeightForWidth(swigCPtr, width);
2485 if (NDalicPINVOKE.SWIGPendingException.Pending)
2486 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2491 /// Calculates the width of the view given a height.<br>
2492 /// The natural size is used for default calculation.<br>
2493 /// size 0 is treated as aspect ratio 1:1.<br>
2495 /// <param name="height">Height to use</param>
2496 /// <returns>The width based on the height</returns>
2497 public float GetWidthForHeight(float height)
2499 float ret = NDalicPINVOKE.Actor_GetWidthForHeight(swigCPtr, height);
2500 if (NDalicPINVOKE.SWIGPendingException.Pending)
2501 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2505 public float GetRelayoutSize(DimensionType dimension)
2507 float ret = NDalicPINVOKE.Actor_GetRelayoutSize(swigCPtr, (int)dimension);
2508 if (NDalicPINVOKE.SWIGPendingException.Pending)
2509 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2513 public void SetPadding(PaddingType padding)
2515 NDalicPINVOKE.Actor_SetPadding(swigCPtr, PaddingType.getCPtr(padding));
2516 if (NDalicPINVOKE.SWIGPendingException.Pending)
2517 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2520 public void GetPadding(PaddingType paddingOut)
2522 NDalicPINVOKE.Actor_GetPadding(swigCPtr, PaddingType.getCPtr(paddingOut));
2523 if (NDalicPINVOKE.SWIGPendingException.Pending)
2524 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2527 internal void SetMinimumSize(Vector2 size)
2529 NDalicPINVOKE.Actor_SetMinimumSize(swigCPtr, Vector2.getCPtr(size));
2530 if (NDalicPINVOKE.SWIGPendingException.Pending)
2531 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2534 internal Vector2 GetMinimumSize()
2536 Vector2 ret = new Vector2(NDalicPINVOKE.Actor_GetMinimumSize(swigCPtr), true);
2537 if (NDalicPINVOKE.SWIGPendingException.Pending)
2538 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2542 internal void SetMaximumSize(Vector2 size)
2544 NDalicPINVOKE.Actor_SetMaximumSize(swigCPtr, Vector2.getCPtr(size));
2545 if (NDalicPINVOKE.SWIGPendingException.Pending)
2546 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2549 internal Vector2 GetMaximumSize()
2551 Vector2 ret = new Vector2(NDalicPINVOKE.Actor_GetMaximumSize(swigCPtr), true);
2552 if (NDalicPINVOKE.SWIGPendingException.Pending)
2553 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2557 internal int GetHierarchyDepth()
2559 int ret = NDalicPINVOKE.Actor_GetHierarchyDepth(swigCPtr);
2560 if (NDalicPINVOKE.SWIGPendingException.Pending)
2561 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2565 internal uint AddRenderer(Renderer renderer)
2567 uint ret = NDalicPINVOKE.Actor_AddRenderer(swigCPtr, Renderer.getCPtr(renderer));
2568 if (NDalicPINVOKE.SWIGPendingException.Pending)
2569 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2573 internal uint GetRendererCount()
2575 uint ret = NDalicPINVOKE.Actor_GetRendererCount(swigCPtr);
2576 if (NDalicPINVOKE.SWIGPendingException.Pending)
2577 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2581 internal Renderer GetRendererAt(uint index)
2583 Renderer ret = new Renderer(NDalicPINVOKE.Actor_GetRendererAt(swigCPtr, index), true);
2584 if (NDalicPINVOKE.SWIGPendingException.Pending)
2585 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2589 internal void RemoveRenderer(Renderer renderer)
2591 NDalicPINVOKE.Actor_RemoveRenderer__SWIG_0(swigCPtr, Renderer.getCPtr(renderer));
2592 if (NDalicPINVOKE.SWIGPendingException.Pending)
2593 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2596 internal void RemoveRenderer(uint index)
2598 NDalicPINVOKE.Actor_RemoveRenderer__SWIG_1(swigCPtr, index);
2599 if (NDalicPINVOKE.SWIGPendingException.Pending)
2600 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2603 internal TouchDataSignal TouchSignal()
2605 TouchDataSignal ret = new TouchDataSignal(NDalicPINVOKE.Actor_TouchSignal(swigCPtr), false);
2606 if (NDalicPINVOKE.SWIGPendingException.Pending)
2607 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2611 internal HoverSignal HoveredSignal()
2613 HoverSignal ret = new HoverSignal(NDalicPINVOKE.Actor_HoveredSignal(swigCPtr), false);
2614 if (NDalicPINVOKE.SWIGPendingException.Pending)
2615 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2619 internal WheelSignal WheelEventSignal()
2621 WheelSignal ret = new WheelSignal(NDalicPINVOKE.Actor_WheelEventSignal(swigCPtr), false);
2622 if (NDalicPINVOKE.SWIGPendingException.Pending)
2623 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2627 internal ViewSignal OnWindowSignal()
2629 ViewSignal ret = new ViewSignal(NDalicPINVOKE.Actor_OnStageSignal(swigCPtr), false);
2630 if (NDalicPINVOKE.SWIGPendingException.Pending)
2631 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2635 internal ViewSignal OffWindowSignal()
2637 ViewSignal ret = new ViewSignal(NDalicPINVOKE.Actor_OffStageSignal(swigCPtr), false);
2638 if (NDalicPINVOKE.SWIGPendingException.Pending)
2639 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2643 internal ViewSignal OnRelayoutSignal()
2645 ViewSignal ret = new ViewSignal(NDalicPINVOKE.Actor_OnRelayoutSignal(swigCPtr), false);
2646 if (NDalicPINVOKE.SWIGPendingException.Pending)
2647 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2651 internal ViewVisibilityChangedSignal VisibilityChangedSignal(View view) {
2652 ViewVisibilityChangedSignal ret = new ViewVisibilityChangedSignal(NDalicPINVOKE.VisibilityChangedSignal(View.getCPtr(view)), false);
2653 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2658 /// Gets/Sets the origin of an view, within its parent's area.<br>
2659 /// This is expressed in unit coordinates, such that (0.0, 0.0, 0.5) is the top-left corner of the parent, and(1.0, 1.0, 0.5) is the bottom-right corner.<br>
2660 /// The default parent-origin is ParentOrigin.TopLeft (0.0, 0.0, 0.5).<br>
2661 /// An view's position is the distance between this origin, and the view's anchor-point.<br>
2663 /// <pre>The View has been initialized.</pre>
2664 public Position ParentOrigin
2668 Position temp = new Position(0.0f, 0.0f, 0.0f);
2669 GetProperty(View.Property.PARENT_ORIGIN).Get(temp);
2674 SetProperty(View.Property.PARENT_ORIGIN, new Tizen.NUI.PropertyValue(value));
2678 internal float ParentOriginX
2683 GetProperty(View.Property.PARENT_ORIGIN_X).Get(out temp);
2688 SetProperty(View.Property.PARENT_ORIGIN_X, new Tizen.NUI.PropertyValue(value));
2692 internal float ParentOriginY
2697 GetProperty(View.Property.PARENT_ORIGIN_Y).Get(out temp);
2702 SetProperty(View.Property.PARENT_ORIGIN_Y, new Tizen.NUI.PropertyValue(value));
2706 internal float ParentOriginZ
2711 GetProperty(View.Property.PARENT_ORIGIN_Z).Get(out temp);
2716 SetProperty(View.Property.PARENT_ORIGIN_Z, new Tizen.NUI.PropertyValue(value));
2721 /// Gets/Sets the anchor-point of an view.<br>
2722 /// This is expressed in unit coordinates, such that (0.0, 0.0, 0.5) is the top-left corner of the view, and (1.0, 1.0, 0.5) is the bottom-right corner.<br>
2723 /// The default anchor point is AnchorPoint.Center (0.5, 0.5, 0.5).<br>
2724 /// An view position is the distance between its parent-origin and this anchor-point.<br>
2725 /// An view's orientation is the rotation from its default orientation, the rotation is centered around its anchor-point.<br>
2726 /// <pre>The View has been initialized.</pre>
2728 public Position PivotPoint
2732 Position temp = new Position(0.0f, 0.0f, 0.0f);
2733 GetProperty(View.Property.ANCHOR_POINT).Get(temp);
2738 SetProperty(View.Property.ANCHOR_POINT, new Tizen.NUI.PropertyValue(value));
2742 internal float PivotPointX
2747 GetProperty(View.Property.ANCHOR_POINT_X).Get(out temp);
2752 SetProperty(View.Property.ANCHOR_POINT_X, new Tizen.NUI.PropertyValue(value));
2756 internal float PivotPointY
2761 GetProperty(View.Property.ANCHOR_POINT_Y).Get(out temp);
2766 SetProperty(View.Property.ANCHOR_POINT_Y, new Tizen.NUI.PropertyValue(value));
2770 internal float PivotPointZ
2775 GetProperty(View.Property.ANCHOR_POINT_Z).Get(out temp);
2780 SetProperty(View.Property.ANCHOR_POINT_Z, new Tizen.NUI.PropertyValue(value));
2785 /// Gets/Sets the size of an view.<br>
2786 /// Geometry can be scaled to fit within this area.<br>
2787 /// This does not interfere with the views scale factor.<br>
2793 Size temp = new Size(0.0f, 0.0f, 0.0f);
2794 GetProperty(View.Property.SIZE).Get(temp);
2799 SetProperty(View.Property.SIZE, new Tizen.NUI.PropertyValue(value));
2804 /// Gets/Sets the size width of an view.
2806 public float SizeWidth
2811 GetProperty(View.Property.SIZE_WIDTH).Get(out temp);
2816 SetProperty(View.Property.SIZE_WIDTH, new Tizen.NUI.PropertyValue(value));
2821 /// Gets/Sets the size height of an view.
2823 public float SizeHeight
2828 GetProperty(View.Property.SIZE_HEIGHT).Get(out temp);
2833 SetProperty(View.Property.SIZE_HEIGHT, new Tizen.NUI.PropertyValue(value));
2838 /// Gets/Sets the position of the View.<br>
2839 /// By default, sets the position vector between the parent origin and anchor point(default).<br>
2840 /// If Position inheritance if disabled, sets the world position.<br>
2842 public Position Position
2846 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
2847 GetProperty(View.Property.POSITION).Get(temp);
2852 SetProperty(View.Property.POSITION, new Tizen.NUI.PropertyValue(value));
2857 /// Gets/Sets the position x of the View.
2859 public float PositionX
2864 GetProperty(View.Property.POSITION_X).Get(out temp);
2869 SetProperty(View.Property.POSITION_X, new Tizen.NUI.PropertyValue(value));
2874 /// Gets/Sets the position y of the View.
2876 public float PositionY
2881 GetProperty(View.Property.POSITION_Y).Get(out temp);
2886 SetProperty(View.Property.POSITION_Y, new Tizen.NUI.PropertyValue(value));
2891 /// Gets/Sets the position z of the View.
2893 public float PositionZ
2898 GetProperty(View.Property.POSITION_Z).Get(out temp);
2903 SetProperty(View.Property.POSITION_Z, new Tizen.NUI.PropertyValue(value));
2908 /// Gets/Sets the world position of the View.
2910 public Vector3 WorldPosition
2914 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
2915 GetProperty(View.Property.WORLD_POSITION).Get(temp);
2920 internal float WorldPositionX
2925 GetProperty(View.Property.WORLD_POSITION_X).Get(out temp);
2930 internal float WorldPositionY
2935 GetProperty(View.Property.WORLD_POSITION_Y).Get(out temp);
2940 internal float WorldPositionZ
2945 GetProperty(View.Property.WORLD_POSITION_Z).Get(out temp);
2951 /// Gets/Sets the orientation of the View.<br>
2952 /// An view's orientation is the rotation from its default orientation, and the rotation is centered around its anchor-point.<br>
2954 /// <remarks>This is an asynchronous method.</remarks>
2955 public Rotation Orientation
2959 Rotation temp = new Rotation();
2960 GetProperty(View.Property.ORIENTATION).Get(temp);
2965 SetProperty(View.Property.ORIENTATION, new Tizen.NUI.PropertyValue(value));
2970 /// Gets/Sets the world orientation of the View.<br>
2972 public Rotation WorldOrientation
2976 Rotation temp = new Rotation();
2977 GetProperty(View.Property.WORLD_ORIENTATION).Get(temp);
2983 /// Gets/Sets the scale factor applied to an view.<br>
2985 public Vector3 Scale
2989 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
2990 GetProperty(View.Property.SCALE).Get(temp);
2995 SetProperty(View.Property.SCALE, new Tizen.NUI.PropertyValue(value));
3000 /// Gets/Sets the scale x factor applied to an view.
3007 GetProperty(View.Property.SCALE_X).Get(out temp);
3012 SetProperty(View.Property.SCALE_X, new Tizen.NUI.PropertyValue(value));
3017 /// Gets/Sets the scale y factor applied to an view.
3024 GetProperty(View.Property.SCALE_Y).Get(out temp);
3029 SetProperty(View.Property.SCALE_Y, new Tizen.NUI.PropertyValue(value));
3034 /// Gets/Sets the scale z factor applied to an view.
3041 GetProperty(View.Property.SCALE_Z).Get(out temp);
3046 SetProperty(View.Property.SCALE_Z, new Tizen.NUI.PropertyValue(value));
3051 /// Gets the world scale of View.
3053 public Vector3 WorldScale
3057 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
3058 GetProperty(View.Property.WORLD_SCALE).Get(temp);
3064 /// Retrieves the visibility flag of an view.
3067 /// If an view is not visible, then the view and its children will not be rendered.
3068 /// This is regardless of the individual visibility values of the children i.e.an view will only be rendered if all of its parents have visibility set to true.
3075 GetProperty(View.Property.VISIBLE).Get(out temp);
3077 }/* only get is required : removed
3080 SetProperty(View.Property.VISIBLE, new Tizen.NUI.PropertyValue(value));
3085 /// Gets the view's world color.
3087 public Vector4 WorldColor
3091 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
3092 GetProperty(View.Property.WORLD_COLOR).Get(temp);
3097 internal Matrix WorldMatrix
3101 Matrix temp = new Matrix();
3102 GetProperty(View.Property.WORLD_MATRIX).Get(temp);
3108 /// Gets/Sets the View's name.
3115 GetProperty(View.Property.NAME).Get(out temp);
3120 SetProperty(View.Property.NAME, new Tizen.NUI.PropertyValue(value));
3125 /// Get the number of children held by the view.
3127 public uint ChildCount
3131 return GetChildCount();
3136 /// Gets/Sets the status of whether an view should emit touch or hover signals.
3138 public bool Sensitive
3143 GetProperty(View.Property.SENSITIVE).Get(out temp);
3148 SetProperty(View.Property.SENSITIVE, new Tizen.NUI.PropertyValue(value));
3153 /// Gets/Sets the status of whether the view should receive a notification when touch or hover motion events leave the boundary of the view.
3155 public bool LeaveRequired
3160 GetProperty(View.Property.LEAVE_REQUIRED).Get(out temp);
3165 SetProperty(View.Property.LEAVE_REQUIRED, new Tizen.NUI.PropertyValue(value));
3170 /// Gets/Sets the status of whether a child view inherits it's parent's orientation.
3172 public bool InheritOrientation
3177 GetProperty(View.Property.INHERIT_ORIENTATION).Get(out temp);
3182 SetProperty(View.Property.INHERIT_ORIENTATION, new Tizen.NUI.PropertyValue(value));
3187 /// Gets/Sets the status of whether a child view inherits it's parent's scale.
3189 public bool InheritScale
3194 GetProperty(View.Property.INHERIT_SCALE).Get(out temp);
3199 SetProperty(View.Property.INHERIT_SCALE, new Tizen.NUI.PropertyValue(value));
3204 /// Gets/Sets the status of how the view and its children should be drawn.<br>
3205 /// Not all views are renderable, but DrawMode can be inherited from any view.<br>
3206 /// If an object is in a 3D layer, it will be depth-tested against other objects in the world i.e. it may be obscured if other objects are in front.<br>
3207 /// If DrawMode.Overlay2D is used, the view and its children will be drawn as a 2D overlay.<br>
3208 /// Overlay views are drawn in a separate pass, after all non-overlay views within the Layer.<br>
3209 /// For overlay views, the drawing order is with respect to tree levels of Views, and depth-testing will not be used.<br>
3211 public DrawModeType DrawMode
3216 if (GetProperty(View.Property.DRAW_MODE).Get(out temp) == false)
3219 Tizen.Log.Error("NUI", "DrawMode get error!");
3225 return DrawModeType.Normal;
3227 return DrawModeType.Overlay2D;
3229 return DrawModeType.Stencil;
3231 return DrawModeType.Normal;
3236 SetProperty(View.Property.DRAW_MODE, new Tizen.NUI.PropertyValue((int)value));
3241 /// Gets/Sets the relative to parent size factor of the view.<br>
3242 /// This factor is only used when ResizePolicyType is set to either: ResizePolicyType.SizeRelativeToParent or ResizePolicyType.SizeFixedOffsetFromParent.<br>
3243 /// This view's size is set to the view's size multiplied by or added to this factor, depending on ResizePolicyType.<br>
3245 public Vector3 SizeModeFactor
3249 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
3250 GetProperty(View.Property.SIZE_MODE_FACTOR).Get(temp);
3255 SetProperty(View.Property.SIZE_MODE_FACTOR, new Tizen.NUI.PropertyValue(value));
3260 /// Gets/Sets the width resize policy to be used.
3262 public ResizePolicyType WidthResizePolicy
3267 if (GetProperty(View.Property.WIDTH_RESIZE_POLICY).Get(out temp) == false)
3270 Tizen.Log.Error("NUI", "WidthResizePolicy get error!");
3276 return ResizePolicyType.Fixed;
3277 case "USE_NATURAL_SIZE":
3278 return ResizePolicyType.UseNaturalSize;
3279 case "FILL_TO_PARENT":
3280 return ResizePolicyType.FillToParent;
3281 case "SIZE_RELATIVE_TO_PARENT":
3282 return ResizePolicyType.SizeRelativeToParent;
3283 case "SIZE_FIXED_OFFSET_FROM_PARENT":
3284 return ResizePolicyType.SizeFixedOffsetFromParent;
3285 case "FIT_TO_CHILDREN":
3286 return ResizePolicyType.FitToChildren;
3287 case "DIMENSION_DEPENDENCY":
3288 return ResizePolicyType.DimensionDependency;
3289 case "USE_ASSIGNED_SIZE":
3290 return ResizePolicyType.UseAssignedSize;
3292 return ResizePolicyType.Fixed;
3297 SetProperty(View.Property.WIDTH_RESIZE_POLICY, new Tizen.NUI.PropertyValue((int)value));
3302 /// Gets/Sets the height resize policy to be used.
3304 public ResizePolicyType HeightResizePolicy
3309 if (GetProperty(View.Property.HEIGHT_RESIZE_POLICY).Get(out temp) == false)
3312 Tizen.Log.Error("NUI", "HeightResizePolicy get error!");
3318 return ResizePolicyType.Fixed;
3319 case "USE_NATURAL_SIZE":
3320 return ResizePolicyType.UseNaturalSize;
3321 case "FILL_TO_PARENT":
3322 return ResizePolicyType.FillToParent;
3323 case "SIZE_RELATIVE_TO_PARENT":
3324 return ResizePolicyType.SizeRelativeToParent;
3325 case "SIZE_FIXED_OFFSET_FROM_PARENT":
3326 return ResizePolicyType.SizeFixedOffsetFromParent;
3327 case "FIT_TO_CHILDREN":
3328 return ResizePolicyType.FitToChildren;
3329 case "DIMENSION_DEPENDENCY":
3330 return ResizePolicyType.DimensionDependency;
3331 case "USE_ASSIGNED_SIZE":
3332 return ResizePolicyType.UseAssignedSize;
3334 return ResizePolicyType.Fixed;
3339 SetProperty(View.Property.HEIGHT_RESIZE_POLICY, new Tizen.NUI.PropertyValue((int)value));
3344 /// Gets/Sets the policy to use when setting size with size negotiation.<br>
3345 /// Defaults to SizeScalePolicyType.UseSizeSet.<br>
3347 public SizeScalePolicyType SizeScalePolicy
3352 if (GetProperty(View.Property.SIZE_SCALE_POLICY).Get(out temp) == false)
3355 Tizen.Log.Error("NUI", "SizeScalePolicy get error!");
3360 case "USE_SIZE_SET":
3361 return SizeScalePolicyType.UseSizeSet;
3362 case "FIT_WITH_ASPECT_RATIO":
3363 return SizeScalePolicyType.FitWithAspectRatio;
3364 case "FILL_WITH_ASPECT_RATIO":
3365 return SizeScalePolicyType.FillWithAspectRatio;
3367 return SizeScalePolicyType.UseSizeSet;
3372 string valueToString = "";
3375 case SizeScalePolicyType.UseSizeSet:
3377 valueToString = "USE_SIZE_SET";
3380 case SizeScalePolicyType.FitWithAspectRatio:
3382 valueToString = "FIT_WITH_ASPECT_RATIO";
3385 case SizeScalePolicyType.FillWithAspectRatio:
3387 valueToString = "FILL_WITH_ASPECT_RATIO";
3392 valueToString = "USE_SIZE_SET";
3396 SetProperty(View.Property.SIZE_SCALE_POLICY, new Tizen.NUI.PropertyValue(valueToString));
3401 /// Gets/Sets the status of whether the width size is dependent on height size.
3403 public bool WidthForHeight
3408 GetProperty(View.Property.WIDTH_FOR_HEIGHT).Get(out temp);
3413 SetProperty(View.Property.WIDTH_FOR_HEIGHT, new Tizen.NUI.PropertyValue(value));
3418 /// Gets/Sets the status of whether the height size is dependent on width size.
3420 public bool HeightForWidth
3425 GetProperty(View.Property.HEIGHT_FOR_WIDTH).Get(out temp);
3430 SetProperty(View.Property.HEIGHT_FOR_WIDTH, new Tizen.NUI.PropertyValue(value));
3435 /// Gets/Sets the padding for use in layout.
3437 public Vector4 Padding
3441 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
3442 GetProperty(View.Property.PADDING).Get(temp);
3447 SetProperty(View.Property.PADDING, new Tizen.NUI.PropertyValue(value));
3452 /// Gets/Sets the minimum size an view can be assigned in size negotiation.
3454 public Size2D MinimumSize
3458 Size2D temp = new Size2D(0, 0);
3459 GetProperty(View.Property.MINIMUM_SIZE).Get(temp);
3464 SetProperty(View.Property.MINIMUM_SIZE, new Tizen.NUI.PropertyValue(value));
3469 /// Gets/Sets the maximum size an view can be assigned in size negotiation.
3471 public Size2D MaximumSize
3475 Size2D temp = new Size2D(0, 0);
3476 GetProperty(View.Property.MAXIMUM_SIZE).Get(temp);
3481 SetProperty(View.Property.MAXIMUM_SIZE, new Tizen.NUI.PropertyValue(value));
3486 /// Gets/Sets whether a child view inherits it's parent's position.<br>
3487 /// Default is to inherit.<br>
3488 /// Switching this off means that using Position sets the view's world position, i.e. translates from the world origin(0,0,0) to the anchor point of the view.<br>
3490 public bool InheritPosition
3495 GetProperty(View.Property.INHERIT_POSITION).Get(out temp);
3500 SetProperty(View.Property.INHERIT_POSITION, new Tizen.NUI.PropertyValue(value));
3505 /// Gets/Sets clipping behavior(mode) of it's children.
3507 public ClippingModeType ClippingMode
3512 if (GetProperty(View.Property.CLIPPING_MODE).Get(out temp) == false)
3515 Tizen.Log.Error("NUI", "ClippingMode get error!");
3521 return ClippingModeType.Disabled;
3522 case "CLIP_CHILDREN":
3523 return ClippingModeType.ClipChildren;
3525 return ClippingModeType.Disabled;
3530 SetProperty(View.Property.CLIPPING_MODE, new Tizen.NUI.PropertyValue((int)value));