[EflSharp] Update Circle and efl cs files (#945)
[platform/core/csapi/tizenfx.git] / internals / src / EflSharp / EflSharp / efl / efl_ui_table_static.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 table static class</summary>
13 [Efl.Ui.TableStatic.NativeMethods]
14 [Efl.Eo.BindingEntity]
15 public class TableStatic : Efl.Ui.Table
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(TableStatic))
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_table_static_class_get();
35     /// <summary>Initializes a new instance of the <see cref="TableStatic"/> class.</summary>
36     /// <param name="parent">Parent instance.</param>
37     /// <param name="style">The widget style to use. See <see cref="Efl.Ui.Widget.SetStyle" /></param>
38     public TableStatic(Efl.Object parent
39             , System.String style = null) : base(efl_ui_table_static_class_get(), parent)
40     {
41         if (Efl.Eo.Globals.ParamHelperCheck(style))
42         {
43             SetStyle(Efl.Eo.Globals.GetParamHelper(style));
44         }
45
46         FinishInstantiation();
47     }
48
49     /// <summary>Constructor to be used when objects are expected to be constructed from native code.</summary>
50     /// <param name="ch">Tag struct storing the native handle of the object being constructed.</param>
51     protected TableStatic(ConstructingHandle ch) : base(ch)
52     {
53     }
54
55     /// <summary>Initializes a new instance of the <see cref="TableStatic"/> class.
56     /// Internal usage: Constructs an instance from a native pointer. This is used when interacting with C code and should not be used directly.</summary>
57     /// <param name="wh">The native pointer to be wrapped.</param>
58     protected TableStatic(Efl.Eo.Globals.WrappingHandle wh) : base(wh)
59     {
60     }
61
62     /// <summary>Initializes a new instance of the <see cref="TableStatic"/> class.
63     /// Internal usage: Constructor to forward the wrapper initialization to the root class that interfaces with native code. Should not be used directly.</summary>
64     /// <param name="baseKlass">The pointer to the base native Eo class.</param>
65     /// <param name="parent">The Efl.Object parent of this instance.</param>
66     protected TableStatic(IntPtr baseKlass, Efl.Object parent) : base(baseKlass, parent)
67     {
68     }
69
70     private static IntPtr GetEflClassStatic()
71     {
72         return Efl.Ui.TableStatic.efl_ui_table_static_class_get();
73     }
74     /// <summary>Wrapper for native methods and virtual method delegates.
75     /// For internal use by generated code only.</summary>
76     public new class NativeMethods : Efl.Ui.Table.NativeMethods
77     {
78         /// <summary>Gets the list of Eo operations to override.</summary>
79         /// <returns>The list of Eo operations to be overload.</returns>
80         public override System.Collections.Generic.List<Efl_Op_Description> GetEoOps(System.Type type)
81         {
82             var descs = new System.Collections.Generic.List<Efl_Op_Description>();
83             descs.AddRange(base.GetEoOps(type));
84             return descs;
85         }
86         /// <summary>Returns the Eo class for the native methods of this class.</summary>
87         /// <returns>The native class pointer.</returns>
88         public override IntPtr GetEflClass()
89         {
90             return Efl.Ui.TableStatic.efl_ui_table_static_class_get();
91         }
92
93         #pragma warning disable CA1707, CS1591, SA1300, SA1600
94
95         #pragma warning restore CA1707, CS1591, SA1300, SA1600
96
97 }
98 }
99 }
100
101 }
102