[EflSharp] Update Circle and efl cs files (#916)
[platform/core/csapi/tizenfx.git] / internals / src / EflSharp / EflSharp / efl / efl_canvas_gesture_triple_tap.eo.cs
1 #pragma warning disable CS1591
2 using System;
3 using System.Runtime.InteropServices;
4 using System.Collections.Generic;
5 using System.Linq;
6 using System.Threading;
7 using System.ComponentModel;
8 namespace Efl {
9
10 namespace Canvas {
11
12 /// <summary>EFL Gesture Triple Tap class</summary>
13 [Efl.Canvas.GestureTripleTap.NativeMethods]
14 public class GestureTripleTap : Efl.Canvas.Gesture
15 {
16     ///<summary>Pointer to the native class description.</summary>
17     public override System.IntPtr NativeClass
18     {
19         get
20         {
21             if (((object)this).GetType() == typeof(GestureTripleTap))
22             {
23                 return GetEflClassStatic();
24             }
25             else
26             {
27                 return Efl.Eo.ClassRegister.klassFromType[((object)this).GetType()];
28             }
29         }
30     }
31
32     [System.Runtime.InteropServices.DllImport(efl.Libs.Evas)] internal static extern System.IntPtr
33         efl_canvas_gesture_triple_tap_class_get();
34     /// <summary>Initializes a new instance of the <see cref="GestureTripleTap"/> class.</summary>
35     /// <param name="parent">Parent instance.</param>
36     public GestureTripleTap(Efl.Object parent= null
37             ) : base(efl_canvas_gesture_triple_tap_class_get(), typeof(GestureTripleTap), parent)
38     {
39         FinishInstantiation();
40     }
41
42     /// <summary>Initializes a new instance of the <see cref="GestureTripleTap"/> class.
43     /// Internal usage: Constructs an instance from a native pointer. This is used when interacting with C code and should not be used directly.</summary>
44     /// <param name="raw">The native pointer to be wrapped.</param>
45     protected GestureTripleTap(System.IntPtr raw) : base(raw)
46     {
47     }
48
49     /// <summary>Initializes a new instance of the <see cref="GestureTripleTap"/> class.
50     /// Internal usage: Constructor to forward the wrapper initialization to the root class that interfaces with native code. Should not be used directly.</summary>
51     /// <param name="baseKlass">The pointer to the base native Eo class.</param>
52     /// <param name="managedType">The managed type of the public constructor that originated this call.</param>
53     /// <param name="parent">The Efl.Object parent of this instance.</param>
54     protected GestureTripleTap(IntPtr baseKlass, System.Type managedType, Efl.Object parent) : base(baseKlass, managedType, parent)
55     {
56     }
57
58     private static IntPtr GetEflClassStatic()
59     {
60         return Efl.Canvas.GestureTripleTap.efl_canvas_gesture_triple_tap_class_get();
61     }
62     /// <summary>Wrapper for native methods and virtual method delegates.
63     /// For internal use by generated code only.</summary>
64     public new class NativeMethods : Efl.Canvas.Gesture.NativeMethods
65     {
66         /// <summary>Gets the list of Eo operations to override.</summary>
67         /// <returns>The list of Eo operations to be overload.</returns>
68         public override System.Collections.Generic.List<Efl_Op_Description> GetEoOps(System.Type type)
69         {
70             var descs = new System.Collections.Generic.List<Efl_Op_Description>();
71             descs.AddRange(base.GetEoOps(type));
72             return descs;
73         }
74         /// <summary>Returns the Eo class for the native methods of this class.</summary>
75         /// <returns>The native class pointer.</returns>
76         public override IntPtr GetEflClass()
77         {
78             return Efl.Canvas.GestureTripleTap.efl_canvas_gesture_triple_tap_class_get();
79         }
80
81         #pragma warning disable CA1707, CS1591, SA1300, SA1600
82
83         #pragma warning restore CA1707, CS1591, SA1300, SA1600
84
85 }
86 }
87 }
88
89 }
90