Merge "[ElmSharp] Test for scroll speed"
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / KeyFrames.cs
1 /*
2  * Copyright(c) 2017 Samsung Electronics Co., Ltd.
3  *
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
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  *
16  */
17
18 using System;
19 using System.ComponentModel;
20
21 namespace Tizen.NUI
22 {
23
24     /// <summary>
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 />
27     /// </summary>
28     /// <since_tizen> 3 </since_tizen>
29     public class KeyFrames : BaseHandle
30     {
31         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
32
33         internal KeyFrames(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.KeyFrames_SWIGUpcast(cPtr), cMemoryOwn)
34         {
35             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
36         }
37
38         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(KeyFrames obj)
39         {
40             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
41         }
42
43         /// <summary>
44         /// Dispose.
45         /// </summary>
46         /// <since_tizen> 3 </since_tizen>
47         protected override void Dispose(DisposeTypes type)
48         {
49             if(disposed)
50             {
51                 return;
52             }
53
54             if(type == DisposeTypes.Explicit)
55             {
56                 //Called by User
57                 //Release your own managed resources here.
58                 //You should release all of your own disposable objects here.
59             }
60
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.
64
65             if (swigCPtr.Handle != global::System.IntPtr.Zero)
66             {
67                 if (swigCMemOwn)
68                 {
69                     swigCMemOwn = false;
70                     NDalicPINVOKE.delete_KeyFrames(swigCPtr);
71                 }
72                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
73             }
74
75             base.Dispose(type);
76         }
77
78
79
80         /// <summary>
81         /// Adds a key frame.
82         /// </summary>
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)
87         {
88             PropertyValue val = PropertyValue.CreateFromObject(value);
89             Add(progress, val);
90         }
91
92         /// <summary>
93         /// Adds a key frame.
94         /// </summary>
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)
100         {
101             PropertyValue val = PropertyValue.CreateFromObject(value);
102             Add(progress, val, alpha);
103         }
104
105         /// <summary>
106         /// Creates an initialized KeyFrames handle.
107         /// </summary>
108         /// <since_tizen> 3 </since_tizen>
109         public KeyFrames() : this(NDalicPINVOKE.KeyFrames_New(), true)
110         {
111             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
112
113         }
114
115         /// <summary>
116         /// Gets the type of the key frame.
117         /// </summary>
118         /// <returns>The key frame property type</returns>
119         /// <since_tizen> 3 </since_tizen>
120         public new PropertyType GetType()
121         {
122             PropertyType ret = (PropertyType)NDalicPINVOKE.KeyFrames_GetType(swigCPtr);
123             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
124             return ret;
125         }
126
127         /// <summary>
128         /// Adds a key frame.
129         /// </summary>
130         /// <param name="progress">A progress value between 0.0 and 1.0.</param>
131         /// <param name="value">A value.</param>
132         /// <since_tizen> 3 </since_tizen>
133         public void Add(float progress, PropertyValue value)
134         {
135             NDalicPINVOKE.KeyFrames_Add__SWIG_0(swigCPtr, progress, PropertyValue.getCPtr(value));
136             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
137         }
138
139         /// <summary>
140         /// Adds a key frame.
141         /// </summary>
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         /// <since_tizen> 3 </since_tizen>
146         public void Add(float progress, PropertyValue value, AlphaFunction alpha)
147         {
148             NDalicPINVOKE.KeyFrames_Add__SWIG_1(swigCPtr, progress, PropertyValue.getCPtr(value), AlphaFunction.getCPtr(alpha));
149             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
150         }
151
152     }
153
154 }