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 protected override void Dispose(DisposeTypes type)
54 if(type == DisposeTypes.Explicit)
57 //Release your own managed resources here.
58 //You should release all of your own disposable objects here.
61 //Release your own unmanaged resources here.
62 //You should not access any managed member here except static instance.
63 //because the execution order of Finalizes is non-deterministic.
65 if (swigCPtr.Handle != global::System.IntPtr.Zero)
70 NDalicPINVOKE.delete_Layer(swigCPtr);
72 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
79 internal class Property : global::System.IDisposable
81 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
82 protected bool swigCMemOwn;
84 internal Property(global::System.IntPtr cPtr, bool cMemoryOwn)
86 swigCMemOwn = cMemoryOwn;
87 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
90 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj)
92 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
95 //NUI Dispose Pattern written by Jinwoo Nam(jjw.nam)
97 //A Flag to check who called Dispose(). (By User or DisposeQueue)
98 private bool isDisposeQueued = false;
99 //A Flat to check if it is already disposed.
100 protected bool disposed = false;
106 isDisposeQueued = true;
107 DisposeQueue.Instance.Add(this);
111 public void Dispose()
113 //Throw excpetion if Dispose() is called in separate thread.
114 if (!Window.IsInstalled())
116 throw new System.InvalidOperationException("This API called from separate thread. This API must be called from MainThread.");
121 Dispose(DisposeTypes.Implicit);
125 Dispose(DisposeTypes.Explicit);
126 System.GC.SuppressFinalize(this);
130 protected virtual void Dispose(DisposeTypes type)
137 if(type == DisposeTypes.Explicit)
140 //Release your own managed resources here.
141 //You should release all of your own disposable objects here.
144 //Release your own unmanaged resources here.
145 //You should not access any managed member here except static instance.
146 //because the execution order of Finalizes is non-deterministic.
148 if (swigCPtr.Handle != global::System.IntPtr.Zero)
153 NDalicPINVOKE.delete_Layer_Property(swigCPtr);
155 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
160 internal Property() : this(NDalicPINVOKE.new_Layer_Property(), true)
162 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
165 internal static readonly int CLIPPING_ENABLE = NDalicPINVOKE.Layer_Property_CLIPPING_ENABLE_get();
166 internal static readonly int CLIPPING_BOX = NDalicPINVOKE.Layer_Property_CLIPPING_BOX_get();
167 internal static readonly int BEHAVIOR = NDalicPINVOKE.Layer_Property_BEHAVIOR_get();
172 /// Creates a Layer object.
174 public Layer() : this(NDalicPINVOKE.Layer_New(), true)
176 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
180 /// Downcasts a handle to Layer handle.<br>
181 /// If handle points to a Layer, the downcast produces valid handle.<br>
182 /// If not, the returned handle is left uninitialized.<br>
184 /// <param name="handle">Handle to an object</param>
185 /// <returns>Handle to a Layer or an uninitialized handle</returns>
186 public new static Layer DownCast(BaseHandle handle)
188 Layer ret = new Layer(NDalicPINVOKE.Layer_DownCast(BaseHandle.getCPtr(handle)), true);
189 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
193 internal Layer(Layer copy) : this(NDalicPINVOKE.new_Layer__SWIG_1(Layer.getCPtr(copy)), true)
195 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
198 internal Layer Assign(Layer rhs)
200 Layer ret = new Layer(NDalicPINVOKE.Layer_Assign(swigCPtr, Layer.getCPtr(rhs)), false);
201 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
205 public View FindChildById(uint id)
207 View ret = new View(NDalicPINVOKE.Actor_FindChildById(swigCPtr, id), true);
208 if (NDalicPINVOKE.SWIGPendingException.Pending)
209 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
213 public void Add(View child)
215 NDalicPINVOKE.Actor_Add(swigCPtr, View.getCPtr(child));
216 if (NDalicPINVOKE.SWIGPendingException.Pending)
217 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
220 public void Remove(View child)
222 NDalicPINVOKE.Actor_Remove(swigCPtr, View.getCPtr(child));
223 if (NDalicPINVOKE.SWIGPendingException.Pending)
224 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
228 /// Queries the depth of the layer.<br>
229 /// 0 is the bottom most layer, higher number is on top.<br>
239 internal uint GetDepth()
241 uint ret = NDalicPINVOKE.Layer_GetDepth(swigCPtr);
242 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
247 /// Increments the depth of the layer.
251 NDalicPINVOKE.Layer_Raise(swigCPtr);
252 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
256 /// Decrements the depth of the layer.
260 NDalicPINVOKE.Layer_Lower(swigCPtr);
261 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
264 internal void RaiseAbove(Layer target)
266 NDalicPINVOKE.Layer_RaiseAbove(swigCPtr, Layer.getCPtr(target));
267 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
270 internal void LowerBelow(Layer target)
272 NDalicPINVOKE.Layer_LowerBelow(swigCPtr, Layer.getCPtr(target));
273 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
277 /// Raises the layer to the top.
279 public void RaiseToTop()
281 NDalicPINVOKE.Layer_RaiseToTop(swigCPtr);
282 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
286 /// Lowers the layer to the bottom.
288 public void LowerToBottom()
290 NDalicPINVOKE.Layer_LowerToBottom(swigCPtr);
291 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
295 /// Moves the layer directly above the given layer.<br>
296 /// After the call, this layers depth will be immediately above target.<br>
298 /// <param name="target">Layer to get on top of</param>
299 public void MoveAbove(Layer target)
301 NDalicPINVOKE.Layer_MoveAbove(swigCPtr, Layer.getCPtr(target));
302 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
306 /// Moves the layer directly below the given layer.<br>
307 /// After the call, this layers depth will be immediately below target.<br>
309 /// <param name="target">Layer to get below of</param>
310 public void MoveBelow(Layer target)
312 NDalicPINVOKE.Layer_MoveBelow(swigCPtr, Layer.getCPtr(target));
313 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
316 internal void SetBehavior(LayerBehavior behavior)
318 NDalicPINVOKE.Layer_SetBehavior(swigCPtr, (int)behavior);
319 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
322 internal LayerBehavior GetBehavior()
324 Layer.LayerBehavior ret = (Layer.LayerBehavior)NDalicPINVOKE.Layer_GetBehavior(swigCPtr);
325 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
329 internal void SetClipping(bool enabled)
331 NDalicPINVOKE.Layer_SetClipping(swigCPtr, enabled);
332 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
335 internal bool IsClipping()
337 bool ret = NDalicPINVOKE.Layer_IsClipping(swigCPtr);
338 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
342 internal void SetClippingBox(int x, int y, int width, int height)
344 NDalicPINVOKE.Layer_SetClippingBox__SWIG_0(swigCPtr, x, y, width, height);
345 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
349 /// Sets the clipping box of a layer, in window coordinates.<br>
350 /// The contents of the layer will not be visible outside this box, when clipping is
351 /// enabled. The default clipping box is empty (0,0,0,0) which means everything is clipped.<br>
353 /// <param name="box">The clipping box</param>
354 public void SetClippingBox(Rectangle box)
356 NDalicPINVOKE.Layer_SetClippingBox__SWIG_1(swigCPtr, Rectangle.getCPtr(box));
357 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
361 /// Retrieves the clipping box of a layer in window coordinates.
363 /// <returns>The clipping box</returns>
364 public Rectangle GetClippingBox()
366 Rectangle ret = new Rectangle(NDalicPINVOKE.Layer_GetClippingBox(swigCPtr), true);
367 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
371 internal void SetDepthTestDisabled(bool disable)
373 NDalicPINVOKE.Layer_SetDepthTestDisabled(swigCPtr, disable);
374 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
377 internal bool IsDepthTestDisabled()
379 bool ret = NDalicPINVOKE.Layer_IsDepthTestDisabled(swigCPtr);
380 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
384 internal void SetSortFunction(SWIGTYPE_p_f_r_q_const__Dali__Vector3__float function)
386 NDalicPINVOKE.Layer_SetSortFunction(swigCPtr, SWIGTYPE_p_f_r_q_const__Dali__Vector3__float.getCPtr(function));
387 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
390 internal void SetTouchConsumed(bool consume)
392 NDalicPINVOKE.Layer_SetTouchConsumed(swigCPtr, consume);
393 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
396 internal bool IsTouchConsumed()
398 bool ret = NDalicPINVOKE.Layer_IsTouchConsumed(swigCPtr);
399 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
403 internal void SetHoverConsumed(bool consume)
405 NDalicPINVOKE.Layer_SetHoverConsumed(swigCPtr, consume);
406 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
409 internal bool IsHoverConsumed()
411 bool ret = NDalicPINVOKE.Layer_IsHoverConsumed(swigCPtr);
412 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
417 /// Retrieves child view by index.
419 /// <pre>The View has been initialized.</pre>
420 /// <param name="index">The index of the child to retrieve</param>
421 /// <returns>The view for the given index or empty handle if children not initialized</returns>
422 public View GetChildAt(uint index)
424 View ret = new View(NDalicPINVOKE.Actor_GetChildAt(swigCPtr, index), true);
425 if (NDalicPINVOKE.SWIGPendingException.Pending)
426 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
431 /// Enumeration for the behavior of the layer.
433 public enum LayerBehavior
440 internal enum TreeDepthMultiplier
442 TREE_DEPTH_MULTIPLIER = 10000
446 /// Layer ClippingEnable, type bool
448 public bool ClippingEnable
453 GetProperty(Layer.Property.CLIPPING_ENABLE).Get(ref temp);
458 SetProperty(Layer.Property.CLIPPING_ENABLE, new Tizen.NUI.PropertyValue(value));
462 /// Layer ClippingBox, type Rectangle
464 public Rectangle ClippingBox
468 Rectangle temp = new Rectangle(0, 0, 0, 0);
469 GetProperty(Layer.Property.CLIPPING_BOX).Get(temp);
474 SetProperty(Layer.Property.CLIPPING_BOX, new Tizen.NUI.PropertyValue(value));
478 /// Layer Behavior, type String(Layer.LayerBehavior)
480 public Layer.LayerBehavior Behavior
484 return GetBehavior();