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);
45 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ImageView obj)
47 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
52 /// Event arguments of resource ready.
54 public class ResourceReadyEventArgs : EventArgs
59 /// The view whose resource is ready.
74 private EventHandler<ResourceReadyEventArgs> _resourceReadyEventHandler;
75 [UnmanagedFunctionPointer(CallingConvention.StdCall)]
76 private delegate void ResourceReadyEventCallbackType(IntPtr data);
77 private ResourceReadyEventCallbackType _resourceReadyEventCallback;
80 /// Event for ResourceReady signal which can be used to subscribe/unsubscribe the event handler.<br>
81 /// This signal is emitted after all resources required by a control are loaded and ready.<br>
82 /// Most resources are only loaded when the control is placed on stage.<br>
84 public event EventHandler<ResourceReadyEventArgs> ResourceReady
88 if (_resourceReadyEventHandler == null)
90 _resourceReadyEventCallback = OnResourceReady;
91 ResourceReadySignal(this).Connect(_resourceReadyEventCallback);
94 _resourceReadyEventHandler += value;
99 _resourceReadyEventHandler -= value;
101 if (_resourceReadyEventHandler == null && ResourceReadySignal(this).Empty() == false)
103 ResourceReadySignal(this).Disconnect(_resourceReadyEventCallback);
108 // Callback for View ResourceReady signal
109 private void OnResourceReady(IntPtr data)
111 ResourceReadyEventArgs e = new ResourceReadyEventArgs();
114 e.View = View.GetViewFromPtr(data);
117 if (_resourceReadyEventHandler != null)
119 _resourceReadyEventHandler(this, e);
123 public override void Dispose()
125 if (!Window.IsInstalled())
127 DisposeQueue.Instance.Add(this);
133 if (swigCPtr.Handle != global::System.IntPtr.Zero)
138 NDalicPINVOKE.delete_ImageView(swigCPtr);
140 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
142 global::System.GC.SuppressFinalize(this);
147 internal class Property : global::System.IDisposable
149 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
150 protected bool swigCMemOwn;
152 internal Property(global::System.IntPtr cPtr, bool cMemoryOwn)
154 swigCMemOwn = cMemoryOwn;
155 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
158 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj)
160 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
165 DisposeQueue.Instance.Add(this);
168 public virtual void Dispose()
170 if (!Window.IsInstalled()) {
171 DisposeQueue.Instance.Add(this);
177 if (swigCPtr.Handle != global::System.IntPtr.Zero)
182 NDalicPINVOKE.delete_ImageView_Property(swigCPtr);
184 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
186 global::System.GC.SuppressFinalize(this);
190 internal Property() : this(NDalicPINVOKE.new_ImageView_Property(), true)
192 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
195 internal static readonly int RESOURCE_URL = NDalicPINVOKE.ImageView_Property_RESOURCE_URL_get();
196 internal static readonly int IMAGE = NDalicPINVOKE.ImageView_Property_IMAGE_get();
197 internal static readonly int PRE_MULTIPLIED_ALPHA = NDalicPINVOKE.ImageView_Property_PRE_MULTIPLIED_ALPHA_get();
198 internal static readonly int PIXEL_AREA = NDalicPINVOKE.ImageView_Property_PIXEL_AREA_get();
203 /// Creates an initialized ImageView.
205 public ImageView() : this(NDalicPINVOKE.ImageView_New__SWIG_0(), true)
207 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
211 /// Creates an initialized ImageView from an URL to an image resource.<br>
212 /// If the string is empty, ImageView will not display anything.<br>
214 /// <param name="url">The url of the image resource to display</param>
215 public ImageView(string url) : this(NDalicPINVOKE.ImageView_New__SWIG_2(url), true)
217 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
220 internal ImageView(string url, Uint16Pair size) : this(NDalicPINVOKE.ImageView_New__SWIG_3(url, Uint16Pair.getCPtr(size)), true)
222 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
225 internal ImageView(ImageView imageView) : this(NDalicPINVOKE.new_ImageView__SWIG_1(ImageView.getCPtr(imageView)), true)
227 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
229 internal ImageView Assign(ImageView imageView)
231 ImageView ret = new ImageView(NDalicPINVOKE.ImageView_Assign(swigCPtr, ImageView.getCPtr(imageView)), false);
232 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
236 /// Downcasts a handle to ImageView handle.<br>
237 /// If handle points to a ImageView, the downcast produces valid handle.<br>
238 /// If not, the returned handle is left uninitialized.<br>
240 /// <param name="handle">Handle to an object</param>
241 /// <returns>Handle to a ImageView or an uninitialized handle</returns>
242 public new static ImageView DownCast(BaseHandle handle)
244 ImageView ret = new ImageView(NDalicPINVOKE.ImageView_DownCast(BaseHandle.getCPtr(handle)), true);
245 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
249 /// Sets this ImageView from the given URL.<br>
250 /// If the URL is empty, ImageView will not display anything.<br>
252 /// <param name="url">The URL to the image resource to display</param>
253 public void SetImage(string url)
255 NDalicPINVOKE.ImageView_SetImage__SWIG_1(swigCPtr, url);
256 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
258 internal void SetImage(string url, Uint16Pair size)
260 NDalicPINVOKE.ImageView_SetImage__SWIG_2(swigCPtr, url, Uint16Pair.getCPtr(size));
261 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
263 internal enum PropertyRange
265 PROPERTY_START_INDEX = PropertyRanges.PROPERTY_REGISTRATION_START_INDEX,
266 PROPERTY_END_INDEX = View.PropertyRange.PROPERTY_START_INDEX + 1000,
267 ANIMATABLE_PROPERTY_START_INDEX = PropertyRanges.ANIMATABLE_PROPERTY_REGISTRATION_START_INDEX,
268 ANIMATABLE_PROPERTY_END_INDEX = PropertyRanges.ANIMATABLE_PROPERTY_REGISTRATION_START_INDEX + 1000
272 internal ViewResourceReadySignal ResourceReadySignal(View view) {
273 ViewResourceReadySignal ret = new ViewResourceReadySignal(NDalicPINVOKE.ResourceReadySignal(View.getCPtr(view)), false);
274 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
279 /// Query if all resources required by a control are loaded and ready.<br>
280 /// Most resources are only loaded when the control is placed on stage.<br>
281 /// true if the resources are loaded and ready, false otherwise.<br>
283 public bool IsResourceReady()
285 bool ret = NDalicPINVOKE.IsResourceReady(swigCPtr);
286 if (NDalicPINVOKE.SWIGPendingException.Pending)
287 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
292 /// ImageView ResourceUrl, type string
294 public string ResourceUrl
308 /// ImageView ImageMap, type PropertyMap : string if it is a url, map otherwise
310 public PropertyMap ImageMap
316 PropertyMap temp = new PropertyMap();
317 GetProperty(ImageView.Property.IMAGE).Get(temp);
329 SetProperty(ImageView.Property.IMAGE, new Tizen.NUI.PropertyValue(value));
335 /// ImageView PreMultipliedAlpha, type Boolean.<br>
336 /// Image must be initialized.<br>
338 public bool PreMultipliedAlpha
343 GetProperty(ImageView.Property.PRE_MULTIPLIED_ALPHA).Get(ref temp);
348 SetProperty(ImageView.Property.PRE_MULTIPLIED_ALPHA, new Tizen.NUI.PropertyValue(value));
353 /// ImageView PixelArea, type Vector4 (Animatable property).<br>
354 /// Pixel area is a relative value with the whole image area as [0.0, 0.0, 1.0, 1.0].<br>
356 public RelativeVector4 PixelArea
360 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
361 GetProperty(ImageView.Property.PIXEL_AREA).Get(temp);
366 SetProperty(ImageView.Property.PIXEL_AREA, new Tizen.NUI.PropertyValue(value));
371 /// The border of the image in the order: left, right, bottom, top.<br>
372 /// If set, ImageMap will be ignored.<br>
373 /// For N-Patch images only.<br>
376 public Rectangle Border
390 /// Get or set whether to draws the borders only(If true).<br>
391 /// If not specified, the default is false.<br>
392 /// For N-Patch images only.<br>
395 public bool BorderOnly
408 private void UpdateImage()
410 if (_border != null && _url != null)
412 _nPatchMap = new PropertyMap();
413 _nPatchMap.Add(Visual.Property.Type, new PropertyValue((int)Visual.Type.NPatch));
414 _nPatchMap.Add(NpatchImageVisualProperty.URL, new PropertyValue(_url));
415 _nPatchMap.Add(NpatchImageVisualProperty.Border, new PropertyValue(_border));
416 if (_borderOnly) { _nPatchMap.Add(NpatchImageVisualProperty.BorderOnly, new PropertyValue(_borderOnly)); }
417 SetProperty(ImageView.Property.IMAGE, new PropertyValue(_nPatchMap));
421 if (_url != null) { SetProperty(ImageView.Property.RESOURCE_URL, new PropertyValue(_url)); }
425 private Rectangle _border = null;
426 private bool _borderOnly = false;
427 private string _url = null;
428 private PropertyMap _nPatchMap = null;