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.
21 /// Sets whether the actor should be focusable by keyboard navigation.<br>
22 /// Visuals reuse geometry, shader etc. across controls. They ensure that the renderer and texture sets exist only when control is on-window.<br>
23 /// Each visual also responds to actor size and color change, and provides clipping at the renderer level.<br>
25 public class VisualBase : BaseHandle
27 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
29 internal VisualBase(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.VisualBase_SWIGUpcast(cPtr), cMemoryOwn)
31 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
34 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(VisualBase 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)
63 //Unreference this instance from Registry.
64 Registry.Unregister(this);
66 NDalicPINVOKE.delete_VisualBase(swigCPtr);
68 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
75 /// Create an empty Visual Handle
77 public VisualBase() : this(NDalicPINVOKE.new_VisualBase__SWIG_0(), true)
79 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
82 internal VisualBase(VisualBase handle) : this(NDalicPINVOKE.new_VisualBase__SWIG_1(VisualBase.getCPtr(handle)), true)
84 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
88 /// name of the visual
102 internal void SetName(string name)
104 NDalicPINVOKE.VisualBase_SetName(swigCPtr, name);
105 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
108 internal string GetName()
110 string ret = NDalicPINVOKE.VisualBase_GetName(swigCPtr);
111 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
116 /// Sets the transform and the control size
118 /// <param name="transform">A property map describing the transform</param>
119 /// <param name="controlSize">The size of the parent control for visuals that need to scale internally.</param>
120 public void SetTransformAndSize(PropertyMap transform, Vector2 controlSize)
122 NDalicPINVOKE.VisualBase_SetTransformAndSize(swigCPtr, PropertyMap.getCPtr(transform), Vector2.getCPtr(controlSize));
123 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
127 /// Returns the height for a given width.
129 /// <param name="width">Width to use.</param>
130 /// <returns>The height based on the width.</returns>
131 public float GetHeightForWidth(float width)
133 float ret = NDalicPINVOKE.VisualBase_GetHeightForWidth(swigCPtr, width);
134 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
139 /// Returns the width for a given height.
141 /// <param name="height">Height to use.</param>
142 /// <returns>The width based on the height.</returns>
143 public float GetWidthForHeight(float height)
145 float ret = NDalicPINVOKE.VisualBase_GetWidthForHeight(swigCPtr, height);
146 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
151 /// Return the natural size of the visual.<br>
152 /// Deriving classes stipulate the natural size and by default a visual has a ZERO natural size.<br>
153 /// A visual may not actually have a natural size until it has been placed on window and acquired all it's resources.<br>
155 /// <param name="naturalSize">The visual's natural size</param>
156 public void GetNaturalSize(Size2D naturalSize)
158 NDalicPINVOKE.VisualBase_GetNaturalSize(swigCPtr, Size2D.getCPtr(naturalSize));
159 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
163 /// the depth index of this visual.
165 public int DepthIndex
169 SetDepthIndex(value);
173 return GetDepthIndex();
176 internal void SetDepthIndex(int index)
178 NDalicPINVOKE.VisualBase_SetDepthIndex(swigCPtr, index);
179 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
182 internal int GetDepthIndex()
184 int ret = NDalicPINVOKE.VisualBase_GetDepthIndex(swigCPtr);
185 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
190 /// Create the property map representing this visual.
192 public PropertyMap Creation
196 CreatePropertyMap(value);
199 internal void CreatePropertyMap(PropertyMap map)
201 NDalicPINVOKE.VisualBase_CreatePropertyMap(swigCPtr, PropertyMap.getCPtr(map));
202 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
205 internal VisualBase(SWIGTYPE_p_Dali__Toolkit__Internal__Visual__Base impl) : this(NDalicPINVOKE.new_VisualBase__SWIG_2(SWIGTYPE_p_Dali__Toolkit__Internal__Visual__Base.getCPtr(impl)), true)
207 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();