[NUI] Fix build warning[CA1064]
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / PixelData.cs
1 /*
2  * Copyright(c) 2020 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
18 using System;
19 using System.ComponentModel;
20
21 namespace Tizen.NUI
22 {
23     /// <summary>
24     ///  The PixelData object holds a pixel buffer.<br />
25     ///  The PixelData takes over the ownership of the pixel buffer.<br />
26     ///  The buffer memory must not be released outside of this class, instead,
27     ///  the PixelData object will release it automatically when the reference count falls to zero.
28     /// </summary>
29     /// Please DO NOT use! This will be deprecated!
30     /// PixelData class requires externally allocated pixel memory buffer and this buffer loses its ownershop by native DALi.
31     /// And this would make some problem, because dotnet runtime would change the address of memory allocated.
32     /// So this is required to be removed.
33     /// currently no use. will be added later
34     /// <since_tizen> 5 </since_tizen>
35     /// This will be released at Tizen.NET API Level 5, so currently this would be used as inhouse API.
36     [EditorBrowsable(EditorBrowsableState.Never)]
37     public class PixelData : BaseHandle
38     {
39
40         /// <summary>
41         /// Creates a PixelData object.
42         /// </summary>
43         /// <param name="buffer">The raw pixel data.</param>
44         /// <param name="bufferSize">The size of the buffer in bytes.</param>
45         /// <param name="width">Buffer width in pixels.</param>
46         /// <param name="height">Buffer height in pixels.</param>
47         /// <param name="pixelFormat">The pixel format.</param>
48         /// <param name="releaseFunction">The function used to release the memory.</param>
49         /// <since_tizen> 5 </since_tizen>
50         /// This will be released at Tizen.NET API Level 5, so currently this would be used as inhouse API.
51         [EditorBrowsable(EditorBrowsableState.Never)]
52         public PixelData(byte[] buffer, uint bufferSize, uint width, uint height, PixelFormat pixelFormat, PixelData.ReleaseFunction releaseFunction) : this(Interop.PixelData.New(buffer, bufferSize, width, height, (int)pixelFormat, (int)releaseFunction), true)
53         {
54             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
55
56         }
57
58         internal PixelData(global::System.IntPtr cPtr, bool cMemoryOwn) : base(Interop.PixelData.Upcast(cPtr), cMemoryOwn)
59         {
60         }
61
62         /// <summary>
63         /// Enumeration for function to release the pixel buffer.
64         /// </summary>
65         /// <since_tizen> 5 </since_tizen>
66         /// This will be released at Tizen.NET API Level 5, so currently this would be used as inhouse API.
67         [EditorBrowsable(EditorBrowsableState.Never)]
68         public enum ReleaseFunction
69         {
70             /// <summary>
71             /// Use free function to release the pixel buffer.
72             /// </summary>
73             Free,
74
75             /// <summary>
76             /// Use delete[] operator to release the pixel buffer.
77             /// </summary>
78             DeleteArray
79         }
80
81         /// <summary>
82         /// Get URI from pixel data.
83         /// </summary>
84         [EditorBrowsable(EditorBrowsableState.Never)]
85         public Uri Uri
86         {
87             get
88             {
89                 string Uri = "";
90                 Uri = Interop.PixelData.GenerateUrl(this.swigCPtr.Handle);
91                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw new InvalidOperationException("FATAL: get Exception", NDalicPINVOKE.SWIGPendingException.Retrieve());
92                 return new Uri(Uri);
93             }
94         }
95
96         /// <summary>
97         /// Gets the width of the buffer in pixels.
98         /// </summary>
99         /// <returns>The width of the buffer in pixels.</returns>
100         /// <since_tizen> 5 </since_tizen>
101         /// This will be released at Tizen.NET API Level 5, so currently this would be used as inhouse API.
102         [EditorBrowsable(EditorBrowsableState.Never)]
103         public uint GetWidth()
104         {
105             uint ret = Interop.PixelData.GetWidth(swigCPtr);
106             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
107             return ret;
108         }
109
110         /// <summary>
111         /// Gets the height of the buffer in pixels.
112         /// </summary>
113         /// <returns>The height of the buffer in pixels.</returns>
114         /// <since_tizen> 5 </since_tizen>
115         /// This will be released at Tizen.NET API Level 5, so currently this would be used as inhouse API.
116         [EditorBrowsable(EditorBrowsableState.Never)]
117         public uint GetHeight()
118         {
119             uint ret = Interop.PixelData.GetHeight(swigCPtr);
120             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
121             return ret;
122         }
123
124         /// <summary>
125         /// Gets the pixel format.
126         /// </summary>
127         /// <returns>The pixel format.</returns>
128         /// <since_tizen> 5 </since_tizen>
129         /// This will be released at Tizen.NET API Level 5, so currently this would be used as inhouse API.
130         [EditorBrowsable(EditorBrowsableState.Never)]
131         public PixelFormat GetPixelFormat()
132         {
133             PixelFormat ret = (PixelFormat)Interop.PixelData.GetPixelFormat(swigCPtr);
134             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
135             return ret;
136         }
137
138         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(PixelData obj)
139         {
140             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
141         }
142
143         /// This will not be public opened.
144         [EditorBrowsable(EditorBrowsableState.Never)]
145         protected override void ReleaseSwigCPtr(System.Runtime.InteropServices.HandleRef swigCPtr)
146         {
147             Interop.PixelData.DeletePixelData(swigCPtr);
148         }
149     }
150 }