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.
20 using Tizen.NUI.BaseComponents;
23 /// Layers provide a mechanism for overlaying groups of actors on top of each other.
25 public class Layer : Animatable
27 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
29 internal Layer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Layer_SWIGUpcast(cPtr), cMemoryOwn)
31 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
34 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Layer obj)
36 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
39 protected override void Dispose(DisposeTypes type)
46 if(type == DisposeTypes.Explicit)
49 //Release your own managed resources here.
50 //You should release all of your own disposable objects here.
53 //Release your own unmanaged resources here.
54 //You should not access any managed member here except static instance.
55 //because the execution order of Finalizes is non-deterministic.
57 if (swigCPtr.Handle != global::System.IntPtr.Zero)
62 NDalicPINVOKE.delete_Layer(swigCPtr);
64 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
71 internal class Property
73 internal static readonly int BEHAVIOR = NDalicPINVOKE.Layer_Property_BEHAVIOR_get();
77 /// Creates a Layer object.
79 public Layer() : this(NDalicPINVOKE.Layer_New(), true)
81 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
82 if(Window.Instance != null)
84 this.SetAnchorPoint(Tizen.NUI.PivotPoint.TopLeft);
85 this.SetResizePolicy(ResizePolicyType.FillToParent, DimensionType.AllDimensions);
88 internal void SetAnchorPoint(Vector3 anchorPoint)
90 NDalicPINVOKE.Actor_SetAnchorPoint(swigCPtr, Vector3.getCPtr(anchorPoint));
91 if (NDalicPINVOKE.SWIGPendingException.Pending)
92 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
94 internal void SetResizePolicy(ResizePolicyType policy, DimensionType dimension)
96 NDalicPINVOKE.Actor_SetResizePolicy(swigCPtr, (int)policy, (int)dimension);
97 if (NDalicPINVOKE.SWIGPendingException.Pending)
98 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
103 [Obsolete("Please do not use! this will be deprecated")]
104 public new static Layer DownCast(BaseHandle handle)
106 Layer ret = new Layer(NDalicPINVOKE.Layer_DownCast(BaseHandle.getCPtr(handle)), true);
107 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
112 /// Search through this layer's hierarchy for an view with the given unique ID.
114 /// <pre>This layer(the parent) has been initialized.</pre>
115 /// <remarks>The actor itself is also considered in the search.</remarks>
116 /// <param name="child">The id of the child to find</param>
117 /// <returns> A handle to the view if found, or an empty handle if not. </returns>
118 public View FindChildById(uint id)
120 View ret = new View(NDalicPINVOKE.Actor_FindChildById(swigCPtr, id), true);
121 if (NDalicPINVOKE.SWIGPendingException.Pending)
122 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
127 /// Adds a child view to this layer.
129 /// <pre>This layer(the parent) has been initialized. The child view has been initialized. The child view is not the same as the parent layer.</pre>
130 /// <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>
131 /// <remarks>If the child already has a parent, it will be removed from old parent and reparented to this layer. This may change child's position, color, scale etc as it now inherits them from this layer.</remarks>
132 /// <param name="child">The child</param>
133 public void Add(View child)
135 NDalicPINVOKE.Actor_Add(swigCPtr, View.getCPtr(child));
136 if (NDalicPINVOKE.SWIGPendingException.Pending)
137 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
141 /// Removes a child View from this layer. If the view was not a child of this layer, this is a no-op.
143 /// <pre>This layer(the parent) has been initialized. The child view is not the same as the parent view.</pre>
144 /// <param name="child">The child</param>
145 public void Remove(View child)
147 NDalicPINVOKE.Actor_Remove(swigCPtr, View.getCPtr(child));
148 if (NDalicPINVOKE.SWIGPendingException.Pending)
149 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
153 /// Queries the depth of the layer.<br>
154 /// 0 is the bottom most layer, higher number is on top.<br>
164 internal uint GetDepth()
166 uint ret = NDalicPINVOKE.Layer_GetDepth(swigCPtr);
167 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
172 /// Increments the depth of the layer.
176 NDalicPINVOKE.Layer_Raise(swigCPtr);
177 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
181 /// Decrements the depth of the layer.
185 NDalicPINVOKE.Layer_Lower(swigCPtr);
186 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
189 internal void RaiseAbove(Layer target)
191 NDalicPINVOKE.Layer_RaiseAbove(swigCPtr, Layer.getCPtr(target));
192 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
195 internal void LowerBelow(Layer target)
197 NDalicPINVOKE.Layer_LowerBelow(swigCPtr, Layer.getCPtr(target));
198 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
202 /// Raises the layer to the top.
204 public void RaiseToTop()
206 NDalicPINVOKE.Layer_RaiseToTop(swigCPtr);
207 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
211 /// Lowers the layer to the bottom.
213 public void LowerToBottom()
215 NDalicPINVOKE.Layer_LowerToBottom(swigCPtr);
216 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
220 /// Moves the layer directly above the given layer.<br>
221 /// After the call, this layers depth will be immediately above target.<br>
223 /// <param name="target">Layer to get on top of</param>
224 public void MoveAbove(Layer target)
226 NDalicPINVOKE.Layer_MoveAbove(swigCPtr, Layer.getCPtr(target));
227 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
231 /// Moves the layer directly below the given layer.<br>
232 /// After the call, this layers depth will be immediately below target.<br>
234 /// <param name="target">Layer to get below of</param>
235 public void MoveBelow(Layer target)
237 NDalicPINVOKE.Layer_MoveBelow(swigCPtr, Layer.getCPtr(target));
238 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
241 private void SetBehavior(LayerBehavior behavior)
243 NDalicPINVOKE.Layer_SetBehavior(swigCPtr, (int)behavior);
244 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
247 private LayerBehavior GetBehavior()
249 Layer.LayerBehavior ret = (Layer.LayerBehavior)NDalicPINVOKE.Layer_GetBehavior(swigCPtr);
250 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
254 internal void SetSortFunction(SWIGTYPE_p_f_r_q_const__Dali__Vector3__float function)
256 NDalicPINVOKE.Layer_SetSortFunction(swigCPtr, SWIGTYPE_p_f_r_q_const__Dali__Vector3__float.getCPtr(function));
257 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
260 internal void SetTouchConsumed(bool consume)
262 NDalicPINVOKE.Layer_SetTouchConsumed(swigCPtr, consume);
263 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
266 internal bool IsTouchConsumed()
268 bool ret = NDalicPINVOKE.Layer_IsTouchConsumed(swigCPtr);
269 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
273 internal void SetHoverConsumed(bool consume)
275 NDalicPINVOKE.Layer_SetHoverConsumed(swigCPtr, consume);
276 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
279 internal bool IsHoverConsumed()
281 bool ret = NDalicPINVOKE.Layer_IsHoverConsumed(swigCPtr);
282 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
287 /// Retrieves child view by index.
289 /// <pre>The View has been initialized.</pre>
290 /// <param name="index">The index of the child to retrieve</param>
291 /// <returns>The view for the given index or empty handle if children not initialized</returns>
292 public View GetChildAt(uint index)
294 System.IntPtr cPtr = NDalicPINVOKE.Actor_GetChildAt(swigCPtr, index);
296 View ret = Registry.GetManagedBaseHandleFromNativePtr(cPtr) as View;
298 if (NDalicPINVOKE.SWIGPendingException.Pending)
299 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
305 /// Enumeration for the behavior of the layer.
307 public enum LayerBehavior
314 internal enum TreeDepthMultiplier
316 TREE_DEPTH_MULTIPLIER = 10000
320 /// Layer Behavior, type String(Layer.LayerBehavior)
322 public Layer.LayerBehavior Behavior
326 return GetBehavior();
335 /// Internal only property to Enable/Disable Clipping, type Boolean.
336 /// By default this is false, i.e. the viewport of the Layer is the entire window.
338 internal bool ClippingEnabled
342 bool ret = NDalicPINVOKE.Layer_IsClipping(swigCPtr);
343 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
348 NDalicPINVOKE.Layer_SetClipping(swigCPtr, value);
349 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
354 /// Sets the Viewport (in window coordinates), type Rectangle.
355 /// The contents of the layer will not be visible outside this box, when ViewportEnabled is true.
357 public Rectangle Viewport
361 if( ClippingEnabled )
363 Rectangle ret = new Rectangle(NDalicPINVOKE.Layer_GetClippingBox(swigCPtr), true);
364 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
369 // Clipping not enabled so return the window size
370 Size2D windowSize = Window.Instance.Size;
371 Rectangle ret = new Rectangle(0, 0, windowSize.Width, windowSize.Height);
377 NDalicPINVOKE.Layer_SetClippingBox__SWIG_1(swigCPtr, Rectangle.getCPtr(value));
378 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
379 ClippingEnabled = true;
384 /// Retrieves and sets the Layer's opacity.<br>
391 GetProperty(View.Property.OPACITY).Get(out temp);
396 SetProperty(View.Property.OPACITY, new Tizen.NUI.PropertyValue(value));
401 /// Retrieves and sets the Layer's visibility.
403 public bool Visibility
408 GetProperty(View.Property.VISIBLE).Get(out temp);
413 SetProperty(View.Property.VISIBLE, new Tizen.NUI.PropertyValue(value));
418 /// Get the number of children held by the layer.
420 public uint ChildCount
424 uint ret = NDalicPINVOKE.Actor_GetChildCount(swigCPtr);
425 if (NDalicPINVOKE.SWIGPendingException.Pending)
426 throw NDalicPINVOKE.SWIGPendingException.Retrieve();