[EflSharp] Update Circle and efl cs files (#819)
[platform/core/csapi/tizenfx.git] / internals / src / EflSharp / EflSharp / efl / efl_ui_alert_popup_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 Alert Popup internal part class</summary>
13 [Efl.Ui.AlertPopupPart.NativeMethods]
14 public class AlertPopupPart : Efl.Ui.LayoutPartText, Efl.Eo.IWrapper
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(AlertPopupPart))
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.Elementary)] internal static extern System.IntPtr
33         efl_ui_alert_popup_part_class_get();
34     /// <summary>Initializes a new instance of the <see cref="AlertPopupPart"/> class.</summary>
35     /// <param name="parent">Parent instance.</param>
36     public AlertPopupPart(Efl.Object parent= null
37             ) : base(efl_ui_alert_popup_part_class_get(), typeof(AlertPopupPart), parent)
38     {
39         FinishInstantiation();
40     }
41
42     /// <summary>Initializes a new instance of the <see cref="AlertPopupPart"/> 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 AlertPopupPart(System.IntPtr raw) : base(raw)
46     {
47             }
48
49     /// <summary>Initializes a new instance of the <see cref="AlertPopupPart"/> 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 AlertPopupPart(IntPtr baseKlass, System.Type managedType, Efl.Object parent) : base(baseKlass, managedType, parent)
55     {
56     }
57
58     /// <summary>Verifies if the given object is equal to this one.</summary>
59     /// <param name="instance">The object to compare to.</param>
60     /// <returns>True if both objects point to the same native object.</returns>
61     public override bool Equals(object instance)
62     {
63         var other = instance as Efl.Object;
64         if (other == null)
65         {
66             return false;
67         }
68         return this.NativeHandle == other.NativeHandle;
69     }
70
71     /// <summary>Gets the hash code for this object based on the native pointer it points to.</summary>
72     /// <returns>The value of the pointer, to be used as the hash code of this object.</returns>
73     public override int GetHashCode()
74     {
75         return this.NativeHandle.ToInt32();
76     }
77
78     /// <summary>Turns the native pointer into a string representation.</summary>
79     /// <returns>A string with the type and the native pointer for this object.</returns>
80     public override String ToString()
81     {
82         return $"{this.GetType().Name}@[{this.NativeHandle.ToInt32():x}]";
83     }
84
85     private static IntPtr GetEflClassStatic()
86     {
87         return Efl.Ui.AlertPopupPart.efl_ui_alert_popup_part_class_get();
88     }
89     /// <summary>Wrapper for native methods and virtual method delegates.
90     /// For internal use by generated code only.</summary>
91     public new class NativeMethods : Efl.Ui.LayoutPartText.NativeMethods
92     {
93         /// <summary>Gets the list of Eo operations to override.</summary>
94         /// <returns>The list of Eo operations to be overload.</returns>
95         public override System.Collections.Generic.List<Efl_Op_Description> GetEoOps(System.Type type)
96         {
97             var descs = new System.Collections.Generic.List<Efl_Op_Description>();
98             descs.AddRange(base.GetEoOps(type));
99             return descs;
100         }
101         /// <summary>Returns the Eo class for the native methods of this class.</summary>
102         /// <returns>The native class pointer.</returns>
103         public override IntPtr GetEflClass()
104         {
105             return Efl.Ui.AlertPopupPart.efl_ui_alert_popup_part_class_get();
106         }
107
108         #pragma warning disable CA1707, SA1300, SA1600
109
110         #pragma warning restore CA1707, SA1300, SA1600
111
112 }
113 }
114 }
115
116 }
117