2 * Copyright(c) 2017 Samsung Electronics Co., Ltd.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 using System.ComponentModel;
25 /// A set of key frames for a property that can be animated using DALi animation.<br />
26 /// This allows the generation of key frame objects from individual Property::Values.<br />
28 /// <since_tizen> 3 </since_tizen>
29 public class KeyFrames : BaseHandle
31 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
33 internal KeyFrames(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.KeyFrames_SWIGUpcast(cPtr), cMemoryOwn)
35 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
38 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(KeyFrames obj)
40 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
46 /// <since_tizen> 3 </since_tizen>
47 protected override void Dispose(DisposeTypes type)
54 if(type == DisposeTypes.Explicit)
57 //Release your own managed resources here.
58 //You should release all of your own disposable objects here.
61 //Release your own unmanaged resources here.
62 //You should not access any managed member here except static instance.
63 //because the execution order of Finalizes is non-deterministic.
65 if (swigCPtr.Handle != global::System.IntPtr.Zero)
70 NDalicPINVOKE.delete_KeyFrames(swigCPtr);
72 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
83 /// <param name="progress">A progress value between 0.0 and 1.0.</param>
84 /// <param name="value">A value.</param>
85 /// <since_tizen> 3 </since_tizen>
86 public void Add(float progress, object value)
88 PropertyValue val = PropertyValue.CreateFromObject(value);
95 /// <param name="progress">A progress value between 0.0 and 1.0.</param>
96 /// <param name="value">A value</param>
97 /// <param name="alpha">The alpha function used to blend to the next keyframe.</param>
98 /// <since_tizen> 3 </since_tizen>
99 public void Add(float progress, object value, AlphaFunction alpha)
101 PropertyValue val = PropertyValue.CreateFromObject(value);
102 Add(progress, val, alpha);
106 /// Creates an initialized KeyFrames handle.
108 /// <since_tizen> 3 </since_tizen>
109 public KeyFrames() : this(NDalicPINVOKE.KeyFrames_New(), true)
111 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
116 /// Downcasts a handle to keyFrame handle.
118 /// <since_tizen> 3 </since_tizen>
119 /// Please do not use! this will be deprecated!
120 /// Instead please use as keyword.
121 [Obsolete("Please do not use! This will be deprecated! Please use as keyword instead!")]
122 [EditorBrowsable(EditorBrowsableState.Never)]
123 public static KeyFrames DownCast(BaseHandle handle)
125 KeyFrames ret = Registry.GetManagedBaseHandleFromNativePtr(handle) as KeyFrames;
126 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
131 /// Gets the type of the key frame.
133 /// <returns>The key frame property type</returns>
134 /// <since_tizen> 3 </since_tizen>
135 public new PropertyType GetType()
137 PropertyType ret = (PropertyType)NDalicPINVOKE.KeyFrames_GetType(swigCPtr);
138 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
143 /// Adds a key frame.
145 /// <param name="progress">A progress value between 0.0 and 1.0.</param>
146 /// <param name="value">A value.</param>
147 /// <since_tizen> 3 </since_tizen>
148 public void Add(float progress, PropertyValue value)
150 NDalicPINVOKE.KeyFrames_Add__SWIG_0(swigCPtr, progress, PropertyValue.getCPtr(value));
151 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
155 /// Adds a key frame.
157 /// <param name="progress">A progress value between 0.0 and 1.0.</param>
158 /// <param name="value">A value.</param>
159 /// <param name="alpha">The alpha function used to blend to the next keyframe.</param>
160 /// <since_tizen> 3 </since_tizen>
161 public void Add(float progress, PropertyValue value, AlphaFunction alpha)
163 NDalicPINVOKE.KeyFrames_Add__SWIG_1(swigCPtr, progress, PropertyValue.getCPtr(value), AlphaFunction.getCPtr(alpha));
164 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();