[EflSharp] Update Circle and efl cs files (#945)
[platform/core/csapi/tizenfx.git] / internals / src / EflSharp / EflSharp / efl / efl_ui_textpath_part.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 Ui {
11
12 /// <summary>Efl UI Textpath internal part class</summary>
13 [Efl.Ui.TextpathPart.NativeMethods]
14 [Efl.Eo.BindingEntity]
15 public class TextpathPart : Efl.Ui.LayoutPartText
16 {
17     ///<summary>Pointer to the native class description.</summary>
18     public override System.IntPtr NativeClass
19     {
20         get
21         {
22             if (((object)this).GetType() == typeof(TextpathPart))
23             {
24                 return GetEflClassStatic();
25             }
26             else
27             {
28                 return Efl.Eo.ClassRegister.klassFromType[((object)this).GetType()];
29             }
30         }
31     }
32
33     [System.Runtime.InteropServices.DllImport(efl.Libs.Elementary)] internal static extern System.IntPtr
34         efl_ui_textpath_part_class_get();
35     /// <summary>Initializes a new instance of the <see cref="TextpathPart"/> class.</summary>
36     /// <param name="parent">Parent instance.</param>
37     public TextpathPart(Efl.Object parent= null
38             ) : base(efl_ui_textpath_part_class_get(), parent)
39     {
40         FinishInstantiation();
41     }
42
43     /// <summary>Constructor to be used when objects are expected to be constructed from native code.</summary>
44     /// <param name="ch">Tag struct storing the native handle of the object being constructed.</param>
45     protected TextpathPart(ConstructingHandle ch) : base(ch)
46     {
47     }
48
49     /// <summary>Initializes a new instance of the <see cref="TextpathPart"/> class.
50     /// Internal usage: Constructs an instance from a native pointer. This is used when interacting with C code and should not be used directly.</summary>
51     /// <param name="wh">The native pointer to be wrapped.</param>
52     protected TextpathPart(Efl.Eo.Globals.WrappingHandle wh) : base(wh)
53     {
54     }
55
56     /// <summary>Initializes a new instance of the <see cref="TextpathPart"/> class.
57     /// Internal usage: Constructor to forward the wrapper initialization to the root class that interfaces with native code. Should not be used directly.</summary>
58     /// <param name="baseKlass">The pointer to the base native Eo class.</param>
59     /// <param name="parent">The Efl.Object parent of this instance.</param>
60     protected TextpathPart(IntPtr baseKlass, Efl.Object parent) : base(baseKlass, parent)
61     {
62     }
63
64     private static IntPtr GetEflClassStatic()
65     {
66         return Efl.Ui.TextpathPart.efl_ui_textpath_part_class_get();
67     }
68     /// <summary>Wrapper for native methods and virtual method delegates.
69     /// For internal use by generated code only.</summary>
70     public new class NativeMethods : Efl.Ui.LayoutPartText.NativeMethods
71     {
72         /// <summary>Gets the list of Eo operations to override.</summary>
73         /// <returns>The list of Eo operations to be overload.</returns>
74         public override System.Collections.Generic.List<Efl_Op_Description> GetEoOps(System.Type type)
75         {
76             var descs = new System.Collections.Generic.List<Efl_Op_Description>();
77             descs.AddRange(base.GetEoOps(type));
78             return descs;
79         }
80         /// <summary>Returns the Eo class for the native methods of this class.</summary>
81         /// <returns>The native class pointer.</returns>
82         public override IntPtr GetEflClass()
83         {
84             return Efl.Ui.TextpathPart.efl_ui_textpath_part_class_get();
85         }
86
87         #pragma warning disable CA1707, CS1591, SA1300, SA1600
88
89         #pragma warning restore CA1707, CS1591, SA1300, SA1600
90
91 }
92 }
93 }
94
95 }
96