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.
16 // This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts
17 //------------------------------------------------------------------------------
20 // This file was automatically generated by SWIG (http://www.swig.org).
23 // Do not make changes to this file unless you know what you are doing--modify
24 // the SWIG interface file instead.
25 //------------------------------------------------------------------------------
29 using Tizen.NUI.BaseComponents;
31 /// Layers provide a mechanism for overlaying groups of actors on top of each other.
33 public class Layer : Animatable
35 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
37 internal Layer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Layer_SWIGUpcast(cPtr), cMemoryOwn)
39 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
42 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Layer obj)
44 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
47 public virtual void Dispose()
49 if (!Window.IsInstalled())
51 DisposeQueue.Instance.Add(this);
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);
66 global::System.GC.SuppressFinalize(this);
67 //base.Dispose(); //xb.teng
72 internal class Property : global::System.IDisposable
74 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
75 protected bool swigCMemOwn;
77 internal Property(global::System.IntPtr cPtr, bool cMemoryOwn)
79 swigCMemOwn = cMemoryOwn;
80 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
83 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj)
85 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
90 DisposeQueue.Instance.Add(this);
93 public virtual void Dispose()
95 if (!Window.IsInstalled()) {
96 DisposeQueue.Instance.Add(this);
102 if (swigCPtr.Handle != global::System.IntPtr.Zero)
107 NDalicPINVOKE.delete_Layer_Property(swigCPtr);
109 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
111 global::System.GC.SuppressFinalize(this);
115 internal Property() : this(NDalicPINVOKE.new_Layer_Property(), true)
117 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
120 internal static readonly int CLIPPING_ENABLE = NDalicPINVOKE.Layer_Property_CLIPPING_ENABLE_get();
121 internal static readonly int CLIPPING_BOX = NDalicPINVOKE.Layer_Property_CLIPPING_BOX_get();
122 internal static readonly int BEHAVIOR = NDalicPINVOKE.Layer_Property_BEHAVIOR_get();
127 /// Creates a Layer object.
129 public Layer() : this(NDalicPINVOKE.Layer_New(), true)
131 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
135 /// Downcasts a handle to Layer handle.<br>
136 /// If handle points to a Layer, the downcast produces valid handle.<br>
137 /// If not, the returned handle is left uninitialized.<br>
139 /// <param name="handle">Handle to an object</param>
140 /// <returns>Handle to a Layer or an uninitialized handle</returns>
141 public new static Layer DownCast(BaseHandle handle)
143 Layer ret = new Layer(NDalicPINVOKE.Layer_DownCast(BaseHandle.getCPtr(handle)), true);
144 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
148 internal Layer(Layer copy) : this(NDalicPINVOKE.new_Layer__SWIG_1(Layer.getCPtr(copy)), true)
150 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
153 internal Layer Assign(Layer rhs)
155 Layer ret = new Layer(NDalicPINVOKE.Layer_Assign(swigCPtr, Layer.getCPtr(rhs)), false);
156 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
160 public View FindChildById(uint id)
162 View ret = new View(NDalicPINVOKE.Actor_FindChildById(swigCPtr, id), true);
163 if (NDalicPINVOKE.SWIGPendingException.Pending)
164 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
168 public void Add(View child)
170 NDalicPINVOKE.Actor_Add(swigCPtr, View.getCPtr(child));
171 if (NDalicPINVOKE.SWIGPendingException.Pending)
172 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
175 public void Remove(View child)
177 NDalicPINVOKE.Actor_Remove(swigCPtr, View.getCPtr(child));
178 if (NDalicPINVOKE.SWIGPendingException.Pending)
179 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
183 /// Queries the depth of the layer.<br>
184 /// 0 is the bottom most layer, higher number is on top.<br>
194 internal uint GetDepth()
196 uint ret = NDalicPINVOKE.Layer_GetDepth(swigCPtr);
197 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
202 /// Increments the depth of the layer.
206 NDalicPINVOKE.Layer_Raise(swigCPtr);
207 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
211 /// Decrements the depth of the layer.
215 NDalicPINVOKE.Layer_Lower(swigCPtr);
216 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
219 internal void RaiseAbove(Layer target)
221 NDalicPINVOKE.Layer_RaiseAbove(swigCPtr, Layer.getCPtr(target));
222 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
225 internal void LowerBelow(Layer target)
227 NDalicPINVOKE.Layer_LowerBelow(swigCPtr, Layer.getCPtr(target));
228 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
232 /// Raises the layer to the top.
234 public void RaiseToTop()
236 NDalicPINVOKE.Layer_RaiseToTop(swigCPtr);
237 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
241 /// Lowers the layer to the bottom.
243 public void LowerToBottom()
245 NDalicPINVOKE.Layer_LowerToBottom(swigCPtr);
246 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
250 /// Moves the layer directly above the given layer.<br>
251 /// After the call, this layers depth will be immediately above target.<br>
253 /// <param name="target">Layer to get on top of</param>
254 public void MoveAbove(Layer target)
256 NDalicPINVOKE.Layer_MoveAbove(swigCPtr, Layer.getCPtr(target));
257 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
261 /// Moves the layer directly below the given layer.<br>
262 /// After the call, this layers depth will be immediately below target.<br>
264 /// <param name="target">Layer to get below of</param>
265 public void MoveBelow(Layer target)
267 NDalicPINVOKE.Layer_MoveBelow(swigCPtr, Layer.getCPtr(target));
268 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
271 internal void SetBehavior(LayerBehavior behavior)
273 NDalicPINVOKE.Layer_SetBehavior(swigCPtr, (int)behavior);
274 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
277 internal LayerBehavior GetBehavior()
279 Layer.LayerBehavior ret = (Layer.LayerBehavior)NDalicPINVOKE.Layer_GetBehavior(swigCPtr);
280 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
284 internal void SetClipping(bool enabled)
286 NDalicPINVOKE.Layer_SetClipping(swigCPtr, enabled);
287 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
290 internal bool IsClipping()
292 bool ret = NDalicPINVOKE.Layer_IsClipping(swigCPtr);
293 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
297 internal void SetClippingBox(int x, int y, int width, int height)
299 NDalicPINVOKE.Layer_SetClippingBox__SWIG_0(swigCPtr, x, y, width, height);
300 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
304 /// Sets the clipping box of a layer, in window coordinates.<br>
305 /// The contents of the layer will not be visible outside this box, when clipping is
306 /// enabled. The default clipping box is empty (0,0,0,0) which means everything is clipped.<br>
308 /// <param name="box">The clipping box</param>
309 public void SetClippingBox(Rectangle box)
311 NDalicPINVOKE.Layer_SetClippingBox__SWIG_1(swigCPtr, Rectangle.getCPtr(box));
312 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
316 /// Retrieves the clipping box of a layer in window coordinates.
318 /// <returns>The clipping box</returns>
319 public Rectangle GetClippingBox()
321 Rectangle ret = new Rectangle(NDalicPINVOKE.Layer_GetClippingBox(swigCPtr), true);
322 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
326 internal void SetDepthTestDisabled(bool disable)
328 NDalicPINVOKE.Layer_SetDepthTestDisabled(swigCPtr, disable);
329 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
332 internal bool IsDepthTestDisabled()
334 bool ret = NDalicPINVOKE.Layer_IsDepthTestDisabled(swigCPtr);
335 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
339 internal void SetSortFunction(SWIGTYPE_p_f_r_q_const__Dali__Vector3__float function)
341 NDalicPINVOKE.Layer_SetSortFunction(swigCPtr, SWIGTYPE_p_f_r_q_const__Dali__Vector3__float.getCPtr(function));
342 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
345 internal void SetTouchConsumed(bool consume)
347 NDalicPINVOKE.Layer_SetTouchConsumed(swigCPtr, consume);
348 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
351 internal bool IsTouchConsumed()
353 bool ret = NDalicPINVOKE.Layer_IsTouchConsumed(swigCPtr);
354 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
358 internal void SetHoverConsumed(bool consume)
360 NDalicPINVOKE.Layer_SetHoverConsumed(swigCPtr, consume);
361 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
364 internal bool IsHoverConsumed()
366 bool ret = NDalicPINVOKE.Layer_IsHoverConsumed(swigCPtr);
367 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
372 /// Retrieves child view by index.
374 /// <pre>The View has been initialized.</pre>
375 /// <param name="index">The index of the child to retrieve</param>
376 /// <returns>The view for the given index or empty handle if children not initialized</returns>
377 public View GetChildAt(uint index)
379 View ret = new View(NDalicPINVOKE.Actor_GetChildAt(swigCPtr, index), true);
380 if (NDalicPINVOKE.SWIGPendingException.Pending)
381 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
386 /// Enumeration for the behavior of the layer.
388 public enum LayerBehavior
395 internal enum TreeDepthMultiplier
397 TREE_DEPTH_MULTIPLIER = 10000
401 /// Layer ClippingEnable, type bool
403 public bool ClippingEnable
408 GetProperty(Layer.Property.CLIPPING_ENABLE).Get(ref temp);
413 SetProperty(Layer.Property.CLIPPING_ENABLE, new Tizen.NUI.PropertyValue(value));
417 /// Layer ClippingBox, type Rectangle
419 public Rectangle ClippingBox
423 Rectangle temp = new Rectangle(0, 0, 0, 0);
424 GetProperty(Layer.Property.CLIPPING_BOX).Get(temp);
429 SetProperty(Layer.Property.CLIPPING_BOX, new Tizen.NUI.PropertyValue(value));
433 /// Layer Behavior, type String(Layer.LayerBehavior)
435 public Layer.LayerBehavior Behavior
439 return GetBehavior();