X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=internals%2Fsrc%2FEflSharp%2FEflSharp%2Fefl%2Fefl_cubic_bezier_interpolator.eo.cs;h=6a4d43c0a03397238f0ee7b6c9ec30edb0fcd04b;hb=5418695f94c5065494f5f7d74d1506e7a5267c06;hp=60489023affc361a1a424b1d19fc1f62eda07007;hpb=0b6fcb1c983e8bfd9aa8b8d83432646951c687ce;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/internals/src/EflSharp/EflSharp/efl/efl_cubic_bezier_interpolator.eo.cs b/internals/src/EflSharp/EflSharp/efl/efl_cubic_bezier_interpolator.eo.cs old mode 100644 new mode 100755 index 6048902..6a4d43c --- a/internals/src/EflSharp/EflSharp/efl/efl_cubic_bezier_interpolator.eo.cs +++ b/internals/src/EflSharp/EflSharp/efl/efl_cubic_bezier_interpolator.eo.cs @@ -1,3 +1,4 @@ +#define EFL_BETA #pragma warning disable CS1591 using System; using System.Runtime.InteropServices; @@ -8,11 +9,12 @@ using System.ComponentModel; namespace Efl { /// Efl cubic_bezier interpolator class +/// This is a BETA class. It can be modified or removed in the future. Do not use it for product development. [Efl.CubicBezierInterpolator.NativeMethods] [Efl.Eo.BindingEntity] public class CubicBezierInterpolator : Efl.Object, Efl.IInterpolator { - ///Pointer to the native class description. + /// Pointer to the native class description. public override System.IntPtr NativeClass { get @@ -38,7 +40,8 @@ public class CubicBezierInterpolator : Efl.Object, Efl.IInterpolator FinishInstantiation(); } - /// Constructor to be used when objects are expected to be constructed from native code. + /// Subclasses should override this constructor if they are expected to be instantiated from native code. + /// Do not call this constructor directly. /// Tag struct storing the native handle of the object being constructed. protected CubicBezierInterpolator(ConstructingHandle ch) : base(ch) { @@ -85,6 +88,19 @@ public class CubicBezierInterpolator : Efl.Object, Efl.IInterpolator Eina.Error.RaiseIfUnhandledException(); return _ret_var; } + /// Factors property + /// First factor of the interpolation function. + public (double, double, double, double) Factors { + get { + double _out_factor1 = default(double); + double _out_factor2 = default(double); + double _out_factor3 = default(double); + double _out_factor4 = default(double); + GetFactors(out _out_factor1,out _out_factor2,out _out_factor3,out _out_factor4); + return (_out_factor1,_out_factor2,_out_factor3,_out_factor4); + } + set { SetFactors( value.Item1, value.Item2, value.Item3, value.Item4); } + } private static IntPtr GetEflClassStatic() { return Efl.CubicBezierInterpolator.efl_cubic_bezier_interpolator_class_get(); @@ -255,3 +271,10 @@ public class CubicBezierInterpolator : Efl.Object, Efl.IInterpolator } } +#if EFL_BETA +#pragma warning disable CS1591 +public static class EflCubicBezierInterpolator_ExtensionMethods { + +} +#pragma warning restore CS1591 +#endif