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)
59 NDalicPINVOKE.delete_LinearConstrainer(swigCPtr);
61 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
67 public class Property : global::System.IDisposable
69 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
70 protected bool swigCMemOwn;
72 internal Property(global::System.IntPtr cPtr, bool cMemoryOwn)
74 swigCMemOwn = cMemoryOwn;
75 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
78 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj)
80 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
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;
93 isDisposeQueued = true;
94 DisposeQueue.Instance.Add(this);
100 //Throw excpetion if Dispose() is called in separate thread.
101 if (!Window.IsInstalled())
103 throw new System.InvalidOperationException("This API called from separate thread. This API must be called from MainThread.");
108 Dispose(DisposeTypes.Implicit);
112 Dispose(DisposeTypes.Explicit);
113 System.GC.SuppressFinalize(this);
117 protected virtual void Dispose(DisposeTypes type)
124 if (type == DisposeTypes.Explicit)
127 //Release your own managed resources here.
128 //You should release all of your own disposable objects here.
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.
136 if (swigCPtr.Handle != global::System.IntPtr.Zero)
141 NDalicPINVOKE.delete_LinearConstrainer_Property(swigCPtr);
143 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
149 internal Property() : this(NDalicPINVOKE.new_LinearConstrainer_Property(), true)
151 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
154 internal static readonly int VALUE = NDalicPINVOKE.LinearConstrainer_Property_VALUE_get();
155 internal static readonly int PROGRESS = NDalicPINVOKE.LinearConstrainer_Property_PROGRESS_get();
158 public LinearConstrainer() : this(NDalicPINVOKE.LinearConstrainer_New(), true)
160 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
163 internal new static LinearConstrainer DownCast(BaseHandle handle)
165 LinearConstrainer ret = Registry.GetManagedBaseHandleFromNativePtr(handle) as LinearConstrainer;
166 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
170 internal LinearConstrainer(LinearConstrainer handle) : this(NDalicPINVOKE.new_LinearConstrainer__SWIG_1(LinearConstrainer.getCPtr(handle)), true)
172 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
175 internal LinearConstrainer Assign(LinearConstrainer rhs)
177 LinearConstrainer ret = new LinearConstrainer(NDalicPINVOKE.LinearConstrainer_Assign(swigCPtr, LinearConstrainer.getCPtr(rhs)), false);
178 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
182 public void Apply(Property target, Property source, Vector2 range, Vector2 wrap)
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();
188 public void Apply(Property target, Property source, Vector2 range)
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();
194 internal void Remove(Animatable target)
196 NDalicPINVOKE.LinearConstrainer_Remove(swigCPtr, Animatable.getCPtr(target));
197 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
200 public PropertyArray Value
204 Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray();
205 Tizen.NUI.Object.GetProperty(swigCPtr, LinearConstrainer.Property.VALUE).Get(temp);
210 Tizen.NUI.Object.SetProperty(swigCPtr, LinearConstrainer.Property.VALUE, new Tizen.NUI.PropertyValue(value));
213 public PropertyArray Progress
217 Tizen.NUI.PropertyArray temp = new Tizen.NUI.PropertyArray();
218 Tizen.NUI.Object.GetProperty(swigCPtr, LinearConstrainer.Property.PROGRESS).Get(temp);
223 Tizen.NUI.Object.SetProperty(swigCPtr, LinearConstrainer.Property.PROGRESS, new Tizen.NUI.PropertyValue(value));