Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / LinearConstrainer.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     internal class LinearConstrainer : BaseHandle
21     {
22         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
23
24         internal LinearConstrainer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.LinearConstrainer_SWIGUpcast(cPtr), cMemoryOwn)
25         {
26             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
27         }
28
29         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(LinearConstrainer obj)
30         {
31             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
32         }
33
34         protected override void Dispose(DisposeTypes type)
35         {
36             if (disposed)
37             {
38                 return;
39             }
40
41             if (type == DisposeTypes.Explicit)
42             {
43                 //Called by User
44                 //Release your own managed resources here.
45                 //You should release all of your own disposable objects here.
46
47             }
48
49             //Release your own unmanaged resources here.
50             //You should not access any managed member here except static instance.
51             //because the execution order of Finalizes is non-deterministic.
52
53
54             if (swigCPtr.Handle != global::System.IntPtr.Zero)
55             {
56                 if (swigCMemOwn)
57                 {
58                     swigCMemOwn = false;
59                     NDalicPINVOKE.delete_LinearConstrainer(swigCPtr);
60                 }
61                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
62             }
63
64             base.Dispose(type);
65         }
66
67         public class Property : global::System.IDisposable
68         {
69             private global::System.Runtime.InteropServices.HandleRef swigCPtr;
70             protected bool swigCMemOwn;
71
72             internal Property(global::System.IntPtr cPtr, bool cMemoryOwn)
73             {
74                 swigCMemOwn = cMemoryOwn;
75                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
76             }
77
78             internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj)
79             {
80                 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
81             }
82
83             //A Flag to check who called Dispose(). (By User or DisposeQueue)
84             private bool isDisposeQueued = false;
85             //A Flat to check if it is already disposed.
86             protected bool disposed = false;
87
88
89             ~Property()
90             {
91                 if (!isDisposeQueued)
92                 {
93                     isDisposeQueued = true;
94                     DisposeQueue.Instance.Add(this);
95                 }
96             }
97
98             public void Dispose()
99             {
100                 //Throw excpetion if Dispose() is called in separate thread.
101                 if (!Window.IsInstalled())
102                 {
103                     throw new System.InvalidOperationException("This API called from separate thread. This API must be called from MainThread.");
104                 }
105
106                 if (isDisposeQueued)
107                 {
108                     Dispose(DisposeTypes.Implicit);
109                 }
110                 else
111                 {
112                     Dispose(DisposeTypes.Explicit);
113                     System.GC.SuppressFinalize(this);
114                 }
115             }
116
117             protected virtual void Dispose(DisposeTypes type)
118             {
119                 if (disposed)
120                 {
121                     return;
122                 }
123
124                 if (type == DisposeTypes.Explicit)
125                 {
126                     //Called by User
127                     //Release your own managed resources here.
128                     //You should release all of your own disposable objects here.
129
130                 }
131
132                 //Release your own unmanaged resources here.
133                 //You should not access any managed member here except static instance.
134                 //because the execution order of Finalizes is non-deterministic.
135
136                 if (swigCPtr.Handle != global::System.IntPtr.Zero)
137                 {
138                     if (swigCMemOwn)
139                     {
140                         swigCMemOwn = false;
141                         NDalicPINVOKE.delete_LinearConstrainer_Property(swigCPtr);
142                     }
143                     swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
144                 }
145
146                 disposed = true;
147             }
148
149             internal Property() : this(NDalicPINVOKE.new_LinearConstrainer_Property(), true)
150             {
151                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
152             }
153
154             internal static readonly int VALUE = NDalicPINVOKE.LinearConstrainer_Property_VALUE_get();
155             internal static readonly int PROGRESS = NDalicPINVOKE.LinearConstrainer_Property_PROGRESS_get();
156         }
157
158         public LinearConstrainer() : this(NDalicPINVOKE.LinearConstrainer_New(), true)
159         {
160             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
161
162         }
163         internal new static LinearConstrainer DownCast(BaseHandle handle)
164         {
165             LinearConstrainer ret =  Registry.GetManagedBaseHandleFromNativePtr(handle) as LinearConstrainer;
166             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
167             return ret;
168         }
169
170         internal LinearConstrainer(LinearConstrainer handle) : this(NDalicPINVOKE.new_LinearConstrainer__SWIG_1(LinearConstrainer.getCPtr(handle)), true)
171         {
172             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
173         }
174
175         internal LinearConstrainer Assign(LinearConstrainer rhs)
176         {
177             LinearConstrainer ret = new LinearConstrainer(NDalicPINVOKE.LinearConstrainer_Assign(swigCPtr, LinearConstrainer.getCPtr(rhs)), false);
178             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
179             return ret;
180         }
181
182         public void Apply(Property target, Property source, Vector2 range, Vector2 wrap)
183         {
184             NDalicPINVOKE.LinearConstrainer_Apply__SWIG_0(swigCPtr, Property.getCPtr(target), Property.getCPtr(source), Vector2.getCPtr(range), Vector2.getCPtr(wrap));
185             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
186         }
187
188         public void Apply(Property target, Property source, Vector2 range)
189         {
190             NDalicPINVOKE.LinearConstrainer_Apply__SWIG_1(swigCPtr, Property.getCPtr(target), Property.getCPtr(source), Vector2.getCPtr(range));
191             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
192         }
193
194         internal void Remove(Animatable target)
195         {
196             NDalicPINVOKE.LinearConstrainer_Remove(swigCPtr, Animatable.getCPtr(target));
197             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
198         }
199
200         public PropertyArray Value
201         {
202             get
203             {
204                 Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray();
205                 Tizen.NUI.Object.GetProperty(swigCPtr, LinearConstrainer.Property.VALUE).Get(temp);
206                 return temp;
207             }
208             set
209             {
210                 Tizen.NUI.Object.SetProperty(swigCPtr, LinearConstrainer.Property.VALUE, new Tizen.NUI.PropertyValue(value));
211             }
212         }
213         public PropertyArray Progress
214         {
215             get
216             {
217                 Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray();
218                 Tizen.NUI.Object.GetProperty(swigCPtr, LinearConstrainer.Property.PROGRESS).Get(temp);
219                 return temp;
220             }
221             set
222             {
223                 Tizen.NUI.Object.SetProperty(swigCPtr, LinearConstrainer.Property.PROGRESS, new Tizen.NUI.PropertyValue(value));
224             }
225         }
226
227     }
228
229 }