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 //------------------------------------------------------------------------------
27 namespace Tizen.NUI.BaseComponents
30 using System.Runtime.InteropServices;
33 /// ImageView is a class for displaying an image resource.<br>
34 /// An instance of ImageView can be created using a URL or an Image instance.<br>
36 public class ImageView : View
38 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
40 internal ImageView(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.ImageView_SWIGUpcast(cPtr), cMemoryOwn)
42 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
43 // By default, we do not want the position to use the anchor point
44 PositionUsesAnchorPoint = false;
47 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ImageView obj)
49 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
54 /// Event arguments of resource ready.
56 public class ResourceReadyEventArgs : EventArgs
61 /// The view whose resource is ready.
76 private EventHandler<ResourceReadyEventArgs> _resourceReadyEventHandler;
77 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
78 private delegate void ResourceReadyEventCallbackType(IntPtr data);
79 private ResourceReadyEventCallbackType _resourceReadyEventCallback;
82 /// Event for ResourceReady signal which can be used to subscribe/unsubscribe the event handler.<br>
83 /// This signal is emitted after all resources required by a control are loaded and ready.<br>
84 /// Most resources are only loaded when the control is placed on stage.<br>
86 public event EventHandler<ResourceReadyEventArgs> ResourceReady
90 if (_resourceReadyEventHandler == null)
92 _resourceReadyEventCallback = OnResourceReady;
93 ResourceReadySignal(this).Connect(_resourceReadyEventCallback);
96 _resourceReadyEventHandler += value;
101 _resourceReadyEventHandler -= value;
103 if (_resourceReadyEventHandler == null && ResourceReadySignal(this).Empty() == false)
105 ResourceReadySignal(this).Disconnect(_resourceReadyEventCallback);
110 // Callback for View ResourceReady signal
111 private void OnResourceReady(IntPtr data)
113 ResourceReadyEventArgs e = new ResourceReadyEventArgs();
116 e.View = View.GetViewFromPtr(data);
119 if (_resourceReadyEventHandler != null)
121 _resourceReadyEventHandler(this, e);
125 public override void Dispose()
127 if (!Window.IsInstalled())
129 DisposeQueue.Instance.Add(this);
135 if (swigCPtr.Handle != global::System.IntPtr.Zero)
140 NDalicPINVOKE.delete_ImageView(swigCPtr);
142 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
144 global::System.GC.SuppressFinalize(this);
149 internal class Property : global::System.IDisposable
151 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
152 protected bool swigCMemOwn;
154 internal Property(global::System.IntPtr cPtr, bool cMemoryOwn)
156 swigCMemOwn = cMemoryOwn;
157 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
160 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj)
162 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
167 DisposeQueue.Instance.Add(this);
170 public virtual void Dispose()
172 if (!Window.IsInstalled()) {
173 DisposeQueue.Instance.Add(this);
179 if (swigCPtr.Handle != global::System.IntPtr.Zero)
184 NDalicPINVOKE.delete_ImageView_Property(swigCPtr);
186 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
188 global::System.GC.SuppressFinalize(this);
192 internal Property() : this(NDalicPINVOKE.new_ImageView_Property(), true)
194 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
197 internal static readonly int RESOURCE_URL = NDalicPINVOKE.ImageView_Property_RESOURCE_URL_get();
198 internal static readonly int IMAGE = NDalicPINVOKE.ImageView_Property_IMAGE_get();
199 internal static readonly int PRE_MULTIPLIED_ALPHA = NDalicPINVOKE.ImageView_Property_PRE_MULTIPLIED_ALPHA_get();
200 internal static readonly int PIXEL_AREA = NDalicPINVOKE.ImageView_Property_PIXEL_AREA_get();
205 /// Creates an initialized ImageView.
207 public ImageView() : this(NDalicPINVOKE.ImageView_New__SWIG_0(), true)
209 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
213 /// Creates an initialized ImageView from an URL to an image resource.<br>
214 /// If the string is empty, ImageView will not display anything.<br>
216 /// <param name="url">The url of the image resource to display</param>
217 public ImageView(string url) : this(NDalicPINVOKE.ImageView_New__SWIG_2(url), true)
219 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
222 internal ImageView(string url, Uint16Pair size) : this(NDalicPINVOKE.ImageView_New__SWIG_3(url, Uint16Pair.getCPtr(size)), true)
224 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
227 internal ImageView(ImageView imageView) : this(NDalicPINVOKE.new_ImageView__SWIG_1(ImageView.getCPtr(imageView)), true)
229 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
231 internal ImageView Assign(ImageView imageView)
233 ImageView ret = new ImageView(NDalicPINVOKE.ImageView_Assign(swigCPtr, ImageView.getCPtr(imageView)), false);
234 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
238 /// Downcasts a handle to ImageView handle.<br>
239 /// If handle points to a ImageView, the downcast produces valid handle.<br>
240 /// If not, the returned handle is left uninitialized.<br>
242 /// <param name="handle">Handle to an object</param>
243 /// <returns>Handle to a ImageView or an uninitialized handle</returns>
244 public new static ImageView DownCast(BaseHandle handle)
246 ImageView ret = new ImageView(NDalicPINVOKE.ImageView_DownCast(BaseHandle.getCPtr(handle)), true);
247 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
251 /// Sets this ImageView from the given URL.<br>
252 /// If the URL is empty, ImageView will not display anything.<br>
254 /// <param name="url">The URL to the image resource to display</param>
255 public void SetImage(string url)
257 NDalicPINVOKE.ImageView_SetImage__SWIG_1(swigCPtr, url);
258 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
260 internal void SetImage(string url, Uint16Pair size)
262 NDalicPINVOKE.ImageView_SetImage__SWIG_2(swigCPtr, url, Uint16Pair.getCPtr(size));
263 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
265 internal enum PropertyRange
267 PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX,
268 PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000,
269 ANIMATABLE_PROPERTY_START_INDEX = PropertyRanges.ANIMATABLE_PROPERTY_REGISTRATION_START_INDEX,
270 ANIMATABLE_PROPERTY_END_INDEX = PropertyRanges.ANIMATABLE_PROPERTY_REGISTRATION_START_INDEX + 1000
274 internal ViewResourceReadySignal ResourceReadySignal(View view) {
275 ViewResourceReadySignal ret = new ViewResourceReadySignal(NDalicPINVOKE.ResourceReadySignal(View.getCPtr(view)), false);
276 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
281 /// Query if all resources required by a control are loaded and ready.<br>
282 /// Most resources are only loaded when the control is placed on stage.<br>
283 /// true if the resources are loaded and ready, false otherwise.<br>
285 public bool IsResourceReady()
287 bool ret = NDalicPINVOKE.IsResourceReady(swigCPtr);
288 if (NDalicPINVOKE.SWIGPendingException.Pending)
289 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
294 /// ImageView ResourceUrl, type string
296 public string ResourceUrl
310 /// ImageView ImageMap, type PropertyMap : string if it is a url, map otherwise
312 public PropertyMap ImageMap
318 PropertyMap temp = new PropertyMap();
319 GetProperty(ImageView.Property.IMAGE).Get(temp);
331 SetProperty(ImageView.Property.IMAGE, new Tizen.NUI.PropertyValue(value));
337 /// ImageView PreMultipliedAlpha, type Boolean.<br>
338 /// Image must be initialized.<br>
340 public bool PreMultipliedAlpha
345 GetProperty(ImageView.Property.PRE_MULTIPLIED_ALPHA).Get(ref temp);
350 SetProperty(ImageView.Property.PRE_MULTIPLIED_ALPHA, new Tizen.NUI.PropertyValue(value));
355 /// ImageView PixelArea, type Vector4 (Animatable property).<br>
356 /// Pixel area is a relative value with the whole image area as [0.0, 0.0, 1.0, 1.0].<br>
358 public RelativeVector4 PixelArea
362 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
363 GetProperty(ImageView.Property.PIXEL_AREA).Get(temp);
368 SetProperty(ImageView.Property.PIXEL_AREA, new Tizen.NUI.PropertyValue(value));
373 /// The border of the image in the order: left, right, bottom, top.<br>
374 /// If set, ImageMap will be ignored.<br>
375 /// For N-Patch images only.<br>
378 public Rectangle Border
392 /// Get or set whether to draws the borders only(If true).<br>
393 /// If not specified, the default is false.<br>
394 /// For N-Patch images only.<br>
397 public bool BorderOnly
410 private void UpdateImage()
412 if (_border != null && _url != null)
414 _nPatchMap = new PropertyMap();
415 _nPatchMap.Add(Visual.Property.Type, new PropertyValue((int)Visual.Type.NPatch));
416 _nPatchMap.Add(NpatchImageVisualProperty.URL, new PropertyValue(_url));
417 _nPatchMap.Add(NpatchImageVisualProperty.Border, new PropertyValue(_border));
418 if (_borderOnly) { _nPatchMap.Add(NpatchImageVisualProperty.BorderOnly, new PropertyValue(_borderOnly)); }
419 SetProperty(ImageView.Property.IMAGE, new PropertyValue(_nPatchMap));
423 if (_url != null) { SetProperty(ImageView.Property.RESOURCE_URL, new PropertyValue(_url)); }
427 private Rectangle _border = null;
428 private bool _borderOnly = false;
429 private string _url = null;
430 private PropertyMap _nPatchMap = null;