[ElmSharp] Fixed the crash issue of Calendar
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / BaseComponents / ImageView.cs
1 /*
2  * Copyright(c) 2017 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17 using System;
18 using System.Runtime.InteropServices;
19 using System.ComponentModel;
20
21 namespace Tizen.NUI.BaseComponents
22 {
23
24     /// <summary>
25     /// ImageView is a class for displaying an image resource.<br />
26     /// An instance of ImageView can be created using a URL or an image instance.<br />
27     /// </summary>
28     /// <since_tizen> 3 </since_tizen>
29     public class ImageView : View
30     {
31         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
32
33         internal ImageView(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.ImageView_SWIGUpcast(cPtr), cMemoryOwn)
34         {
35             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
36         }
37
38         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ImageView obj)
39         {
40             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
41         }
42
43
44         /// <summary>
45         /// Event arguments of resource ready.
46         /// </summary>
47         /// <since_tizen> 3 </since_tizen>
48         public class ResourceReadyEventArgs : EventArgs
49         {
50             private View _view;
51
52             /// <summary>
53             /// The view whose resource is ready.
54             /// </summary>
55             /// <since_tizen> 3 </since_tizen>
56             public View View
57             {
58                 get
59                 {
60                     return _view;
61                 }
62                 set
63                 {
64                     _view = value;
65                 }
66             }
67         }
68
69         private EventHandler<ResourceReadyEventArgs> _resourceReadyEventHandler;
70         [UnmanagedFunctionPointer(CallingConvention.StdCall)]
71         private delegate void ResourceReadyEventCallbackType(IntPtr data);
72         private ResourceReadyEventCallbackType _resourceReadyEventCallback;
73
74         /// <summary>
75         /// An event for ResourceReady signal which can be used to subscribe or unsubscribe the event handler.<br />
76         /// This signal is emitted after all resources required by a control are loaded and ready.<br />
77         /// Most resources are only loaded when the control is placed on the stage.<br />
78         /// </summary>
79         /// <since_tizen> 3 </since_tizen>
80         public event EventHandler<ResourceReadyEventArgs> ResourceReady
81         {
82             add
83             {
84                 if (_resourceReadyEventHandler == null)
85                 {
86                     _resourceReadyEventCallback = OnResourceReady;
87                     ResourceReadySignal(this).Connect(_resourceReadyEventCallback);
88                 }
89
90                 _resourceReadyEventHandler += value;
91             }
92
93             remove
94             {
95                 _resourceReadyEventHandler -= value;
96
97                 if (_resourceReadyEventHandler == null && ResourceReadySignal(this).Empty() == false)
98                 {
99                     ResourceReadySignal(this).Disconnect(_resourceReadyEventCallback);
100                 }
101             }
102         }
103
104         // Callback for View ResourceReady signal
105         private void OnResourceReady(IntPtr data)
106         {
107             ResourceReadyEventArgs e = new ResourceReadyEventArgs();
108             if (data != null)
109             {
110                 e.View = Registry.GetManagedBaseHandleFromNativePtr(data) as View;
111             }
112
113             if (_resourceReadyEventHandler != null)
114             {
115                 _resourceReadyEventHandler(this, e);
116             }
117         }
118
119         /// <summary>
120         /// you can override it to clean-up your own resources.
121         /// </summary>
122         /// <param name="type">DisposeTypes</param>
123         /// <since_tizen> 3 </since_tizen>
124         protected override void Dispose(DisposeTypes type)
125         {
126             if (disposed)
127             {
128                 return;
129             }
130
131             if (type == DisposeTypes.Explicit)
132             {
133                 //Called by User
134                 //Release your own managed resources here.
135                 //You should release all of your own disposable objects here.
136                 _border?.Dispose();
137                 _border = null;
138                 _nPatchMap?.Dispose();
139                 _nPatchMap = null;
140             }
141
142             //Release your own unmanaged resources here.
143             //You should not access any managed member here except static instance.
144             //because the execution order of Finalizes is non-deterministic.
145
146             if (swigCPtr.Handle != global::System.IntPtr.Zero)
147             {
148                 if (swigCMemOwn)
149                 {
150                     swigCMemOwn = false;
151                     NDalicPINVOKE.delete_ImageView(swigCPtr);
152                 }
153                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
154             }
155
156             base.Dispose(type);
157         }
158
159         internal new class Property
160         {
161             internal static readonly int RESOURCE_URL = NDalicPINVOKE.ImageView_Property_RESOURCE_URL_get();
162             internal static readonly int IMAGE = NDalicPINVOKE.ImageView_Property_IMAGE_get();
163             internal static readonly int PRE_MULTIPLIED_ALPHA = NDalicPINVOKE.ImageView_Property_PRE_MULTIPLIED_ALPHA_get();
164             internal static readonly int PIXEL_AREA = NDalicPINVOKE.ImageView_Property_PIXEL_AREA_get();
165         }
166
167         /// <summary>
168         /// Creates an initialized ImageView.
169         /// </summary>
170         /// <since_tizen> 3 </since_tizen>
171         public ImageView() : this(NDalicPINVOKE.ImageView_New__SWIG_0(), true)
172         {
173             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
174
175         }
176         /// <summary>
177         /// Creates an initialized ImageView from a URL to an image resource.<br />
178         /// If the string is empty, ImageView will not display anything.<br />
179         /// </summary>
180         /// <param name="url">The URL of the image resource to display.</param>
181         /// <since_tizen> 3 </since_tizen>
182         public ImageView(string url) : this(NDalicPINVOKE.ImageView_New__SWIG_2(url), true)
183         {
184             _url = url;
185             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
186
187         }
188         internal ImageView(string url, Uint16Pair size) : this(NDalicPINVOKE.ImageView_New__SWIG_3(url, Uint16Pair.getCPtr(size)), true)
189         {
190             _url = url;
191             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
192
193         }
194
195         /// <summary>
196         /// Downcasts a handle to imageView handle.
197         /// </summary>
198         /// Please do not use! this will be deprecated!
199         /// Instead please use as keyword.
200         /// <since_tizen> 3 </since_tizen>
201         [Obsolete("Please do not use! This will be deprecated! Please use as keyword instead! " +
202             "Like: " +
203             "BaseHandle handle = new ImageView(imagePath); " +
204             "ImageView image = handle as ImageView")]
205         [EditorBrowsable(EditorBrowsableState.Never)]
206         public new static ImageView DownCast(BaseHandle handle)
207         {
208             ImageView ret = Registry.GetManagedBaseHandleFromNativePtr(handle) as ImageView;
209             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
210             return ret;
211         }
212
213         /// <summary>
214         /// Sets this ImageView from the given URL.<br />
215         /// If the URL is empty, ImageView will not display anything.<br />
216         /// </summary>
217         /// <param name="url">The URL to the image resource to display.</param>
218         /// <since_tizen> 3 </since_tizen>
219         public void SetImage(string url)
220         {
221             _url = url;
222             NDalicPINVOKE.ImageView_SetImage__SWIG_1(swigCPtr, url);
223             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
224         }
225         internal void SetImage(string url, Uint16Pair size)
226         {
227             _url = url;
228             NDalicPINVOKE.ImageView_SetImage__SWIG_2(swigCPtr, url, Uint16Pair.getCPtr(size));
229             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
230         }
231
232         internal ViewResourceReadySignal ResourceReadySignal(View view)
233         {
234             ViewResourceReadySignal ret = new ViewResourceReadySignal(NDalicPINVOKE.ResourceReadySignal(View.getCPtr(view)), false);
235             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
236             return ret;
237         }
238
239         /// <summary>
240         /// Queries if all resources required by a control are loaded and ready.<br />
241         /// Most resources are only loaded when the control is placed on the stage.<br />
242         /// True if the resources are loaded and ready, false otherwise.<br />
243         /// </summary>
244         /// <since_tizen> 3 </since_tizen>
245         public new bool IsResourceReady()
246         {
247             bool ret = NDalicPINVOKE.IsResourceReady(swigCPtr);
248             if (NDalicPINVOKE.SWIGPendingException.Pending)
249                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
250             return ret;
251         }
252
253         /// <summary>
254         /// ImageView ResourceUrl, type string.
255         /// </summary>
256         /// <since_tizen> 3 </since_tizen>
257         public string ResourceUrl
258         {
259             get
260             {
261                 GetProperty(ImageView.Property.IMAGE).Get(out _url);
262                 return _url;
263             }
264             set
265             {
266                 _url = (value == null? "" : value);
267                 UpdateImage();
268             }
269         }
270
271         /// <summary>
272         /// This will be deprecated, please use Image instead. <br />
273         /// ImageView ImageMap, type PropertyMap: string if it is a URL, map otherwise.
274         /// </summary>
275         /// <since_tizen> 3 </since_tizen>
276         [Obsolete("Please do not use! This will be deprecated! Please use Image property instead!")]
277         [EditorBrowsable(EditorBrowsableState.Never)]
278         public PropertyMap ImageMap
279         {
280             get
281             {
282                 if (_border == null)
283                 {
284                     PropertyMap temp = new PropertyMap();
285                     GetProperty(ImageView.Property.IMAGE).Get(temp);
286                     return temp;
287                 }
288                 else
289                 {
290                     return null;
291                 }
292             }
293             set
294             {
295                 if (_border == null)
296                 {
297                     if (_url != null) { value.Add("url", new PropertyValue(_url)); }
298                     SetProperty(ImageView.Property.IMAGE, new Tizen.NUI.PropertyValue(value));
299                 }
300             }
301         }
302
303         /// <summary>
304         /// ImageView Image, type PropertyMap
305         /// </summary>
306         /// <since_tizen> 4 </since_tizen>
307         public PropertyMap Image
308         {
309             get
310             {
311                 if (_border == null)
312                 {
313                     PropertyMap temp = new PropertyMap();
314                     GetProperty(ImageView.Property.IMAGE).Get(temp);
315                     return temp;
316                 }
317                 else
318                 {
319                     return null;
320                 }
321             }
322             set
323             {
324                 if (_border == null)
325                 {
326                     if(_url != null) { value.Add("url", new PropertyValue(_url)); }
327                     SetProperty(ImageView.Property.IMAGE, new Tizen.NUI.PropertyValue(value));
328                 }
329             }
330         }
331
332         /// <summary>
333         /// ImageView PreMultipliedAlpha, type Boolean.<br />
334         /// Image must be initialized.<br />
335         /// </summary>
336         /// <since_tizen> 3 </since_tizen>
337         public bool PreMultipliedAlpha
338         {
339             get
340             {
341                 bool temp = false;
342                 GetProperty(ImageView.Property.PRE_MULTIPLIED_ALPHA).Get(out temp);
343                 return temp;
344             }
345             set
346             {
347                 SetProperty(ImageView.Property.PRE_MULTIPLIED_ALPHA, new Tizen.NUI.PropertyValue(value));
348             }
349         }
350
351         /// <summary>
352         /// ImageView PixelArea, type Vector4 (Animatable property).<br />
353         /// Pixel area is a relative value with the whole image area as [0.0, 0.0, 1.0, 1.0].<br />
354         /// </summary>
355         /// <since_tizen> 3 </since_tizen>
356         public RelativeVector4 PixelArea
357         {
358             get
359             {
360                 Vector4 temp = new Vector4(0.0f, 0.0f, 0.0f, 0.0f);
361                 GetProperty(ImageView.Property.PIXEL_AREA).Get(temp);
362                 return temp;
363             }
364             set
365             {
366                 SetProperty(ImageView.Property.PIXEL_AREA, new Tizen.NUI.PropertyValue(value));
367             }
368         }
369
370         /// <summary>
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 />
374         /// Optional.
375         /// </summary>
376         /// <since_tizen> 3 </since_tizen>
377         public Rectangle Border
378         {
379             get
380             {
381                 return _border;
382             }
383             set
384             {
385                 _border = value;
386                 UpdateImage();
387             }
388         }
389
390         /// <summary>
391         /// Gets or sets whether to draw the borders only (if true).<br />
392         /// If not specified, the default is false.<br />
393         /// For N-Patch images only.<br />
394         /// Optional.
395         /// </summary>
396         /// <since_tizen> 3 </since_tizen>
397         public bool BorderOnly
398         {
399             get
400             {
401                 return _borderOnly ?? false;
402             }
403             set
404             {
405                 _borderOnly = value;
406                 UpdateImage();
407             }
408         }
409
410         /// <summary>
411         /// Gets or sets whether to synchronos loading the resourceurl of image.<br />
412         /// </summary>
413         /// <since_tizen> 3 </since_tizen>
414         public bool SynchronosLoading
415         {
416             get
417             {
418                 return _synchronousLoading ?? false;
419             }
420             set
421             {
422                 _synchronousLoading = value;
423                 UpdateImage();
424             }
425         }
426
427         /// <summary>
428         /// Gets or sets whether to correct orientation of image automatically.<br />
429         /// </summary>
430         /// <since_tizen> 5 </since_tizen>
431         public bool OrientationCorrection
432         {
433             get
434             {
435                 return _orientationCorrection ?? false;
436             }
437             set
438             {
439                 _orientationCorrection = value;
440                 UpdateImage();
441             }
442         }
443
444
445         /// <summary>
446         /// Get the loading state of the visual resource.
447         /// </summary>
448         /// <since_tizen> 5 </since_tizen>
449         public ImageView.LoadingStatusType LoadingStatus
450         {
451             get
452             {
453                 return (ImageView.LoadingStatusType)NDalicManualPINVOKE.View_GetVisualResourceStatus(swigCPtr, (int)Property.IMAGE);
454             }
455         }
456
457         /// <summary>
458         /// Enumeration for LoadingStatus of image.
459         /// </summary>
460         /// <since_tizen> 5 </since_tizen>
461         public enum LoadingStatusType
462         {
463             /// <summary>
464             /// Loading preparing status.
465             /// </summary>
466             /// <since_tizen> 5 </since_tizen>
467             Preparing,
468             /// <summary>
469             /// Loading ready status.
470             /// </summary>
471             /// <since_tizen> 5 </since_tizen>
472             Ready,
473             /// <summary>
474             /// Loading failed status.
475             /// </summary>
476             /// <since_tizen> 5 </since_tizen>
477             Failed
478         }
479
480
481         private void UpdateImage()
482         {
483             if (_url != null)
484             {
485                 if (_border != null)
486                 { // for nine-patch image
487                     _nPatchMap = new PropertyMap();
488                     _nPatchMap.Add(Visual.Property.Type, new PropertyValue((int)Visual.Type.NPatch));
489                     _nPatchMap.Add(NpatchImageVisualProperty.URL, new PropertyValue(_url));
490                     _nPatchMap.Add(NpatchImageVisualProperty.Border, new PropertyValue(_border));
491                     if (_borderOnly != null) { _nPatchMap.Add(NpatchImageVisualProperty.BorderOnly, new PropertyValue((bool)_borderOnly)); }
492                     if (_synchronousLoading != null) { _nPatchMap.Add(NpatchImageVisualProperty.SynchronousLoading, new PropertyValue((bool)_synchronousLoading)); }
493                     if (_orientationCorrection != null) { _nPatchMap.Add(ImageVisualProperty.OrientationCorrection, new PropertyValue((bool)_orientationCorrection)); }
494                     SetProperty(ImageView.Property.IMAGE, new PropertyValue(_nPatchMap));
495                 }
496                 else if (_synchronousLoading != null || _orientationCorrection != null)
497                 { // for normal image, with synchronous loading property
498                     PropertyMap imageMap = new PropertyMap();
499                     imageMap.Add(Visual.Property.Type, new PropertyValue((int)Visual.Type.Image));
500                     imageMap.Add(ImageVisualProperty.URL, new PropertyValue(_url));
501                     if (_synchronousLoading != null) { imageMap.Add(ImageVisualProperty.SynchronousLoading, new PropertyValue((bool)_synchronousLoading)); }
502                     if (_orientationCorrection != null) { imageMap.Add(ImageVisualProperty.OrientationCorrection, new PropertyValue((bool)_orientationCorrection)); }
503                     SetProperty(ImageView.Property.IMAGE, new PropertyValue(imageMap));
504                 }
505                 else
506                 { // just for normal image
507                     SetProperty(ImageView.Property.IMAGE, new PropertyValue(_url));
508                 }
509             }
510         }
511
512         private Rectangle _border = null;
513         private PropertyMap _nPatchMap = null;
514         private bool? _synchronousLoading = null;
515         private bool? _borderOnly = null;
516         private string _url = null;
517         private bool? _orientationCorrection = null;
518     }
519
520 }