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.
20 internal class LinearConstrainer : BaseHandle
22 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
24 internal LinearConstrainer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.LinearConstrainer_SWIGUpcast(cPtr), cMemoryOwn)
26 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
29 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(LinearConstrainer obj)
31 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
34 protected override void Dispose(DisposeTypes type)
41 if (type == DisposeTypes.Explicit)
44 //Release your own managed resources here.
45 //You should release all of your own disposable objects here.
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.
54 if (swigCPtr.Handle != global::System.IntPtr.Zero)
60 //Unreference this instance from Registry.
61 Registry.Unregister(this);
63 NDalicPINVOKE.delete_LinearConstrainer(swigCPtr);
65 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
71 public class Property : global::System.IDisposable
73 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
74 protected bool swigCMemOwn;
76 internal Property(global::System.IntPtr cPtr, bool cMemoryOwn)
78 swigCMemOwn = cMemoryOwn;
79 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
82 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj)
84 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
87 //A Flag to check who called Dispose(). (By User or DisposeQueue)
88 private bool isDisposeQueued = false;
89 //A Flat to check if it is already disposed.
90 protected bool disposed = false;
97 isDisposeQueued = true;
98 DisposeQueue.Instance.Add(this);
102 public void Dispose()
104 //Throw excpetion if Dispose() is called in separate thread.
105 if (!Window.IsInstalled())
107 throw new System.InvalidOperationException("This API called from separate thread. This API must be called from MainThread.");
112 Dispose(DisposeTypes.Implicit);
116 Dispose(DisposeTypes.Explicit);
117 System.GC.SuppressFinalize(this);
121 protected virtual void Dispose(DisposeTypes type)
128 if (type == DisposeTypes.Explicit)
131 //Release your own managed resources here.
132 //You should release all of your own disposable objects here.
136 //Release your own unmanaged resources here.
137 //You should not access any managed member here except static instance.
138 //because the execution order of Finalizes is non-deterministic.
140 if (swigCPtr.Handle != global::System.IntPtr.Zero)
145 NDalicPINVOKE.delete_LinearConstrainer_Property(swigCPtr);
147 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
153 internal Property() : this(NDalicPINVOKE.new_LinearConstrainer_Property(), true)
155 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
158 internal static readonly int VALUE = NDalicPINVOKE.LinearConstrainer_Property_VALUE_get();
159 internal static readonly int PROGRESS = NDalicPINVOKE.LinearConstrainer_Property_PROGRESS_get();
162 public LinearConstrainer() : this(NDalicPINVOKE.LinearConstrainer_New(), true)
164 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
167 internal new static LinearConstrainer DownCast(BaseHandle handle)
169 LinearConstrainer ret = new LinearConstrainer(NDalicPINVOKE.LinearConstrainer_DownCast(BaseHandle.getCPtr(handle)), true);
170 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
174 internal LinearConstrainer(LinearConstrainer handle) : this(NDalicPINVOKE.new_LinearConstrainer__SWIG_1(LinearConstrainer.getCPtr(handle)), true)
176 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
179 internal LinearConstrainer Assign(LinearConstrainer rhs)
181 LinearConstrainer ret = new LinearConstrainer(NDalicPINVOKE.LinearConstrainer_Assign(swigCPtr, LinearConstrainer.getCPtr(rhs)), false);
182 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
186 public void Apply(Property target, Property source, Vector2 range, Vector2 wrap)
188 NDalicPINVOKE.LinearConstrainer_Apply__SWIG_0(swigCPtr, Property.getCPtr(target), Property.getCPtr(source), Vector2.getCPtr(range), Vector2.getCPtr(wrap));
189 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
192 public void Apply(Property target, Property source, Vector2 range)
194 NDalicPINVOKE.LinearConstrainer_Apply__SWIG_1(swigCPtr, Property.getCPtr(target), Property.getCPtr(source), Vector2.getCPtr(range));
195 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
198 internal void Remove(Animatable target)
200 NDalicPINVOKE.LinearConstrainer_Remove(swigCPtr, Animatable.getCPtr(target));
201 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
204 public PropertyArray Value
208 Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray();
209 Tizen.NUI.Object.GetProperty(swigCPtr, LinearConstrainer.Property.VALUE).Get(temp);
214 Tizen.NUI.Object.SetProperty(swigCPtr, LinearConstrainer.Property.VALUE, new Tizen.NUI.PropertyValue(value));
217 public PropertyArray Progress
221 Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray();
222 Tizen.NUI.Object.GetProperty(swigCPtr, LinearConstrainer.Property.PROGRESS).Get(temp);
227 Tizen.NUI.Object.SetProperty(swigCPtr, LinearConstrainer.Property.PROGRESS, new Tizen.NUI.PropertyValue(value));