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();
223 e.Key = Tizen.NUI.Key.GetKeyFromPtr(keyEvent);
225 if (_keyEventHandler != null)
227 Delegate[] delegateList = _keyEventHandler.GetInvocationList();
229 // Oring the result of each callback.
230 foreach ( EventHandlerWithReturnType<object, KeyEventArgs, bool> del in delegateList )
232 result |= del( this, e );
239 private EventHandler _onRelayoutEventHandler;
240 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
241 private delegate void OnRelayoutEventCallbackType(IntPtr control);
242 private OnRelayoutEventCallbackType _onRelayoutEventCallback;
245 /// Event for OnRelayout signal which can be used to subscribe/unsubscribe the event handler.<br>
246 /// OnRelayout signal is emitted after the size has been set on the view during relayout.<br>
248 public event EventHandler Relayout
252 if (_onRelayoutEventHandler == null)
254 _onRelayoutEventCallback = OnRelayout;
255 this.OnRelayoutSignal().Connect(_onRelayoutEventCallback);
258 _onRelayoutEventHandler += value;
263 _onRelayoutEventHandler -= value;
265 if (_onRelayoutEventHandler == null && OnRelayoutSignal().Empty() == false)
267 this.OnRelayoutSignal().Disconnect(_onRelayoutEventCallback);
273 // Callback for View OnRelayout signal
274 private void OnRelayout(IntPtr data)
276 if (_onRelayoutEventHandler != null)
278 _onRelayoutEventHandler(this, null);
283 /// Event arguments that passed via Touch signal.
285 public class TouchEventArgs : EventArgs
287 private Touch _touch;
290 /// Touch - contains the information of touch points
305 private EventHandlerWithReturnType<object, TouchEventArgs, bool> _touchDataEventHandler;
306 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
307 private delegate bool TouchDataCallbackType(IntPtr view, IntPtr touchData);
308 private TouchDataCallbackType _touchDataCallback;
311 /// Event for Touched signal which can be used to subscribe/unsubscribe the event handler provided by the user.<br>
312 /// Touched signal is emitted when touch input is received.<br>
314 public event EventHandlerWithReturnType<object, TouchEventArgs, bool> Touch
318 if (_touchDataEventHandler == null)
320 _touchDataCallback = OnTouch;
321 this.TouchSignal().Connect(_touchDataCallback);
324 _touchDataEventHandler += value;
329 _touchDataEventHandler -= value;
331 if (_touchDataEventHandler == null && TouchSignal().Empty() == false)
333 this.TouchSignal().Disconnect(_touchDataCallback);
339 // Callback for View TouchSignal
340 private bool OnTouch(IntPtr view, IntPtr touchData)
342 TouchEventArgs e = new TouchEventArgs();
344 e.Touch = Tizen.NUI.Touch.GetTouchFromPtr(touchData);
346 if (_touchDataEventHandler != null)
348 return _touchDataEventHandler(this, e);
355 /// Event arguments that passed via Hover signal.
357 public class HoverEventArgs : EventArgs
359 private Hover _hover;
362 /// Hover - contains touch points that represent the points that are currently being hovered or the points where a hover has stopped.
377 private EventHandlerWithReturnType<object, HoverEventArgs, bool> _hoverEventHandler;
378 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
379 private delegate bool HoverEventCallbackType(IntPtr view, IntPtr hoverEvent);
380 private HoverEventCallbackType _hoverEventCallback;
383 /// Event for Hovered signal which can be used to subscribe/unsubscribe the event handler provided by the user.<br>
384 /// Hovered signal is emitted when hover input is received.<br>
386 public event EventHandlerWithReturnType<object, HoverEventArgs, bool> Hover
390 if (_hoverEventHandler == null)
392 _hoverEventCallback = OnHoverEvent;
393 this.HoveredSignal().Connect(_hoverEventCallback);
396 _hoverEventHandler += value;
401 _hoverEventHandler -= value;
403 if (_hoverEventHandler == null && HoveredSignal().Empty() == false)
405 this.HoveredSignal().Disconnect(_hoverEventCallback);
411 // Callback for View Hover signal
412 private bool OnHoverEvent(IntPtr view, IntPtr hoverEvent)
414 HoverEventArgs e = new HoverEventArgs();
416 e.Hover = Tizen.NUI.Hover.GetHoverFromPtr(hoverEvent);
418 if (_hoverEventHandler != null)
420 return _hoverEventHandler(this, e);
427 /// Event arguments that passed via Wheel signal.
429 public class WheelEventArgs : EventArgs
431 private Wheel _wheel;
434 /// WheelEvent - store a wheel rolling type : MOUSE_WHEEL or CUSTOM_WHEEL
449 private EventHandlerWithReturnType<object, WheelEventArgs, bool> _wheelEventHandler;
450 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
451 private delegate bool WheelEventCallbackType(IntPtr view, IntPtr wheelEvent);
452 private WheelEventCallbackType _wheelEventCallback;
455 /// Event for WheelMoved signal which can be used to subscribe/unsubscribe the event handler provided by the user.<br>
456 /// WheelMoved signal is emitted when wheel event is received.<br>
458 public event EventHandlerWithReturnType<object, WheelEventArgs, bool> WheelRoll
462 if (_wheelEventHandler == null)
464 _wheelEventCallback = OnWheelEvent;
465 this.WheelEventSignal().Connect(_wheelEventCallback);
468 _wheelEventHandler += value;
473 _wheelEventHandler -= value;
475 if (_wheelEventHandler == null && WheelEventSignal().Empty() == false)
477 this.WheelEventSignal().Disconnect(_wheelEventCallback);
483 // Callback for View Wheel signal
484 private bool OnWheelEvent(IntPtr view, IntPtr wheelEvent)
486 WheelEventArgs e = new WheelEventArgs();
488 e.Wheel = Tizen.NUI.Wheel.GetWheelFromPtr(wheelEvent);
490 if (_wheelEventHandler != null)
492 return _wheelEventHandler(this, e);
498 private EventHandler _onWindowEventHandler;
499 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
500 private delegate void OnWindowEventCallbackType(IntPtr control);
501 private OnWindowEventCallbackType _onWindowEventCallback;
504 /// Event for OnWindow signal which can be used to subscribe/unsubscribe the event handler.<br>
505 /// OnWindow signal is emitted after the view has been connected to the Window.<br>
507 public event EventHandler AddedToWindow
511 if (_onWindowEventHandler == null)
513 _onWindowEventCallback = OnWindow;
514 this.OnWindowSignal().Connect(_onWindowEventCallback);
517 _onWindowEventHandler += value;
522 _onWindowEventHandler -= value;
524 if (_onWindowEventHandler == null && OnWindowSignal().Empty() == false)
526 this.OnWindowSignal().Disconnect(_onWindowEventCallback);
531 // Callback for View OnWindow signal
532 private void OnWindow(IntPtr data)
534 if (_onWindowEventHandler != null)
536 _onWindowEventHandler(this, null);
541 private EventHandler _offWindowEventHandler;
542 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
543 private delegate void OffWindowEventCallbackType(IntPtr control);
544 private OffWindowEventCallbackType _offWindowEventCallback;
547 /// Event for OffWindow signal which can be used to subscribe/unsubscribe the event handler.<br>
548 /// OffWindow signal is emitted after the view has been disconnected from the Window.<br>
550 public event EventHandler RemovedFromWindow
554 if (_offWindowEventHandler == null)
556 _offWindowEventCallback = OffWindow;
557 this.OffWindowSignal().Connect(_offWindowEventCallback);
560 _offWindowEventHandler += value;
565 _offWindowEventHandler -= value;
567 if (_offWindowEventHandler == null && OffWindowSignal().Empty() == false)
569 this.OffWindowSignal().Disconnect(_offWindowEventCallback);
574 // Callback for View OffWindow signal
575 private void OffWindow(IntPtr data)
577 if (_offWindowEventHandler != null)
579 _offWindowEventHandler(this, null);
584 /// Event arguments of visibility changed.
586 public class VisibilityChangedEventArgs : EventArgs
589 private bool _visibility;
590 private VisibilityChangeType _type;
593 /// The view, or child of view, whose visibility has changed.
608 /// Whether the view is now visible or not.
610 public bool Visibility
623 /// Whether the view's visible property has changed or a parent's.
625 public VisibilityChangeType Type
638 private EventHandler<VisibilityChangedEventArgs> _visibilityChangedEventHandler;
639 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
640 private delegate void VisibilityChangedEventCallbackType(IntPtr data, bool visibility, VisibilityChangeType type);
641 private VisibilityChangedEventCallbackType _visibilityChangedEventCallback;
644 /// Event for visibility change which can be used to subscribe/unsubscribe the event handler.<br>
645 /// This signal is emitted when the visible property of this or a parent view is changed.<br>
647 public event EventHandler<VisibilityChangedEventArgs> VisibilityChanged
651 if (_visibilityChangedEventHandler == null)
653 _visibilityChangedEventCallback = OnVisibilityChanged;
654 VisibilityChangedSignal(this).Connect(_visibilityChangedEventCallback);
657 _visibilityChangedEventHandler += value;
662 _visibilityChangedEventHandler -= value;
664 if (_visibilityChangedEventHandler == null && VisibilityChangedSignal(this).Empty() == false)
666 VisibilityChangedSignal(this).Disconnect(_visibilityChangedEventCallback);
671 // Callback for View visibility change signal
672 private void OnVisibilityChanged(IntPtr data, bool visibility, VisibilityChangeType type)
674 VisibilityChangedEventArgs e = new VisibilityChangedEventArgs();
677 e.View = View.GetViewFromPtr(data);
679 e.Visibility = visibility;
682 if (_visibilityChangedEventHandler != null)
684 _visibilityChangedEventHandler(this, e);
688 internal static View GetViewFromPtr(global::System.IntPtr cPtr)
690 View ret = new View(cPtr, false);
691 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
695 internal IntPtr GetPtrfromView()
697 return (IntPtr)swigCPtr;
700 internal class Property
702 internal static readonly int TOOLTIP = NDalicManualPINVOKE.View_Property_TOOLTIP_get();
703 internal static readonly int STATE = NDalicManualPINVOKE.View_Property_STATE_get();
704 internal static readonly int SUB_STATE = NDalicManualPINVOKE.View_Property_SUB_STATE_get();
705 internal static readonly int LEFT_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_LEFT_FOCUSABLE_ACTOR_ID_get();
706 internal static readonly int RIGHT_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_RIGHT_FOCUSABLE_ACTOR_ID_get();
707 internal static readonly int UP_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_UP_FOCUSABLE_ACTOR_ID_get();
708 internal static readonly int DOWN_FOCUSABLE_VIEW_ID = NDalicManualPINVOKE.View_Property_DOWN_FOCUSABLE_ACTOR_ID_get();
709 internal static readonly int STYLE_NAME = NDalicPINVOKE.View_Property_STYLE_NAME_get();
710 internal static readonly int BACKGROUND = NDalicPINVOKE.View_Property_BACKGROUND_get();
711 internal static readonly int SIBLING_ORDER = NDalicManualPINVOKE.Actor_Property_SIBLING_ORDER_get();
712 internal static readonly int OPACITY = NDalicManualPINVOKE.Actor_Property_OPACITY_get();
713 internal static readonly int SCREEN_POSITION = NDalicManualPINVOKE.Actor_Property_SCREEN_POSITION_get();
714 internal static readonly int POSITION_USES_ANCHOR_POINT = NDalicManualPINVOKE.Actor_Property_POSITION_USES_ANCHOR_POINT_get();
715 internal static readonly int PARENT_ORIGIN = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_get();
716 internal static readonly int PARENT_ORIGIN_X = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_X_get();
717 internal static readonly int PARENT_ORIGIN_Y = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_Y_get();
718 internal static readonly int PARENT_ORIGIN_Z = NDalicPINVOKE.Actor_Property_PARENT_ORIGIN_Z_get();
719 internal static readonly int ANCHOR_POINT = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_get();
720 internal static readonly int ANCHOR_POINT_X = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_X_get();
721 internal static readonly int ANCHOR_POINT_Y = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_Y_get();
722 internal static readonly int ANCHOR_POINT_Z = NDalicPINVOKE.Actor_Property_ANCHOR_POINT_Z_get();
723 internal static readonly int SIZE = NDalicPINVOKE.Actor_Property_SIZE_get();
724 internal static readonly int SIZE_WIDTH = NDalicPINVOKE.Actor_Property_SIZE_WIDTH_get();
725 internal static readonly int SIZE_HEIGHT = NDalicPINVOKE.Actor_Property_SIZE_HEIGHT_get();
726 internal static readonly int SIZE_DEPTH = NDalicPINVOKE.Actor_Property_SIZE_DEPTH_get();
727 internal static readonly int POSITION = NDalicPINVOKE.Actor_Property_POSITION_get();
728 internal static readonly int POSITION_X = NDalicPINVOKE.Actor_Property_POSITION_X_get();
729 internal static readonly int POSITION_Y = NDalicPINVOKE.Actor_Property_POSITION_Y_get();
730 internal static readonly int POSITION_Z = NDalicPINVOKE.Actor_Property_POSITION_Z_get();
731 internal static readonly int WORLD_POSITION = NDalicPINVOKE.Actor_Property_WORLD_POSITION_get();
732 internal static readonly int WORLD_POSITION_X = NDalicPINVOKE.Actor_Property_WORLD_POSITION_X_get();
733 internal static readonly int WORLD_POSITION_Y = NDalicPINVOKE.Actor_Property_WORLD_POSITION_Y_get();
734 internal static readonly int WORLD_POSITION_Z = NDalicPINVOKE.Actor_Property_WORLD_POSITION_Z_get();
735 internal static readonly int ORIENTATION = NDalicPINVOKE.Actor_Property_ORIENTATION_get();
736 internal static readonly int WORLD_ORIENTATION = NDalicPINVOKE.Actor_Property_WORLD_ORIENTATION_get();
737 internal static readonly int SCALE = NDalicPINVOKE.Actor_Property_SCALE_get();
738 internal static readonly int SCALE_X = NDalicPINVOKE.Actor_Property_SCALE_X_get();
739 internal static readonly int SCALE_Y = NDalicPINVOKE.Actor_Property_SCALE_Y_get();
740 internal static readonly int SCALE_Z = NDalicPINVOKE.Actor_Property_SCALE_Z_get();
741 internal static readonly int WORLD_SCALE = NDalicPINVOKE.Actor_Property_WORLD_SCALE_get();
742 internal static readonly int VISIBLE = NDalicPINVOKE.Actor_Property_VISIBLE_get();
743 internal static readonly int WORLD_COLOR = NDalicPINVOKE.Actor_Property_WORLD_COLOR_get();
744 internal static readonly int WORLD_MATRIX = NDalicPINVOKE.Actor_Property_WORLD_MATRIX_get();
745 internal static readonly int NAME = NDalicPINVOKE.Actor_Property_NAME_get();
746 internal static readonly int SENSITIVE = NDalicPINVOKE.Actor_Property_SENSITIVE_get();
747 internal static readonly int LEAVE_REQUIRED = NDalicPINVOKE.Actor_Property_LEAVE_REQUIRED_get();
748 internal static readonly int INHERIT_ORIENTATION = NDalicPINVOKE.Actor_Property_INHERIT_ORIENTATION_get();
749 internal static readonly int INHERIT_SCALE = NDalicPINVOKE.Actor_Property_INHERIT_SCALE_get();
750 internal static readonly int DRAW_MODE = NDalicPINVOKE.Actor_Property_DRAW_MODE_get();
751 internal static readonly int SIZE_MODE_FACTOR = NDalicPINVOKE.Actor_Property_SIZE_MODE_FACTOR_get();
752 internal static readonly int WIDTH_RESIZE_POLICY = NDalicPINVOKE.Actor_Property_WIDTH_RESIZE_POLICY_get();
753 internal static readonly int HEIGHT_RESIZE_POLICY = NDalicPINVOKE.Actor_Property_HEIGHT_RESIZE_POLICY_get();
754 internal static readonly int SIZE_SCALE_POLICY = NDalicPINVOKE.Actor_Property_SIZE_SCALE_POLICY_get();
755 internal static readonly int WIDTH_FOR_HEIGHT = NDalicPINVOKE.Actor_Property_WIDTH_FOR_HEIGHT_get();
756 internal static readonly int HEIGHT_FOR_WIDTH = NDalicPINVOKE.Actor_Property_HEIGHT_FOR_WIDTH_get();
757 internal static readonly int PADDING = NDalicPINVOKE.Actor_Property_PADDING_get();
758 internal static readonly int MINIMUM_SIZE = NDalicPINVOKE.Actor_Property_MINIMUM_SIZE_get();
759 internal static readonly int MAXIMUM_SIZE = NDalicPINVOKE.Actor_Property_MAXIMUM_SIZE_get();
760 internal static readonly int INHERIT_POSITION = NDalicPINVOKE.Actor_Property_INHERIT_POSITION_get();
761 internal static readonly int CLIPPING_MODE = NDalicPINVOKE.Actor_Property_CLIPPING_MODE_get();
766 /// Describes the direction to move the focus towards.
768 public enum FocusDirection
779 /// Creates a new instance of a View.
781 public View() : this(NDalicPINVOKE.View_New(), true)
783 PositionUsesAnchorPoint = false;
784 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
787 internal View(View uiControl) : this(NDalicPINVOKE.new_View__SWIG_1(View.getCPtr(uiControl)), true)
789 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
793 /// Downcasts a handle to View handle.<br>
794 /// If handle points to a View, the downcast produces valid handle.<br>
795 /// If not, the returned handle is left uninitialized.<br>
797 /// <param name="handle">Handle to an object</param>
798 /// <returns>A handle to a View or an uninitialized handle</returns>
799 public new static View DownCast(BaseHandle handle)
801 View ret = new View(NDalicPINVOKE.View_DownCast(BaseHandle.getCPtr(handle)), true);
802 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
807 /// Downcasts a handle to class which inherit View handle.
809 /// <typeparam name="T">Class which inherit View</typeparam>
810 /// <param name="view">View to an object</param>
811 /// <returns>A object which inherit View</returns>
812 public static T DownCast<T>(View view) where T : View
814 View ret = ViewRegistry.GetViewFromBaseHandle(view);
822 private View ConvertIdToView(uint id)
828 view = Parent.FindChildById(id);
833 view = Window.Instance.GetRootLayer().FindChildById(id);
839 internal void SetKeyInputFocus()
841 NDalicPINVOKE.View_SetKeyInputFocus(swigCPtr);
842 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
846 /// Quries whether the view has focus.
848 /// <returns>true if this view has focus</returns>
849 public bool HasFocus()
851 bool ret = NDalicPINVOKE.View_HasKeyInputFocus(swigCPtr);
852 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
856 internal void ClearKeyInputFocus()
858 NDalicPINVOKE.View_ClearKeyInputFocus(swigCPtr);
859 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
862 internal PinchGestureDetector GetPinchGestureDetector()
864 PinchGestureDetector ret = new PinchGestureDetector(NDalicPINVOKE.View_GetPinchGestureDetector(swigCPtr), true);
865 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
869 internal PanGestureDetector GetPanGestureDetector()
871 PanGestureDetector ret = new PanGestureDetector(NDalicPINVOKE.View_GetPanGestureDetector(swigCPtr), true);
872 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
876 internal TapGestureDetector GetTapGestureDetector()
878 TapGestureDetector ret = new TapGestureDetector(NDalicPINVOKE.View_GetTapGestureDetector(swigCPtr), true);
879 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
883 internal LongPressGestureDetector GetLongPressGestureDetector()
885 LongPressGestureDetector ret = new LongPressGestureDetector(NDalicPINVOKE.View_GetLongPressGestureDetector(swigCPtr), true);
886 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
891 /// Sets the name of the style to be applied to the view.
893 /// <param name="styleName">A string matching a style described in a stylesheet</param>
894 public void SetStyleName(string styleName)
896 NDalicPINVOKE.View_SetStyleName(swigCPtr, styleName);
897 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
901 /// Retrieves the name of the style to be applied to the view (if any).
903 /// <returns>A string matching a style, or an empty string</returns>
904 public string GetStyleName()
906 string ret = NDalicPINVOKE.View_GetStyleName(swigCPtr);
907 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
911 internal void SetBackgroundColor(Vector4 color)
913 NDalicPINVOKE.View_SetBackgroundColor(swigCPtr, Vector4.getCPtr(color));
914 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
917 internal Vector4 GetBackgroundColor()
919 Vector4 ret = new Vector4(NDalicPINVOKE.View_GetBackgroundColor(swigCPtr), true);
920 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
924 internal void SetBackgroundImage(Image image)
926 NDalicPINVOKE.View_SetBackgroundImage(swigCPtr, Image.getCPtr(image));
927 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
931 /// Clears the background.
933 public void ClearBackground()
935 NDalicPINVOKE.View_ClearBackground(swigCPtr);
936 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
939 internal ControlKeySignal KeyEventSignal()
941 ControlKeySignal ret = new ControlKeySignal(NDalicPINVOKE.View_KeyEventSignal(swigCPtr), false);
942 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
946 internal KeyInputFocusSignal KeyInputFocusGainedSignal()
948 KeyInputFocusSignal ret = new KeyInputFocusSignal(NDalicPINVOKE.View_KeyInputFocusGainedSignal(swigCPtr), false);
949 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
953 internal KeyInputFocusSignal KeyInputFocusLostSignal()
955 KeyInputFocusSignal ret = new KeyInputFocusSignal(NDalicPINVOKE.View_KeyInputFocusLostSignal(swigCPtr), false);
956 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
960 internal View(ViewImpl implementation) : this(NDalicPINVOKE.new_View__SWIG_2(ViewImpl.getCPtr(implementation)), true)
962 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
965 internal enum PropertyRange
967 PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX,
968 CONTROL_PROPERTY_START_INDEX = PROPERTY_START_INDEX,
969 CONTROL_PROPERTY_END_INDEX = CONTROL_PROPERTY_START_INDEX + 1000
973 /// styleName, type string.
975 public string StyleName
980 GetProperty(View.Property.STYLE_NAME).Get(out temp);
985 SetProperty(View.Property.STYLE_NAME, new Tizen.NUI.PropertyValue(value));
990 /// mutually exclusive with BACKGROUND_IMAGE & BACKGROUND, type Vector4.
992 public Color BackgroundColor
996 Color backgroundColor = new Color(0.0f, 0.0f, 0.0f, 0.0f);
998 Tizen.NUI.PropertyMap background = Background;
1000 background.Find(Visual.Property.Type)?.Get(out visualType);
1001 if (visualType == (int)Visual.Type.Color)
1003 background.Find(ColorVisualProperty.MixColor)?.Get(backgroundColor);
1006 return backgroundColor;
1010 SetProperty(View.Property.BACKGROUND, new Tizen.NUI.PropertyValue(value));
1015 /// mutually exclusive with BACKGROUND_COLOR & BACKGROUND, type Map.
1017 public string BackgroundImage
1021 string backgroundImage = "";
1023 Tizen.NUI.PropertyMap background = Background;
1025 background.Find(Visual.Property.Type)?.Get(out visualType);
1026 if (visualType == (int)Visual.Type.Image)
1028 background.Find(ImageVisualProperty.URL)?.Get(out backgroundImage);
1031 return backgroundImage;
1035 SetProperty(View.Property.BACKGROUND, new Tizen.NUI.PropertyValue(value));
1040 /// mutually exclusive with BACKGROUND_COLOR & BACKGROUND_IMAGE, type Map or string for URL.
1042 public Tizen.NUI.PropertyMap Background
1046 Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
1047 GetProperty(View.Property.BACKGROUND).Get(temp);
1052 SetProperty(View.Property.BACKGROUND, new Tizen.NUI.PropertyValue(value));
1057 /// The current state of the view.
1064 if (GetProperty(View.Property.STATE).Get(out temp) == false)
1067 Tizen.Log.Error("NUI", "State get error!");
1074 return States.Normal;
1078 return States.Focused;
1082 return States.Disabled;
1086 return States.Normal;
1092 SetProperty(View.Property.STATE, new Tizen.NUI.PropertyValue((int)value));
1097 /// The current sub state of the view.
1099 public States SubState
1104 if (GetProperty(View.Property.SUB_STATE).Get(out temp) == false)
1107 Tizen.Log.Error("NUI", "subState get error!");
1113 return States.Normal;
1115 return States.Focused;
1117 return States.Disabled;
1119 return States.Normal;
1124 string valueToString = "";
1129 valueToString = "NORMAL";
1132 case States.Focused:
1134 valueToString = "FOCUSED";
1137 case States.Disabled:
1139 valueToString = "DISABLED";
1144 valueToString = "NORMAL";
1148 SetProperty(View.Property.SUB_STATE, new Tizen.NUI.PropertyValue(valueToString));
1153 /// Displays a tooltip
1155 public Tizen.NUI.PropertyMap Tooltip
1159 Tizen.NUI.PropertyMap temp = new Tizen.NUI.PropertyMap();
1160 GetProperty(View.Property.TOOLTIP).Get(temp);
1165 SetProperty(View.Property.TOOLTIP, new Tizen.NUI.PropertyValue(value));
1170 /// Displays a tooltip as Text
1172 public string TooltipText
1176 SetProperty(View.Property.TOOLTIP, new Tizen.NUI.PropertyValue(value));
1180 private int LeftFocusableViewId
1185 GetProperty(View.Property.LEFT_FOCUSABLE_VIEW_ID).Get(out temp);
1190 SetProperty(View.Property.LEFT_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
1194 private int RightFocusableViewId
1199 GetProperty(View.Property.RIGHT_FOCUSABLE_VIEW_ID).Get(out temp);
1204 SetProperty(View.Property.RIGHT_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
1208 private int UpFocusableViewId
1213 GetProperty(View.Property.UP_FOCUSABLE_VIEW_ID).Get(out temp);
1218 SetProperty(View.Property.UP_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
1222 private int DownFocusableViewId
1227 GetProperty(View.Property.DOWN_FOCUSABLE_VIEW_ID).Get(out temp);
1232 SetProperty(View.Property.DOWN_FOCUSABLE_VIEW_ID, new Tizen.NUI.PropertyValue(value));
1237 /// Child Property of FlexContainer.<br>
1238 /// The proportion of the free space in the container the flex item will receive.<br>
1239 /// If all items in the container set this property, their sizes will be proportional to the specified flex factor.<br>
1246 GetProperty(FlexContainer.ChildProperty.FLEX).Get(out temp);
1251 SetProperty(FlexContainer.ChildProperty.FLEX, new Tizen.NUI.PropertyValue(value));
1256 /// Child Property of FlexContainer.<br>
1257 /// The alignment of the flex item along the cross axis, which, if set, overides the default alignment for all items in the container.<br>
1259 public int AlignSelf
1264 GetProperty(FlexContainer.ChildProperty.ALIGN_SELF).Get(out temp);
1269 SetProperty(FlexContainer.ChildProperty.ALIGN_SELF, new Tizen.NUI.PropertyValue(value));
1274 /// Child Property of FlexContainer.<br>
1275 /// The space around the flex item.<br>
1277 public Vector4 FlexMargin
1281 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
1282 GetProperty(FlexContainer.ChildProperty.FLEX_MARGIN).Get(temp);
1287 SetProperty(FlexContainer.ChildProperty.FLEX_MARGIN, new Tizen.NUI.PropertyValue(value));
1292 /// The top-left cell this child occupies, if not set, the first available cell is used
1294 public Vector2 CellIndex
1298 Vector2 temp = new Vector2(0.0f, 0.0f);
1299 GetProperty(TableView.ChildProperty.CELL_INDEX).Get(temp);
1304 SetProperty(TableView.ChildProperty.CELL_INDEX, new Tizen.NUI.PropertyValue(value));
1309 /// The number of rows this child occupies, if not set, default value is 1
1311 public float RowSpan
1316 GetProperty(TableView.ChildProperty.ROW_SPAN).Get(out temp);
1321 SetProperty(TableView.ChildProperty.ROW_SPAN, new Tizen.NUI.PropertyValue(value));
1326 /// The number of columns this child occupies, if not set, default value is 1
1328 public float ColumnSpan
1333 GetProperty(TableView.ChildProperty.COLUMN_SPAN).Get(out temp);
1338 SetProperty(TableView.ChildProperty.COLUMN_SPAN, new Tizen.NUI.PropertyValue(value));
1343 /// The horizontal alignment of this child inside the cells, if not set, default value is 'left'
1345 public Tizen.NUI.HorizontalAlignmentType CellHorizontalAlignment
1350 if (GetProperty(TableView.ChildProperty.CELL_HORIZONTAL_ALIGNMENT).Get(out temp) == false)
1353 Tizen.Log.Error("NUI", "CellHorizontalAlignment get error!");
1360 return Tizen.NUI.HorizontalAlignmentType.Left;
1362 return Tizen.NUI.HorizontalAlignmentType.Center;
1364 return Tizen.NUI.HorizontalAlignmentType.Right;
1366 return Tizen.NUI.HorizontalAlignmentType.Left;
1371 string valueToString = "";
1374 case Tizen.NUI.HorizontalAlignmentType.Left:
1376 valueToString = "left";
1379 case Tizen.NUI.HorizontalAlignmentType.Center:
1381 valueToString = "center";
1384 case Tizen.NUI.HorizontalAlignmentType.Right:
1386 valueToString = "right";
1391 valueToString = "left";
1395 SetProperty(TableView.ChildProperty.CELL_HORIZONTAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
1400 /// The vertical alignment of this child inside the cells, if not set, default value is 'top'
1402 public Tizen.NUI.VerticalAlignmentType CellVerticalAlignment
1407 GetProperty(TableView.ChildProperty.CELL_VERTICAL_ALIGNMENT).Get(out temp);
1410 Tizen.Log.Error("NUI", "CellVerticalAlignment get error!");
1417 return Tizen.NUI.VerticalAlignmentType.Top;
1419 return Tizen.NUI.VerticalAlignmentType.Center;
1421 return Tizen.NUI.VerticalAlignmentType.Bottom;
1423 return Tizen.NUI.VerticalAlignmentType.Top;
1428 string valueToString = "";
1431 case Tizen.NUI.VerticalAlignmentType.Top:
1433 valueToString = "top";
1436 case Tizen.NUI.VerticalAlignmentType.Center:
1438 valueToString = "center";
1441 case Tizen.NUI.VerticalAlignmentType.Bottom:
1443 valueToString = "bottom";
1448 valueToString = "top";
1452 SetProperty(TableView.ChildProperty.CELL_VERTICAL_ALIGNMENT, new Tizen.NUI.PropertyValue(valueToString));
1457 /// The left focusable view.<br>
1458 /// This will return NULL if not set.<br>
1459 /// This will also return NULL if the specified left focusable view is not on Window.<br>
1461 public View LeftFocusableView
1463 // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
1466 if (LeftFocusableViewId >= 0)
1468 return ConvertIdToView((uint)LeftFocusableViewId);
1474 LeftFocusableViewId = (int)value.GetId();
1479 /// The right focusable view.<br>
1480 /// This will return NULL if not set.<br>
1481 /// This will also return NULL if the specified right focusable view is not on Window.<br>
1483 public View RightFocusableView
1485 // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
1488 if (RightFocusableViewId >= 0)
1490 return ConvertIdToView((uint)RightFocusableViewId);
1496 RightFocusableViewId = (int)value.GetId();
1501 /// The up focusable view.<br>
1502 /// This will return NULL if not set.<br>
1503 /// This will also return NULL if the specified up focusable view is not on Window.<br>
1505 public View UpFocusableView
1507 // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
1510 if (UpFocusableViewId >= 0)
1512 return ConvertIdToView((uint)UpFocusableViewId);
1518 UpFocusableViewId = (int)value.GetId();
1523 /// The down focusable view.<br>
1524 /// This will return NULL if not set.<br>
1525 /// This will also return NULL if the specified down focusable view is not on Window.<br>
1527 public View DownFocusableView
1529 // As native side will be only storing IDs so need a logic to convert View to ID and vice-versa.
1532 if (DownFocusableViewId >= 0)
1534 return ConvertIdToView((uint)DownFocusableViewId);
1540 DownFocusableViewId = (int)value.GetId();
1545 /// whether the view should be focusable by keyboard navigation.
1547 public bool Focusable
1551 SetKeyboardFocusable(value);
1555 return IsKeyboardFocusable();
1560 /// Enumeration for describing the states of view.
1579 /// Retrieves the position of the View.<br>
1580 /// The coordinates are relative to the View's parent.<br>
1582 public Position CurrentPosition
1586 return GetCurrentPosition();
1591 /// Sets the size of an view for width and height.<br>
1592 /// Geometry can be scaled to fit within this area.<br>
1593 /// This does not interfere with the views scale factor.<br>
1594 /// The views default depth is the minimum of width & height.<br>
1596 public Size2D Size2D
1600 Size temp = new Size(0.0f, 0.0f, 0.0f);
1601 GetProperty(View.Property.SIZE).Get(temp);
1602 Size2D size = new Size2D((int)temp.Width, (int)temp.Height);
1607 SetProperty(View.Property.SIZE, new Tizen.NUI.PropertyValue(new Size(value)));
1612 /// Retrieves the size of the View.<br>
1613 /// The coordinates are relative to the View's parent.<br>
1615 public Size2D CurrentSize
1619 return GetCurrentSize();
1624 /// Retrieves the view's parent.<br>
1634 public bool Visibility
1643 /// Retrieves and sets the view's opacity.<br>
1645 public float Opacity
1650 GetProperty(View.Property.OPACITY).Get(out temp);
1655 SetProperty(View.Property.OPACITY, new Tizen.NUI.PropertyValue(value));
1660 /// Sets the position of the View for X and Y.<br>
1661 /// By default, sets the position vector between the parent origin and anchor point(default).<br>
1662 /// If Position inheritance if disabled, sets the world position.<br>
1664 public Position2D Position2D
1668 Position temp = new Position(0.0f, 0.0f, 0.0f);
1669 GetProperty(View.Property.POSITION).Get(temp);
1670 return new Position2D(temp);
1674 SetProperty(View.Property.POSITION, new Tizen.NUI.PropertyValue(new Position(value)));
1679 /// Retrieves screen postion of view's.<br>
1681 public Vector2 ScreenPosition
1685 Vector2 temp = new Vector2(0.0f, 0.0f);
1686 GetProperty(View.Property.SCREEN_POSITION).Get(temp);
1692 /// Determines whether the anchor point should be used to determine the position of the view.
1693 /// This is true by default.
1695 /// <remarks>If false, then the top-left of the view is used for the position.
1696 /// Setting this to false will allow scaling or rotation around the anchor-point without affecting the view's position.
1698 public bool PositionUsesAnchorPoint
1703 GetProperty(View.Property.POSITION_USES_ANCHOR_POINT).Get(out temp);
1708 SetProperty(View.Property.POSITION_USES_ANCHOR_POINT, new Tizen.NUI.PropertyValue(value));
1712 internal bool FocusState
1716 return IsKeyboardFocusable();
1720 SetKeyboardFocusable(value);
1725 /// Queries whether the view is connected to the Stage.<br>
1726 /// When an view is connected, it will be directly or indirectly parented to the root View.<br>
1728 public bool IsOnWindow
1737 /// Gets depth in the hierarchy for the view.
1739 public int HierarchyDepth
1743 return GetHierarchyDepth();
1748 /// Sets the sibling order of the view so depth position can be defined within the same parent.
1751 /// Note The initial value is 0.
1752 /// Raise, Lower, RaiseToTop, LowerToBottom, RaiseAbove and LowerBelow will override the sibling order.
1753 /// The values set by this Property will likely change.
1755 public int SiblingOrder
1760 GetProperty(View.Property.SIBLING_ORDER).Get(out temp);
1765 SetProperty(View.Property.SIBLING_ORDER, new Tizen.NUI.PropertyValue(value));
1770 /// Gets the natural size of the view.<br>
1775 public Vector3 NaturalSize
1779 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetNaturalSize(swigCPtr), true);
1780 if (NDalicPINVOKE.SWIGPendingException.Pending)
1781 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1790 /// This is an asynchronous method.
1801 /// This is an asynchronous method.
1802 /// If an view is hidden, then the view and its children will not be rendered.
1803 /// 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.
1810 internal void Raise()
1812 NDalicPINVOKE.Raise(swigCPtr);
1813 if (NDalicPINVOKE.SWIGPendingException.Pending)
1814 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1817 internal void Lower()
1819 NDalicPINVOKE.Lower(swigCPtr);
1820 if (NDalicPINVOKE.SWIGPendingException.Pending)
1821 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1825 /// Raise view above all other views.
1828 /// Sibling order of views within the parent will be updated automatically.
1829 /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
1831 public void RaiseToTop()
1833 NDalicPINVOKE.RaiseToTop(swigCPtr);
1834 if (NDalicPINVOKE.SWIGPendingException.Pending)
1835 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1839 /// Lower view to the bottom of all views.
1842 /// Sibling order of views within the parent will be updated automatically.
1843 /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
1845 public void LowerToBottom()
1847 NDalicPINVOKE.LowerToBottom(swigCPtr);
1848 if (NDalicPINVOKE.SWIGPendingException.Pending)
1849 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1853 /// Raise the view to above the target view.
1855 /// <remarks>Sibling order of views within the parent will be updated automatically.
1856 /// Views on the level above the target view will still be shown above this view.
1857 /// Raising this view above views with the same sibling order as each other will raise this view above them.
1858 /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
1860 /// <param name="target">Will be raised above this view</param>
1861 internal void RaiseAbove(View target)
1863 NDalicPINVOKE.RaiseAbove(swigCPtr, View.getCPtr(target));
1864 if (NDalicPINVOKE.SWIGPendingException.Pending)
1865 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1869 /// Lower the view to below the target view.
1871 /// <remarks>Sibling order of views within the parent will be updated automatically.
1872 /// Lowering this view below views with the same sibling order as each other will lower this view above them.
1873 /// Once a raise or lower API is used that view will then have an exclusive sibling order independent of insertion.
1875 /// <param name="target">Will be lowered below this view</param>
1876 internal void LowerBelow(View target)
1878 NDalicPINVOKE.RaiseAbove(swigCPtr, View.getCPtr(target));
1879 if (NDalicPINVOKE.SWIGPendingException.Pending)
1880 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1883 internal string GetName()
1885 string ret = NDalicPINVOKE.Actor_GetName(swigCPtr);
1886 if (NDalicPINVOKE.SWIGPendingException.Pending)
1887 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1891 internal void SetName(string name)
1893 NDalicPINVOKE.Actor_SetName(swigCPtr, name);
1894 if (NDalicPINVOKE.SWIGPendingException.Pending)
1895 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1898 internal uint GetId()
1900 uint ret = NDalicPINVOKE.Actor_GetId(swigCPtr);
1901 if (NDalicPINVOKE.SWIGPendingException.Pending)
1902 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1906 internal bool IsRoot()
1908 bool ret = NDalicPINVOKE.Actor_IsRoot(swigCPtr);
1909 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1913 internal bool OnWindow()
1915 bool ret = NDalicPINVOKE.Actor_OnStage(swigCPtr);
1916 if (NDalicPINVOKE.SWIGPendingException.Pending)
1917 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1921 internal Layer GetLayer()
1923 Layer ret = new Layer(NDalicPINVOKE.Actor_GetLayer(swigCPtr), true);
1924 if (NDalicPINVOKE.SWIGPendingException.Pending)
1925 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1930 /// Adds a child view to this View.
1932 /// <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>
1933 /// <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>
1934 /// <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>
1935 /// <param name="child">The child</param>
1936 public void Add(View child)
1938 NDalicPINVOKE.Actor_Add(swigCPtr, View.getCPtr(child));
1939 if (NDalicPINVOKE.SWIGPendingException.Pending)
1940 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1944 /// Removes a child View from this View. If the view was not a child of this view, this is a no-op.
1946 /// <pre>This View(the parent) has been initialized. The child view is not the same as the parent view.</pre>
1947 /// <param name="child">The child</param>
1948 public void Remove(View child)
1950 NDalicPINVOKE.Actor_Remove(swigCPtr, View.getCPtr(child));
1951 if (NDalicPINVOKE.SWIGPendingException.Pending)
1952 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1955 internal void Unparent()
1957 NDalicPINVOKE.Actor_Unparent(swigCPtr);
1958 if (NDalicPINVOKE.SWIGPendingException.Pending)
1959 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1963 /// Retrieves the number of children held by the view.
1965 /// <pre>The View has been initialized.</pre>
1966 /// <returns>The number of children</returns>
1967 internal uint GetChildCount()
1969 uint ret = NDalicPINVOKE.Actor_GetChildCount(swigCPtr);
1970 if (NDalicPINVOKE.SWIGPendingException.Pending)
1971 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1976 /// Retrieves child view by index.
1978 /// <pre>The View has been initialized.</pre>
1979 /// <param name="index">The index of the child to retrieve</param>
1980 /// <returns>The view for the given index or empty handle if children not initialized</returns>
1981 public View GetChildAt(uint index)
1983 IntPtr cPtr = NDalicPINVOKE.Actor_GetChildAt(swigCPtr, index);
1984 cPtr = NDalicPINVOKE.View_SWIGUpcast(cPtr);
1985 cPtr = NDalicPINVOKE.Handle_SWIGUpcast(cPtr);
1987 BaseHandle ret = new BaseHandle(cPtr, false);
1989 View temp = ViewRegistry.GetViewFromBaseHandle(ret);
1991 if (NDalicPINVOKE.SWIGPendingException.Pending)
1992 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
1994 return temp ?? null;
1998 /// Search through this view's hierarchy for an view with the given name.
1999 /// The view itself is also considered in the search.
2001 /// <pre>The View has been initialized.</pre>
2002 /// <param name="viewName">The name of the view to find</param>
2003 /// <returns>A handle to the view if found, or an empty handle if not</returns>
2004 public View FindChildByName(string viewName)
2006 View ret = new View(NDalicPINVOKE.Actor_FindChildByName(swigCPtr, viewName), true);
2007 if (NDalicPINVOKE.SWIGPendingException.Pending)
2008 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2012 internal View FindChildById(uint id)
2014 View ret = new View(NDalicPINVOKE.Actor_FindChildById(swigCPtr, id), true);
2015 if (NDalicPINVOKE.SWIGPendingException.Pending)
2016 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2020 internal View GetParent()
2022 View ret = new View(NDalicPINVOKE.Actor_GetParent(swigCPtr), true);
2023 if (NDalicPINVOKE.SWIGPendingException.Pending)
2024 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2028 internal void SetParentOrigin(Vector3 origin)
2030 NDalicPINVOKE.Actor_SetParentOrigin(swigCPtr, Vector3.getCPtr(origin));
2031 if (NDalicPINVOKE.SWIGPendingException.Pending)
2032 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2035 internal Vector3 GetCurrentParentOrigin()
2037 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentParentOrigin(swigCPtr), true);
2038 if (NDalicPINVOKE.SWIGPendingException.Pending)
2039 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2043 internal void SetAnchorPoint(Vector3 anchorPoint)
2045 NDalicPINVOKE.Actor_SetAnchorPoint(swigCPtr, Vector3.getCPtr(anchorPoint));
2046 if (NDalicPINVOKE.SWIGPendingException.Pending)
2047 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2050 internal Vector3 GetCurrentAnchorPoint()
2052 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentAnchorPoint(swigCPtr), true);
2053 if (NDalicPINVOKE.SWIGPendingException.Pending)
2054 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2058 internal void SetSize(float width, float height)
2060 NDalicPINVOKE.Actor_SetSize__SWIG_0(swigCPtr, width, height);
2061 if (NDalicPINVOKE.SWIGPendingException.Pending)
2062 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2065 internal void SetSize(float width, float height, float depth)
2067 NDalicPINVOKE.Actor_SetSize__SWIG_1(swigCPtr, width, height, depth);
2068 if (NDalicPINVOKE.SWIGPendingException.Pending)
2069 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2072 internal void SetSize(Vector2 size)
2074 NDalicPINVOKE.Actor_SetSize__SWIG_2(swigCPtr, Vector2.getCPtr(size));
2075 if (NDalicPINVOKE.SWIGPendingException.Pending)
2076 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2079 internal void SetSize(Vector3 size)
2081 NDalicPINVOKE.Actor_SetSize__SWIG_3(swigCPtr, Vector3.getCPtr(size));
2082 if (NDalicPINVOKE.SWIGPendingException.Pending)
2083 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2086 internal Vector3 GetTargetSize()
2088 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetTargetSize(swigCPtr), true);
2089 if (NDalicPINVOKE.SWIGPendingException.Pending)
2090 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2094 internal Size2D GetCurrentSize()
2096 Size ret = new Size(NDalicPINVOKE.Actor_GetCurrentSize(swigCPtr), true);
2097 if (NDalicPINVOKE.SWIGPendingException.Pending)
2098 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2099 Size2D size = new Size2D((int)ret.Width, (int)ret.Height);
2103 internal Vector3 GetNaturalSize()
2105 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetNaturalSize(swigCPtr), true);
2106 if (NDalicPINVOKE.SWIGPendingException.Pending)
2107 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2111 internal void SetPosition(float x, float y)
2113 NDalicPINVOKE.Actor_SetPosition__SWIG_0(swigCPtr, x, y);
2114 if (NDalicPINVOKE.SWIGPendingException.Pending)
2115 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2118 internal void SetPosition(float x, float y, float z)
2120 NDalicPINVOKE.Actor_SetPosition__SWIG_1(swigCPtr, x, y, z);
2121 if (NDalicPINVOKE.SWIGPendingException.Pending)
2122 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2125 internal void SetPosition(Vector3 position)
2127 NDalicPINVOKE.Actor_SetPosition__SWIG_2(swigCPtr, Vector3.getCPtr(position));
2128 if (NDalicPINVOKE.SWIGPendingException.Pending)
2129 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2132 internal void SetX(float x)
2134 NDalicPINVOKE.Actor_SetX(swigCPtr, x);
2135 if (NDalicPINVOKE.SWIGPendingException.Pending)
2136 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2139 internal void SetY(float y)
2141 NDalicPINVOKE.Actor_SetY(swigCPtr, y);
2142 if (NDalicPINVOKE.SWIGPendingException.Pending)
2143 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2146 internal void SetZ(float z)
2148 NDalicPINVOKE.Actor_SetZ(swigCPtr, z);
2149 if (NDalicPINVOKE.SWIGPendingException.Pending)
2150 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2153 internal void TranslateBy(Vector3 distance)
2155 NDalicPINVOKE.Actor_TranslateBy(swigCPtr, Vector3.getCPtr(distance));
2156 if (NDalicPINVOKE.SWIGPendingException.Pending)
2157 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2160 internal Position GetCurrentPosition()
2162 Position ret = new Position(NDalicPINVOKE.Actor_GetCurrentPosition(swigCPtr), true);
2163 if (NDalicPINVOKE.SWIGPendingException.Pending)
2164 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2168 internal Vector3 GetCurrentWorldPosition()
2170 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentWorldPosition(swigCPtr), true);
2171 if (NDalicPINVOKE.SWIGPendingException.Pending)
2172 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2176 internal void SetInheritPosition(bool inherit)
2178 NDalicPINVOKE.Actor_SetInheritPosition(swigCPtr, inherit);
2179 if (NDalicPINVOKE.SWIGPendingException.Pending)
2180 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2183 internal bool IsPositionInherited()
2185 bool ret = NDalicPINVOKE.Actor_IsPositionInherited(swigCPtr);
2186 if (NDalicPINVOKE.SWIGPendingException.Pending)
2187 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2191 internal void SetOrientation(Degree angle, Vector3 axis)
2193 NDalicPINVOKE.Actor_SetOrientation__SWIG_0(swigCPtr, Degree.getCPtr(angle), Vector3.getCPtr(axis));
2194 if (NDalicPINVOKE.SWIGPendingException.Pending)
2195 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2198 internal void SetOrientation(Radian angle, Vector3 axis)
2200 NDalicPINVOKE.Actor_SetOrientation__SWIG_1(swigCPtr, Radian.getCPtr(angle), Vector3.getCPtr(axis));
2201 if (NDalicPINVOKE.SWIGPendingException.Pending)
2202 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2205 internal void SetOrientation(Rotation orientation)
2207 NDalicPINVOKE.Actor_SetOrientation__SWIG_2(swigCPtr, Rotation.getCPtr(orientation));
2208 if (NDalicPINVOKE.SWIGPendingException.Pending)
2209 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2212 internal void RotateBy(Degree angle, Vector3 axis)
2214 NDalicPINVOKE.Actor_RotateBy__SWIG_0(swigCPtr, Degree.getCPtr(angle), Vector3.getCPtr(axis));
2215 if (NDalicPINVOKE.SWIGPendingException.Pending)
2216 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2219 internal void RotateBy(Radian angle, Vector3 axis)
2221 NDalicPINVOKE.Actor_RotateBy__SWIG_1(swigCPtr, Radian.getCPtr(angle), Vector3.getCPtr(axis));
2222 if (NDalicPINVOKE.SWIGPendingException.Pending)
2223 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2226 internal void RotateBy(Rotation relativeRotation)
2228 NDalicPINVOKE.Actor_RotateBy__SWIG_2(swigCPtr, Rotation.getCPtr(relativeRotation));
2229 if (NDalicPINVOKE.SWIGPendingException.Pending)
2230 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2233 internal Rotation GetCurrentOrientation()
2235 Rotation ret = new Rotation(NDalicPINVOKE.Actor_GetCurrentOrientation(swigCPtr), true);
2236 if (NDalicPINVOKE.SWIGPendingException.Pending)
2237 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2241 internal void SetInheritOrientation(bool inherit)
2243 NDalicPINVOKE.Actor_SetInheritOrientation(swigCPtr, inherit);
2244 if (NDalicPINVOKE.SWIGPendingException.Pending)
2245 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2248 internal bool IsOrientationInherited()
2250 bool ret = NDalicPINVOKE.Actor_IsOrientationInherited(swigCPtr);
2251 if (NDalicPINVOKE.SWIGPendingException.Pending)
2252 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2256 internal Rotation GetCurrentWorldOrientation()
2258 Rotation ret = new Rotation(NDalicPINVOKE.Actor_GetCurrentWorldOrientation(swigCPtr), true);
2259 if (NDalicPINVOKE.SWIGPendingException.Pending)
2260 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2264 internal void SetScale(float scale)
2266 NDalicPINVOKE.Actor_SetScale__SWIG_0(swigCPtr, scale);
2267 if (NDalicPINVOKE.SWIGPendingException.Pending)
2268 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2271 internal void SetScale(float scaleX, float scaleY, float scaleZ)
2273 NDalicPINVOKE.Actor_SetScale__SWIG_1(swigCPtr, scaleX, scaleY, scaleZ);
2274 if (NDalicPINVOKE.SWIGPendingException.Pending)
2275 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2278 internal void SetScale(Vector3 scale)
2280 NDalicPINVOKE.Actor_SetScale__SWIG_2(swigCPtr, Vector3.getCPtr(scale));
2281 if (NDalicPINVOKE.SWIGPendingException.Pending)
2282 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2285 internal void ScaleBy(Vector3 relativeScale)
2287 NDalicPINVOKE.Actor_ScaleBy(swigCPtr, Vector3.getCPtr(relativeScale));
2288 if (NDalicPINVOKE.SWIGPendingException.Pending)
2289 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2292 internal Vector3 GetCurrentScale()
2294 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentScale(swigCPtr), true);
2295 if (NDalicPINVOKE.SWIGPendingException.Pending)
2296 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2300 internal Vector3 GetCurrentWorldScale()
2302 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetCurrentWorldScale(swigCPtr), true);
2303 if (NDalicPINVOKE.SWIGPendingException.Pending)
2304 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2308 internal void SetInheritScale(bool inherit)
2310 NDalicPINVOKE.Actor_SetInheritScale(swigCPtr, inherit);
2311 if (NDalicPINVOKE.SWIGPendingException.Pending)
2312 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2315 internal bool IsScaleInherited()
2317 bool ret = NDalicPINVOKE.Actor_IsScaleInherited(swigCPtr);
2318 if (NDalicPINVOKE.SWIGPendingException.Pending)
2319 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2323 internal Matrix GetCurrentWorldMatrix()
2325 Matrix ret = new Matrix(NDalicPINVOKE.Actor_GetCurrentWorldMatrix(swigCPtr), true);
2326 if (NDalicPINVOKE.SWIGPendingException.Pending)
2327 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2331 internal void SetVisible(bool visible)
2333 NDalicPINVOKE.Actor_SetVisible(swigCPtr, visible);
2334 if (NDalicPINVOKE.SWIGPendingException.Pending)
2335 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2338 internal bool IsVisible()
2340 bool ret = NDalicPINVOKE.Actor_IsVisible(swigCPtr);
2341 if (NDalicPINVOKE.SWIGPendingException.Pending)
2342 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2346 internal void SetOpacity(float opacity)
2348 NDalicPINVOKE.Actor_SetOpacity(swigCPtr, opacity);
2349 if (NDalicPINVOKE.SWIGPendingException.Pending)
2350 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2353 internal float GetCurrentOpacity()
2355 float ret = NDalicPINVOKE.Actor_GetCurrentOpacity(swigCPtr);
2356 if (NDalicPINVOKE.SWIGPendingException.Pending)
2357 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2361 internal void SetColor(Vector4 color)
2363 NDalicPINVOKE.Actor_SetColor(swigCPtr, Vector4.getCPtr(color));
2364 if (NDalicPINVOKE.SWIGPendingException.Pending)
2365 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2368 internal Vector4 GetCurrentColor()
2370 Vector4 ret = new Vector4(NDalicPINVOKE.Actor_GetCurrentColor(swigCPtr), true);
2371 if (NDalicPINVOKE.SWIGPendingException.Pending)
2372 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2376 internal void SetColorMode(ColorMode colorMode)
2378 NDalicPINVOKE.Actor_SetColorMode(swigCPtr, (int)colorMode);
2379 if (NDalicPINVOKE.SWIGPendingException.Pending)
2380 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2383 internal ColorMode GetColorMode()
2385 ColorMode ret = (ColorMode)NDalicPINVOKE.Actor_GetColorMode(swigCPtr);
2386 if (NDalicPINVOKE.SWIGPendingException.Pending)
2387 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2391 internal Vector4 GetCurrentWorldColor()
2393 Vector4 ret = new Vector4(NDalicPINVOKE.Actor_GetCurrentWorldColor(swigCPtr), true);
2394 if (NDalicPINVOKE.SWIGPendingException.Pending)
2395 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2399 internal void SetDrawMode(DrawModeType drawMode)
2401 NDalicPINVOKE.Actor_SetDrawMode(swigCPtr, (int)drawMode);
2402 if (NDalicPINVOKE.SWIGPendingException.Pending)
2403 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2406 internal DrawModeType GetDrawMode()
2408 DrawModeType ret = (DrawModeType)NDalicPINVOKE.Actor_GetDrawMode(swigCPtr);
2409 if (NDalicPINVOKE.SWIGPendingException.Pending)
2410 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2415 /// Converts screen coordinates into the view's coordinate system using the default camera.
2417 /// <pre>The View has been initialized.</pre>
2418 /// <remarks>The view coordinates are relative to the top-left(0.0, 0.0, 0.5)</remarks>
2419 /// <param name="localX">On return, the X-coordinate relative to the view</param>
2420 /// <param name="localY">On return, the Y-coordinate relative to the view</param>
2421 /// <param name="screenX">The screen X-coordinate</param>
2422 /// <param name="screenY">The screen Y-coordinate</param>
2423 /// <returns>True if the conversion succeeded</returns>
2424 public bool ScreenToLocal(out float localX, out float localY, float screenX, float screenY)
2426 bool ret = NDalicPINVOKE.Actor_ScreenToLocal(swigCPtr, out localX, out localY, screenX, screenY);
2427 if (NDalicPINVOKE.SWIGPendingException.Pending)
2428 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2432 internal void SetKeyboardFocusable(bool focusable)
2434 NDalicPINVOKE.Actor_SetKeyboardFocusable(swigCPtr, focusable);
2435 if (NDalicPINVOKE.SWIGPendingException.Pending)
2436 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2439 internal bool IsKeyboardFocusable()
2441 bool ret = NDalicPINVOKE.Actor_IsKeyboardFocusable(swigCPtr);
2442 if (NDalicPINVOKE.SWIGPendingException.Pending)
2443 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2447 internal void SetResizePolicy(ResizePolicyType policy, DimensionType dimension)
2449 NDalicPINVOKE.Actor_SetResizePolicy(swigCPtr, (int)policy, (int)dimension);
2450 if (NDalicPINVOKE.SWIGPendingException.Pending)
2451 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2454 internal ResizePolicyType GetResizePolicy(DimensionType dimension)
2456 ResizePolicyType ret = (ResizePolicyType)NDalicPINVOKE.Actor_GetResizePolicy(swigCPtr, (int)dimension);
2457 if (NDalicPINVOKE.SWIGPendingException.Pending)
2458 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2463 /// Sets the relative to parent size factor of the view.<br>
2464 /// This factor is only used when ResizePolicy is set to either:
2465 /// ResizePolicy::SIZE_RELATIVE_TO_PARENT or ResizePolicy::SIZE_FIXED_OFFSET_FROM_PARENT.<br>
2466 /// This view's size is set to the view's size multiplied by or added to this factor, depending on ResizePolicy.<br>
2468 /// <pre>The View has been initialized.</pre>
2469 /// <param name="factor">A Vector3 representing the relative factor to be applied to each axis</param>
2470 public void SetSizeModeFactor(Vector3 factor)
2472 NDalicPINVOKE.Actor_SetSizeModeFactor(swigCPtr, Vector3.getCPtr(factor));
2473 if (NDalicPINVOKE.SWIGPendingException.Pending)
2474 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2477 internal Vector3 GetSizeModeFactor()
2479 Vector3 ret = new Vector3(NDalicPINVOKE.Actor_GetSizeModeFactor(swigCPtr), true);
2480 if (NDalicPINVOKE.SWIGPendingException.Pending)
2481 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2486 /// Calculates the height of the view given a width.<br>
2487 /// The natural size is used for default calculation. <br>
2488 /// size 0 is treated as aspect ratio 1:1.<br>
2490 /// <param name="width">Width to use</param>
2491 /// <returns>The height based on the width</returns>
2492 public float GetHeightForWidth(float width)
2494 float ret = NDalicPINVOKE.Actor_GetHeightForWidth(swigCPtr, width);
2495 if (NDalicPINVOKE.SWIGPendingException.Pending)
2496 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2501 /// Calculates the width of the view given a height.<br>
2502 /// The natural size is used for default calculation.<br>
2503 /// size 0 is treated as aspect ratio 1:1.<br>
2505 /// <param name="height">Height to use</param>
2506 /// <returns>The width based on the height</returns>
2507 public float GetWidthForHeight(float height)
2509 float ret = NDalicPINVOKE.Actor_GetWidthForHeight(swigCPtr, height);
2510 if (NDalicPINVOKE.SWIGPendingException.Pending)
2511 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2515 public float GetRelayoutSize(DimensionType dimension)
2517 float ret = NDalicPINVOKE.Actor_GetRelayoutSize(swigCPtr, (int)dimension);
2518 if (NDalicPINVOKE.SWIGPendingException.Pending)
2519 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2523 public void SetPadding(PaddingType padding)
2525 NDalicPINVOKE.Actor_SetPadding(swigCPtr, PaddingType.getCPtr(padding));
2526 if (NDalicPINVOKE.SWIGPendingException.Pending)
2527 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2530 public void GetPadding(PaddingType paddingOut)
2532 NDalicPINVOKE.Actor_GetPadding(swigCPtr, PaddingType.getCPtr(paddingOut));
2533 if (NDalicPINVOKE.SWIGPendingException.Pending)
2534 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2537 internal void SetMinimumSize(Vector2 size)
2539 NDalicPINVOKE.Actor_SetMinimumSize(swigCPtr, Vector2.getCPtr(size));
2540 if (NDalicPINVOKE.SWIGPendingException.Pending)
2541 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2544 internal Vector2 GetMinimumSize()
2546 Vector2 ret = new Vector2(NDalicPINVOKE.Actor_GetMinimumSize(swigCPtr), true);
2547 if (NDalicPINVOKE.SWIGPendingException.Pending)
2548 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2552 internal void SetMaximumSize(Vector2 size)
2554 NDalicPINVOKE.Actor_SetMaximumSize(swigCPtr, Vector2.getCPtr(size));
2555 if (NDalicPINVOKE.SWIGPendingException.Pending)
2556 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2559 internal Vector2 GetMaximumSize()
2561 Vector2 ret = new Vector2(NDalicPINVOKE.Actor_GetMaximumSize(swigCPtr), true);
2562 if (NDalicPINVOKE.SWIGPendingException.Pending)
2563 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2567 internal int GetHierarchyDepth()
2569 int ret = NDalicPINVOKE.Actor_GetHierarchyDepth(swigCPtr);
2570 if (NDalicPINVOKE.SWIGPendingException.Pending)
2571 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2575 internal uint AddRenderer(Renderer renderer)
2577 uint ret = NDalicPINVOKE.Actor_AddRenderer(swigCPtr, Renderer.getCPtr(renderer));
2578 if (NDalicPINVOKE.SWIGPendingException.Pending)
2579 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2583 internal uint GetRendererCount()
2585 uint ret = NDalicPINVOKE.Actor_GetRendererCount(swigCPtr);
2586 if (NDalicPINVOKE.SWIGPendingException.Pending)
2587 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2591 internal Renderer GetRendererAt(uint index)
2593 Renderer ret = new Renderer(NDalicPINVOKE.Actor_GetRendererAt(swigCPtr, index), true);
2594 if (NDalicPINVOKE.SWIGPendingException.Pending)
2595 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2599 internal void RemoveRenderer(Renderer renderer)
2601 NDalicPINVOKE.Actor_RemoveRenderer__SWIG_0(swigCPtr, Renderer.getCPtr(renderer));
2602 if (NDalicPINVOKE.SWIGPendingException.Pending)
2603 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2606 internal void RemoveRenderer(uint index)
2608 NDalicPINVOKE.Actor_RemoveRenderer__SWIG_1(swigCPtr, index);
2609 if (NDalicPINVOKE.SWIGPendingException.Pending)
2610 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2613 internal TouchDataSignal TouchSignal()
2615 TouchDataSignal ret = new TouchDataSignal(NDalicPINVOKE.Actor_TouchSignal(swigCPtr), false);
2616 if (NDalicPINVOKE.SWIGPendingException.Pending)
2617 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2621 internal HoverSignal HoveredSignal()
2623 HoverSignal ret = new HoverSignal(NDalicPINVOKE.Actor_HoveredSignal(swigCPtr), false);
2624 if (NDalicPINVOKE.SWIGPendingException.Pending)
2625 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2629 internal WheelSignal WheelEventSignal()
2631 WheelSignal ret = new WheelSignal(NDalicPINVOKE.Actor_WheelEventSignal(swigCPtr), false);
2632 if (NDalicPINVOKE.SWIGPendingException.Pending)
2633 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2637 internal ViewSignal OnWindowSignal()
2639 ViewSignal ret = new ViewSignal(NDalicPINVOKE.Actor_OnStageSignal(swigCPtr), false);
2640 if (NDalicPINVOKE.SWIGPendingException.Pending)
2641 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2645 internal ViewSignal OffWindowSignal()
2647 ViewSignal ret = new ViewSignal(NDalicPINVOKE.Actor_OffStageSignal(swigCPtr), false);
2648 if (NDalicPINVOKE.SWIGPendingException.Pending)
2649 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2653 internal ViewSignal OnRelayoutSignal()
2655 ViewSignal ret = new ViewSignal(NDalicPINVOKE.Actor_OnRelayoutSignal(swigCPtr), false);
2656 if (NDalicPINVOKE.SWIGPendingException.Pending)
2657 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2661 internal ViewVisibilityChangedSignal VisibilityChangedSignal(View view) {
2662 ViewVisibilityChangedSignal ret = new ViewVisibilityChangedSignal(NDalicPINVOKE.VisibilityChangedSignal(View.getCPtr(view)), false);
2663 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
2668 /// Gets/Sets the origin of an view, within its parent's area.<br>
2669 /// 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>
2670 /// The default parent-origin is ParentOrigin.TopLeft (0.0, 0.0, 0.5).<br>
2671 /// An view's position is the distance between this origin, and the view's anchor-point.<br>
2673 /// <pre>The View has been initialized.</pre>
2674 public Position ParentOrigin
2678 Position temp = new Position(0.0f, 0.0f, 0.0f);
2679 GetProperty(View.Property.PARENT_ORIGIN).Get(temp);
2684 SetProperty(View.Property.PARENT_ORIGIN, new Tizen.NUI.PropertyValue(value));
2688 internal float ParentOriginX
2693 GetProperty(View.Property.PARENT_ORIGIN_X).Get(out temp);
2698 SetProperty(View.Property.PARENT_ORIGIN_X, new Tizen.NUI.PropertyValue(value));
2702 internal float ParentOriginY
2707 GetProperty(View.Property.PARENT_ORIGIN_Y).Get(out temp);
2712 SetProperty(View.Property.PARENT_ORIGIN_Y, new Tizen.NUI.PropertyValue(value));
2716 internal float ParentOriginZ
2721 GetProperty(View.Property.PARENT_ORIGIN_Z).Get(out temp);
2726 SetProperty(View.Property.PARENT_ORIGIN_Z, new Tizen.NUI.PropertyValue(value));
2731 /// Gets/Sets the anchor-point of an view.<br>
2732 /// 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>
2733 /// The default anchor point is AnchorPoint.Center (0.5, 0.5, 0.5).<br>
2734 /// An view position is the distance between its parent-origin and this anchor-point.<br>
2735 /// An view's orientation is the rotation from its default orientation, the rotation is centered around its anchor-point.<br>
2736 /// <pre>The View has been initialized.</pre>
2738 public Position PivotPoint
2742 Position temp = new Position(0.0f, 0.0f, 0.0f);
2743 GetProperty(View.Property.ANCHOR_POINT).Get(temp);
2748 SetProperty(View.Property.ANCHOR_POINT, new Tizen.NUI.PropertyValue(value));
2752 internal float PivotPointX
2757 GetProperty(View.Property.ANCHOR_POINT_X).Get(out temp);
2762 SetProperty(View.Property.ANCHOR_POINT_X, new Tizen.NUI.PropertyValue(value));
2766 internal float PivotPointY
2771 GetProperty(View.Property.ANCHOR_POINT_Y).Get(out temp);
2776 SetProperty(View.Property.ANCHOR_POINT_Y, new Tizen.NUI.PropertyValue(value));
2780 internal float PivotPointZ
2785 GetProperty(View.Property.ANCHOR_POINT_Z).Get(out temp);
2790 SetProperty(View.Property.ANCHOR_POINT_Z, new Tizen.NUI.PropertyValue(value));
2795 /// Gets/Sets the size width of an view.
2797 public float SizeWidth
2802 GetProperty(View.Property.SIZE_WIDTH).Get(out temp);
2807 SetProperty(View.Property.SIZE_WIDTH, new Tizen.NUI.PropertyValue(value));
2812 /// Gets/Sets the size height of an view.
2814 public float SizeHeight
2819 GetProperty(View.Property.SIZE_HEIGHT).Get(out temp);
2824 SetProperty(View.Property.SIZE_HEIGHT, new Tizen.NUI.PropertyValue(value));
2829 /// Gets/Sets the position of the View.<br>
2830 /// By default, sets the position vector between the parent origin and anchor point(default).<br>
2831 /// If Position inheritance if disabled, sets the world position.<br>
2833 public Position Position
2837 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
2838 GetProperty(View.Property.POSITION).Get(temp);
2843 SetProperty(View.Property.POSITION, new Tizen.NUI.PropertyValue(value));
2848 /// Gets/Sets the position x of the View.
2850 public float PositionX
2855 GetProperty(View.Property.POSITION_X).Get(out temp);
2860 SetProperty(View.Property.POSITION_X, new Tizen.NUI.PropertyValue(value));
2865 /// Gets/Sets the position y of the View.
2867 public float PositionY
2872 GetProperty(View.Property.POSITION_Y).Get(out temp);
2877 SetProperty(View.Property.POSITION_Y, new Tizen.NUI.PropertyValue(value));
2882 /// Gets/Sets the position z of the View.
2884 public float PositionZ
2889 GetProperty(View.Property.POSITION_Z).Get(out temp);
2894 SetProperty(View.Property.POSITION_Z, new Tizen.NUI.PropertyValue(value));
2899 /// Gets/Sets the world position of the View.
2901 public Vector3 WorldPosition
2905 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
2906 GetProperty(View.Property.WORLD_POSITION).Get(temp);
2911 internal float WorldPositionX
2916 GetProperty(View.Property.WORLD_POSITION_X).Get(out temp);
2921 internal float WorldPositionY
2926 GetProperty(View.Property.WORLD_POSITION_Y).Get(out temp);
2931 internal float WorldPositionZ
2936 GetProperty(View.Property.WORLD_POSITION_Z).Get(out temp);
2942 /// Gets/Sets the orientation of the View.<br>
2943 /// An view's orientation is the rotation from its default orientation, and the rotation is centered around its anchor-point.<br>
2945 /// <remarks>This is an asynchronous method.</remarks>
2946 public Rotation Orientation
2950 Rotation temp = new Rotation();
2951 GetProperty(View.Property.ORIENTATION).Get(temp);
2956 SetProperty(View.Property.ORIENTATION, new Tizen.NUI.PropertyValue(value));
2961 /// Gets/Sets the world orientation of the View.<br>
2963 public Rotation WorldOrientation
2967 Rotation temp = new Rotation();
2968 GetProperty(View.Property.WORLD_ORIENTATION).Get(temp);
2974 /// Gets/Sets the scale factor applied to an view.<br>
2976 public Vector3 Scale
2980 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
2981 GetProperty(View.Property.SCALE).Get(temp);
2986 SetProperty(View.Property.SCALE, new Tizen.NUI.PropertyValue(value));
2991 /// Gets/Sets the scale x factor applied to an view.
2998 GetProperty(View.Property.SCALE_X).Get(out temp);
3003 SetProperty(View.Property.SCALE_X, new Tizen.NUI.PropertyValue(value));
3008 /// Gets/Sets the scale y factor applied to an view.
3015 GetProperty(View.Property.SCALE_Y).Get(out temp);
3020 SetProperty(View.Property.SCALE_Y, new Tizen.NUI.PropertyValue(value));
3025 /// Gets/Sets the scale z factor applied to an view.
3032 GetProperty(View.Property.SCALE_Z).Get(out temp);
3037 SetProperty(View.Property.SCALE_Z, new Tizen.NUI.PropertyValue(value));
3042 /// Gets the world scale of View.
3044 public Vector3 WorldScale
3048 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
3049 GetProperty(View.Property.WORLD_SCALE).Get(temp);
3055 /// Retrieves the visibility flag of an view.
3058 /// If an view is not visible, then the view and its children will not be rendered.
3059 /// 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.
3066 GetProperty(View.Property.VISIBLE).Get(out temp);
3068 }/* only get is required : removed
3071 SetProperty(View.Property.VISIBLE, new Tizen.NUI.PropertyValue(value));
3076 /// Gets the view's world color.
3078 public Vector4 WorldColor
3082 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
3083 GetProperty(View.Property.WORLD_COLOR).Get(temp);
3088 internal Matrix WorldMatrix
3092 Matrix temp = new Matrix();
3093 GetProperty(View.Property.WORLD_MATRIX).Get(temp);
3099 /// Gets/Sets the View's name.
3106 GetProperty(View.Property.NAME).Get(out temp);
3111 SetProperty(View.Property.NAME, new Tizen.NUI.PropertyValue(value));
3116 /// Get the number of children held by the view.
3118 public uint ChildCount
3122 return GetChildCount();
3127 /// Gets the View's ID.
3139 /// Gets/Sets the status of whether an view should emit touch or hover signals.
3141 public bool Sensitive
3146 GetProperty(View.Property.SENSITIVE).Get(out temp);
3151 SetProperty(View.Property.SENSITIVE, new Tizen.NUI.PropertyValue(value));
3156 /// Gets/Sets the status of whether the view should receive a notification when touch or hover motion events leave the boundary of the view.
3158 public bool LeaveRequired
3163 GetProperty(View.Property.LEAVE_REQUIRED).Get(out temp);
3168 SetProperty(View.Property.LEAVE_REQUIRED, new Tizen.NUI.PropertyValue(value));
3173 /// Gets/Sets the status of whether a child view inherits it's parent's orientation.
3175 public bool InheritOrientation
3180 GetProperty(View.Property.INHERIT_ORIENTATION).Get(out temp);
3185 SetProperty(View.Property.INHERIT_ORIENTATION, new Tizen.NUI.PropertyValue(value));
3190 /// Gets/Sets the status of whether a child view inherits it's parent's scale.
3192 public bool InheritScale
3197 GetProperty(View.Property.INHERIT_SCALE).Get(out temp);
3202 SetProperty(View.Property.INHERIT_SCALE, new Tizen.NUI.PropertyValue(value));
3207 /// Gets/Sets the status of how the view and its children should be drawn.<br>
3208 /// Not all views are renderable, but DrawMode can be inherited from any view.<br>
3209 /// 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>
3210 /// If DrawMode.Overlay2D is used, the view and its children will be drawn as a 2D overlay.<br>
3211 /// Overlay views are drawn in a separate pass, after all non-overlay views within the Layer.<br>
3212 /// For overlay views, the drawing order is with respect to tree levels of Views, and depth-testing will not be used.<br>
3214 public DrawModeType DrawMode
3219 if (GetProperty(View.Property.DRAW_MODE).Get(out temp) == false)
3222 Tizen.Log.Error("NUI", "DrawMode get error!");
3228 return DrawModeType.Normal;
3230 return DrawModeType.Overlay2D;
3232 return DrawModeType.Stencil;
3234 return DrawModeType.Normal;
3239 SetProperty(View.Property.DRAW_MODE, new Tizen.NUI.PropertyValue((int)value));
3244 /// Gets/Sets the relative to parent size factor of the view.<br>
3245 /// This factor is only used when ResizePolicyType is set to either: ResizePolicyType.SizeRelativeToParent or ResizePolicyType.SizeFixedOffsetFromParent.<br>
3246 /// This view's size is set to the view's size multiplied by or added to this factor, depending on ResizePolicyType.<br>
3248 public Vector3 SizeModeFactor
3252 Vector3 temp = new Vector3(0.0f, 0.0f, 0.0f);
3253 GetProperty(View.Property.SIZE_MODE_FACTOR).Get(temp);
3258 SetProperty(View.Property.SIZE_MODE_FACTOR, new Tizen.NUI.PropertyValue(value));
3263 /// Gets/Sets the width resize policy to be used.
3265 public ResizePolicyType WidthResizePolicy
3270 if (GetProperty(View.Property.WIDTH_RESIZE_POLICY).Get(out temp) == false)
3273 Tizen.Log.Error("NUI", "WidthResizePolicy get error!");
3279 return ResizePolicyType.Fixed;
3280 case "USE_NATURAL_SIZE":
3281 return ResizePolicyType.UseNaturalSize;
3282 case "FILL_TO_PARENT":
3283 return ResizePolicyType.FillToParent;
3284 case "SIZE_RELATIVE_TO_PARENT":
3285 return ResizePolicyType.SizeRelativeToParent;
3286 case "SIZE_FIXED_OFFSET_FROM_PARENT":
3287 return ResizePolicyType.SizeFixedOffsetFromParent;
3288 case "FIT_TO_CHILDREN":
3289 return ResizePolicyType.FitToChildren;
3290 case "DIMENSION_DEPENDENCY":
3291 return ResizePolicyType.DimensionDependency;
3292 case "USE_ASSIGNED_SIZE":
3293 return ResizePolicyType.UseAssignedSize;
3295 return ResizePolicyType.Fixed;
3300 SetProperty(View.Property.WIDTH_RESIZE_POLICY, new Tizen.NUI.PropertyValue((int)value));
3305 /// Gets/Sets the height resize policy to be used.
3307 public ResizePolicyType HeightResizePolicy
3312 if (GetProperty(View.Property.HEIGHT_RESIZE_POLICY).Get(out temp) == false)
3315 Tizen.Log.Error("NUI", "HeightResizePolicy get error!");
3321 return ResizePolicyType.Fixed;
3322 case "USE_NATURAL_SIZE":
3323 return ResizePolicyType.UseNaturalSize;
3324 case "FILL_TO_PARENT":
3325 return ResizePolicyType.FillToParent;
3326 case "SIZE_RELATIVE_TO_PARENT":
3327 return ResizePolicyType.SizeRelativeToParent;
3328 case "SIZE_FIXED_OFFSET_FROM_PARENT":
3329 return ResizePolicyType.SizeFixedOffsetFromParent;
3330 case "FIT_TO_CHILDREN":
3331 return ResizePolicyType.FitToChildren;
3332 case "DIMENSION_DEPENDENCY":
3333 return ResizePolicyType.DimensionDependency;
3334 case "USE_ASSIGNED_SIZE":
3335 return ResizePolicyType.UseAssignedSize;
3337 return ResizePolicyType.Fixed;
3342 SetProperty(View.Property.HEIGHT_RESIZE_POLICY, new Tizen.NUI.PropertyValue((int)value));
3347 /// Gets/Sets the policy to use when setting size with size negotiation.<br>
3348 /// Defaults to SizeScalePolicyType.UseSizeSet.<br>
3350 public SizeScalePolicyType SizeScalePolicy
3355 if (GetProperty(View.Property.SIZE_SCALE_POLICY).Get(out temp) == false)
3358 Tizen.Log.Error("NUI", "SizeScalePolicy get error!");
3363 case "USE_SIZE_SET":
3364 return SizeScalePolicyType.UseSizeSet;
3365 case "FIT_WITH_ASPECT_RATIO":
3366 return SizeScalePolicyType.FitWithAspectRatio;
3367 case "FILL_WITH_ASPECT_RATIO":
3368 return SizeScalePolicyType.FillWithAspectRatio;
3370 return SizeScalePolicyType.UseSizeSet;
3375 string valueToString = "";
3378 case SizeScalePolicyType.UseSizeSet:
3380 valueToString = "USE_SIZE_SET";
3383 case SizeScalePolicyType.FitWithAspectRatio:
3385 valueToString = "FIT_WITH_ASPECT_RATIO";
3388 case SizeScalePolicyType.FillWithAspectRatio:
3390 valueToString = "FILL_WITH_ASPECT_RATIO";
3395 valueToString = "USE_SIZE_SET";
3399 SetProperty(View.Property.SIZE_SCALE_POLICY, new Tizen.NUI.PropertyValue(valueToString));
3404 /// Gets/Sets the status of whether the width size is dependent on height size.
3406 public bool WidthForHeight
3411 GetProperty(View.Property.WIDTH_FOR_HEIGHT).Get(out temp);
3416 SetProperty(View.Property.WIDTH_FOR_HEIGHT, new Tizen.NUI.PropertyValue(value));
3421 /// Gets/Sets the status of whether the height size is dependent on width size.
3423 public bool HeightForWidth
3428 GetProperty(View.Property.HEIGHT_FOR_WIDTH).Get(out temp);
3433 SetProperty(View.Property.HEIGHT_FOR_WIDTH, new Tizen.NUI.PropertyValue(value));
3438 /// Gets/Sets the padding for use in layout.
3440 public Vector4 Padding
3444 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
3445 GetProperty(View.Property.PADDING).Get(temp);
3450 SetProperty(View.Property.PADDING, new Tizen.NUI.PropertyValue(value));
3455 /// Gets/Sets the minimum size an view can be assigned in size negotiation.
3457 public Size2D MinimumSize
3461 Size2D temp = new Size2D(0, 0);
3462 GetProperty(View.Property.MINIMUM_SIZE).Get(temp);
3467 SetProperty(View.Property.MINIMUM_SIZE, new Tizen.NUI.PropertyValue(value));
3472 /// Gets/Sets the maximum size an view can be assigned in size negotiation.
3474 public Size2D MaximumSize
3478 Size2D temp = new Size2D(0, 0);
3479 GetProperty(View.Property.MAXIMUM_SIZE).Get(temp);
3484 SetProperty(View.Property.MAXIMUM_SIZE, new Tizen.NUI.PropertyValue(value));
3489 /// Gets/Sets whether a child view inherits it's parent's position.<br>
3490 /// Default is to inherit.<br>
3491 /// 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>
3493 public bool InheritPosition
3498 GetProperty(View.Property.INHERIT_POSITION).Get(out temp);
3503 SetProperty(View.Property.INHERIT_POSITION, new Tizen.NUI.PropertyValue(value));
3508 /// Gets/Sets clipping behavior(mode) of it's children.
3510 public ClippingModeType ClippingMode
3515 if (GetProperty(View.Property.CLIPPING_MODE).Get(out temp) == false)
3518 Tizen.Log.Error("NUI", "ClippingMode get error!");
3524 return ClippingModeType.Disabled;
3525 case "CLIP_CHILDREN":
3526 return ClippingModeType.ClipChildren;
3528 return ClippingModeType.Disabled;
3533 SetProperty(View.Property.CLIPPING_MODE, new Tizen.NUI.PropertyValue((int)value));
3541 /*********************************************************************************/
\r
3542 /*** will be removed/deprecated ***/
\r
3543 /*********************************************************************************/
\r
3544 public event EventHandlerWithReturnType<object, TouchEventArgs, bool> Touched
3548 if (_touchDataEventHandler == null)
3550 _touchDataCallback = OnTouch;
3551 this.TouchSignal().Connect(_touchDataCallback);
3554 _touchDataEventHandler += value;
3559 _touchDataEventHandler -= value;
3561 if (_touchDataEventHandler == null && TouchSignal().Empty() == false)
3563 this.TouchSignal().Disconnect(_touchDataCallback);
3568 public event EventHandlerWithReturnType<object, HoverEventArgs, bool> Hovered
3572 if (_hoverEventHandler == null)
3574 _hoverEventCallback = OnHoverEvent;
3575 this.HoveredSignal().Connect(_hoverEventCallback);
3578 _hoverEventHandler += value;
3583 _hoverEventHandler -= value;
3585 if (_hoverEventHandler == null && HoveredSignal().Empty() == false)
3587 this.HoveredSignal().Disconnect(_hoverEventCallback);
3592 public event EventHandlerWithReturnType<object, WheelEventArgs, bool> WheelMoved
3596 if (_wheelEventHandler == null)
3598 _wheelEventCallback = OnWheelEvent;
3599 this.WheelEventSignal().Connect(_wheelEventCallback);
3602 _wheelEventHandler += value;
3607 _wheelEventHandler -= value;
3609 if (_wheelEventHandler == null && WheelEventSignal().Empty() == false)
3611 this.WheelEventSignal().Disconnect(_wheelEventCallback);
3616 public Position AnchorPoint
3620 Position temp = new Position(0.0f, 0.0f, 0.0f);
3621 GetProperty(View.Property.ANCHOR_POINT).Get(temp);
3626 SetProperty(View.Property.ANCHOR_POINT, new Tizen.NUI.PropertyValue(value));
3634 Size temp = new Size(0.0f, 0.0f, 0.0f);
3635 GetProperty(View.Property.SIZE).Get(temp);
3640 SetProperty(View.Property.SIZE, new Tizen.NUI.PropertyValue(value));
3645 /*********************************************************************************/
\r
3646 /*** will be removed/deprecated ***/
\r
3647 /*********************************************************************************/
\r