[EflSharp] Update Circle and efl cs files (#995)
[platform/core/csapi/tizenfx.git] / internals / src / EflSharp / EflSharp / efl / efl_canvas_gesture_recognizer_momentum.eo.cs
1 #define EFL_BETA
2 #pragma warning disable CS1591
3 using System;
4 using System.Runtime.InteropServices;
5 using System.Collections.Generic;
6 using System.Linq;
7 using System.Threading;
8 using System.ComponentModel;
9 namespace Efl {
10
11 namespace Canvas {
12
13 /// <summary>EFL Gesture Recognizer Momentum class</summary>
14 /// <remarks>This is a <b>BETA</b> class. It can be modified or removed in the future. Do not use it for product development.</remarks>
15 [Efl.Canvas.GestureRecognizerMomentum.NativeMethods]
16 [Efl.Eo.BindingEntity]
17 public class GestureRecognizerMomentum : Efl.Canvas.GestureRecognizer
18 {
19     /// <summary>Pointer to the native class description.</summary>
20     public override System.IntPtr NativeClass
21     {
22         get
23         {
24             if (((object)this).GetType() == typeof(GestureRecognizerMomentum))
25             {
26                 return GetEflClassStatic();
27             }
28             else
29             {
30                 return Efl.Eo.ClassRegister.klassFromType[((object)this).GetType()];
31             }
32         }
33     }
34
35     [System.Runtime.InteropServices.DllImport(efl.Libs.Evas)] internal static extern System.IntPtr
36         efl_canvas_gesture_recognizer_momentum_class_get();
37     /// <summary>Initializes a new instance of the <see cref="GestureRecognizerMomentum"/> class.</summary>
38     /// <param name="parent">Parent instance.</param>
39     public GestureRecognizerMomentum(Efl.Object parent= null
40             ) : base(efl_canvas_gesture_recognizer_momentum_class_get(), parent)
41     {
42         FinishInstantiation();
43     }
44
45     /// <summary>Subclasses should override this constructor if they are expected to be instantiated from native code.
46     /// Do not call this constructor directly.</summary>
47     /// <param name="ch">Tag struct storing the native handle of the object being constructed.</param>
48     protected GestureRecognizerMomentum(ConstructingHandle ch) : base(ch)
49     {
50     }
51
52     /// <summary>Initializes a new instance of the <see cref="GestureRecognizerMomentum"/> class.
53     /// Internal usage: Constructs an instance from a native pointer. This is used when interacting with C code and should not be used directly.</summary>
54     /// <param name="wh">The native pointer to be wrapped.</param>
55     protected GestureRecognizerMomentum(Efl.Eo.Globals.WrappingHandle wh) : base(wh)
56     {
57     }
58
59     /// <summary>Initializes a new instance of the <see cref="GestureRecognizerMomentum"/> class.
60     /// Internal usage: Constructor to forward the wrapper initialization to the root class that interfaces with native code. Should not be used directly.</summary>
61     /// <param name="baseKlass">The pointer to the base native Eo class.</param>
62     /// <param name="parent">The Efl.Object parent of this instance.</param>
63     protected GestureRecognizerMomentum(IntPtr baseKlass, Efl.Object parent) : base(baseKlass, parent)
64     {
65     }
66
67     private static IntPtr GetEflClassStatic()
68     {
69         return Efl.Canvas.GestureRecognizerMomentum.efl_canvas_gesture_recognizer_momentum_class_get();
70     }
71     /// <summary>Wrapper for native methods and virtual method delegates.
72     /// For internal use by generated code only.</summary>
73     public new class NativeMethods : Efl.Canvas.GestureRecognizer.NativeMethods
74     {
75         /// <summary>Gets the list of Eo operations to override.</summary>
76         /// <returns>The list of Eo operations to be overload.</returns>
77         public override System.Collections.Generic.List<Efl_Op_Description> GetEoOps(System.Type type)
78         {
79             var descs = new System.Collections.Generic.List<Efl_Op_Description>();
80             descs.AddRange(base.GetEoOps(type));
81             return descs;
82         }
83         /// <summary>Returns the Eo class for the native methods of this class.</summary>
84         /// <returns>The native class pointer.</returns>
85         public override IntPtr GetEflClass()
86         {
87             return Efl.Canvas.GestureRecognizerMomentum.efl_canvas_gesture_recognizer_momentum_class_get();
88         }
89
90         #pragma warning disable CA1707, CS1591, SA1300, SA1600
91
92         #pragma warning restore CA1707, CS1591, SA1300, SA1600
93
94 }
95 }
96 }
97
98 }
99
100 #if EFL_BETA
101 #pragma warning disable CS1591
102 public static class Efl_CanvasGestureRecognizerMomentum_ExtensionMethods {
103 }
104 #pragma warning restore CS1591
105 #endif