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.
23 /// A set of key frames for a property that can be animated using Dali Animation.<br>
24 /// This allows the generation of key frame objects from individual Property::Values.<br>
26 public class KeyFrames : BaseHandle
28 private global::System.Runtime.InteropServices.HandleRef swigCPtr;
30 internal KeyFrames(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.KeyFrames_SWIGUpcast(cPtr), cMemoryOwn)
32 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
35 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(KeyFrames obj)
37 return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
40 protected override void Dispose(DisposeTypes type)
47 if(type == DisposeTypes.Explicit)
50 //Release your own managed resources here.
51 //You should release all of your own disposable objects here.
54 //Release your own unmanaged resources here.
55 //You should not access any managed member here except static instance.
56 //because the execution order of Finalizes is non-deterministic.
58 if (swigCPtr.Handle != global::System.IntPtr.Zero)
64 //Unreference this instance from Registry.
65 Registry.Unregister(this);
67 NDalicPINVOKE.delete_KeyFrames(swigCPtr);
69 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
80 /// <param name="progress">A progress value between 0.0 and 1.0</param>
81 /// <param name="value">A value</param>
82 public void Add(float progress, object value)
84 PropertyValue val = PropertyValue.CreateFromObject(value);
91 /// <param name="progress">A progress value between 0.0 and 1.0</param>
92 /// <param name="value">A value</param>
93 /// <param name="alpha">The alpha function used to blend to the next keyframe</param>
94 public void Add(float progress, object value, AlphaFunction alpha)
96 PropertyValue val = PropertyValue.CreateFromObject(value);
97 Add(progress, val, alpha);
101 /// Creates an initialized KeyFrames handle.
103 public KeyFrames() : this(NDalicPINVOKE.KeyFrames_New(), true)
105 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
109 [Obsolete("Please do not use! this will be deprecated")]
110 public static KeyFrames DownCast(BaseHandle handle)
112 KeyFrames ret = new KeyFrames(NDalicPINVOKE.KeyFrames_DownCast(BaseHandle.getCPtr(handle)), true);
113 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
118 /// Gets the type of the key frame.
120 /// <returns>The key frame property type</returns>
121 public PropertyType GetType()
123 PropertyType ret = (PropertyType)NDalicPINVOKE.KeyFrames_GetType(swigCPtr);
124 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
129 /// Adds a key frame.
131 /// <param name="progress">A progress value between 0.0 and 1.0</param>
132 /// <param name="value">A value</param>
133 public void Add(float progress, PropertyValue value)
135 NDalicPINVOKE.KeyFrames_Add__SWIG_0(swigCPtr, progress, PropertyValue.getCPtr(value));
136 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
140 /// Adds a key frame.
142 /// <param name="progress">A progress value between 0.0 and 1.0</param>
143 /// <param name="value">A value</param>
144 /// <param name="alpha">The alpha function used to blend to the next keyframe</param>
145 public void Add(float progress, PropertyValue value, AlphaFunction alpha)
147 NDalicPINVOKE.KeyFrames_Add__SWIG_1(swigCPtr, progress, PropertyValue.getCPtr(value), AlphaFunction.getCPtr(alpha));
148 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();