Merge remote-tracking branch 'wifi-direct/tizen'
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / PaddingType.cs
1 /** Copyright (c) 2017 Samsung Electronics Co., Ltd.
2 *
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
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
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.
14 *
15 */
16
17 namespace Tizen.NUI
18 {
19
20     public class PaddingType : global::System.IDisposable
21     {
22         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
23         protected bool swigCMemOwn;
24
25         internal PaddingType(global::System.IntPtr cPtr, bool cMemoryOwn)
26         {
27             swigCMemOwn = cMemoryOwn;
28             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
29         }
30
31         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(PaddingType obj)
32         {
33             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
34         }
35
36         //A Flag to check who called Dispose(). (By User or DisposeQueue)
37         private bool isDisposeQueued = false;
38         //A Flat to check if it is already disposed.
39         protected bool disposed = false;
40
41
42         ~PaddingType()
43         {
44             if (!isDisposeQueued)
45             {
46                 isDisposeQueued = true;
47                 DisposeQueue.Instance.Add(this);
48             }
49         }
50
51         public void Dispose()
52         {
53             //Throw excpetion if Dispose() is called in separate thread.
54             if (!Window.IsInstalled())
55             {
56                 throw new System.InvalidOperationException("This API called from separate thread. This API must be called from MainThread.");
57             }
58
59             if (isDisposeQueued)
60             {
61                 Dispose(DisposeTypes.Implicit);
62             }
63             else
64             {
65                 Dispose(DisposeTypes.Explicit);
66                 System.GC.SuppressFinalize(this);
67             }
68         }
69
70         protected virtual void Dispose(DisposeTypes type)
71         {
72             if (disposed)
73             {
74                 return;
75             }
76
77             if (type == DisposeTypes.Explicit)
78             {
79                 //Called by User
80                 //Release your own managed resources here.
81                 //You should release all of your own disposable objects here.
82
83             }
84
85             //Release your own unmanaged resources here.
86             //You should not access any managed member here except static instance.
87             //because the execution order of Finalizes is non-deterministic.
88
89             if (swigCPtr.Handle != global::System.IntPtr.Zero)
90             {
91                 if (swigCMemOwn)
92                 {
93                     swigCMemOwn = false;
94                     NDalicPINVOKE.delete_PaddingType(swigCPtr);
95                 }
96                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
97             }
98
99             disposed = true;
100         }
101
102         public static bool operator ==(PaddingType a, PaddingType b)
103         {
104             // If both are null, or both are same instance, return true.
105             if (System.Object.ReferenceEquals(a, b))
106             {
107                 return true;
108             }
109
110             // If one is null, but not both, return false.
111             if (((object)a == null) || ((object)b == null))
112             {
113                 return false;
114             }
115
116             // Return true if the fields match:
117             return (System.Math.Abs(a.Left - b.Left) < NDalic.GetRangedEpsilon(a.Left, b.Left)) &&
118                    (System.Math.Abs(a.Right - b.Right) < NDalic.GetRangedEpsilon(a.Right, b.Right)) &&
119                    (System.Math.Abs(a.Bottom - b.Bottom) < NDalic.GetRangedEpsilon(a.Bottom, b.Bottom)) &&
120                    (System.Math.Abs(a.Top - b.Top) < NDalic.GetRangedEpsilon(a.Top, b.Top));
121         }
122
123         public static bool operator !=(PaddingType a, PaddingType b)
124         {
125             return !(a == b);
126         }
127
128         ///< The Left value
129         public float Left
130         {
131             set
132             {
133                 left = value;
134             }
135             get
136             {
137                 return left;
138             }
139         }
140
141         ///< The Right value
142         public float Right
143         {
144             set
145             {
146                 right = value;
147             }
148             get
149             {
150                 return right;
151             }
152         }
153
154         ///< The Bottom value
155         public float Bottom
156         {
157             set
158             {
159                 bottom = value;
160             }
161             get
162             {
163                 return bottom;
164             }
165         }
166
167         ///< The Top value
168         public float Top
169         {
170             set
171             {
172                 top = value;
173             }
174             get
175             {
176                 return top;
177             }
178         }
179
180
181         public PaddingType() : this(NDalicPINVOKE.new_PaddingType__SWIG_0(), true)
182         {
183             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
184         }
185
186         public PaddingType(float x, float y, float width, float height) : this(NDalicPINVOKE.new_PaddingType__SWIG_1(x, y, width, height), true)
187         {
188             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
189         }
190
191         public void Set(float newX, float newY, float newWidth, float newHeight)
192         {
193             NDalicPINVOKE.PaddingType_Set(swigCPtr, newX, newY, newWidth, newHeight);
194             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
195         }
196
197         private float x
198         {
199             set
200             {
201                 NDalicPINVOKE.PaddingType_x_set(swigCPtr, value);
202                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
203             }
204             get
205             {
206                 float ret = NDalicPINVOKE.PaddingType_x_get(swigCPtr);
207                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
208                 return ret;
209             }
210         }
211
212         private float left
213         {
214             set
215             {
216                 NDalicPINVOKE.PaddingType_left_set(swigCPtr, value);
217                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
218             }
219             get
220             {
221                 float ret = NDalicPINVOKE.PaddingType_left_get(swigCPtr);
222                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
223                 return ret;
224             }
225         }
226
227         private float y
228         {
229             set
230             {
231                 NDalicPINVOKE.PaddingType_y_set(swigCPtr, value);
232                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
233             }
234             get
235             {
236                 float ret = NDalicPINVOKE.PaddingType_y_get(swigCPtr);
237                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
238                 return ret;
239             }
240         }
241
242         private float right
243         {
244             set
245             {
246                 NDalicPINVOKE.PaddingType_right_set(swigCPtr, value);
247                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
248             }
249             get
250             {
251                 float ret = NDalicPINVOKE.PaddingType_right_get(swigCPtr);
252                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
253                 return ret;
254             }
255         }
256
257         private float width
258         {
259             set
260             {
261                 NDalicPINVOKE.PaddingType_width_set(swigCPtr, value);
262                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
263             }
264             get
265             {
266                 float ret = NDalicPINVOKE.PaddingType_width_get(swigCPtr);
267                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
268                 return ret;
269             }
270         }
271
272         private float bottom
273         {
274             set
275             {
276                 NDalicPINVOKE.PaddingType_bottom_set(swigCPtr, value);
277                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
278             }
279             get
280             {
281                 float ret = NDalicPINVOKE.PaddingType_bottom_get(swigCPtr);
282                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
283                 return ret;
284             }
285         }
286
287         private float height
288         {
289             set
290             {
291                 NDalicPINVOKE.PaddingType_height_set(swigCPtr, value);
292                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
293             }
294             get
295             {
296                 float ret = NDalicPINVOKE.PaddingType_height_get(swigCPtr);
297                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
298                 return ret;
299             }
300         }
301
302         private float top
303         {
304             set
305             {
306                 NDalicPINVOKE.PaddingType_top_set(swigCPtr, value);
307                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
308             }
309             get
310             {
311                 float ret = NDalicPINVOKE.PaddingType_top_get(swigCPtr);
312                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
313                 return ret;
314             }
315         }
316
317     }
318
319 }