[EflSharp] Update Circle and efl cs files (#819)
[platform/core/csapi/tizenfx.git] / internals / src / EflSharp / EflSharp / efl / efl_ui_text_factory_images.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 namespace TextFactory {
13
14 /// <summary>Factory that creates images given key string
15 /// The key can be either a full image path, or associated with one. The factory will fallback if key was not matches with an image, and try to load it as a full path.</summary>
16 [Efl.Ui.TextFactory.Images.NativeMethods]
17 public class Images : Efl.Object, Efl.Eo.IWrapper,Efl.Canvas.ITextFactory
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(Images))
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.Elementary)] internal static extern System.IntPtr
36         efl_ui_text_factory_images_class_get();
37     /// <summary>Initializes a new instance of the <see cref="Images"/> class.</summary>
38     /// <param name="parent">Parent instance.</param>
39     public Images(Efl.Object parent= null
40             ) : base(efl_ui_text_factory_images_class_get(), typeof(Images), parent)
41     {
42         FinishInstantiation();
43     }
44
45     /// <summary>Initializes a new instance of the <see cref="Images"/> class.
46     /// Internal usage: Constructs an instance from a native pointer. This is used when interacting with C code and should not be used directly.</summary>
47     /// <param name="raw">The native pointer to be wrapped.</param>
48     protected Images(System.IntPtr raw) : base(raw)
49     {
50             }
51
52     /// <summary>Initializes a new instance of the <see cref="Images"/> class.
53     /// Internal usage: Constructor to forward the wrapper initialization to the root class that interfaces with native code. Should not be used directly.</summary>
54     /// <param name="baseKlass">The pointer to the base native Eo class.</param>
55     /// <param name="managedType">The managed type of the public constructor that originated this call.</param>
56     /// <param name="parent">The Efl.Object parent of this instance.</param>
57     protected Images(IntPtr baseKlass, System.Type managedType, Efl.Object parent) : base(baseKlass, managedType, parent)
58     {
59     }
60
61     /// <summary>Verifies if the given object is equal to this one.</summary>
62     /// <param name="instance">The object to compare to.</param>
63     /// <returns>True if both objects point to the same native object.</returns>
64     public override bool Equals(object instance)
65     {
66         var other = instance as Efl.Object;
67         if (other == null)
68         {
69             return false;
70         }
71         return this.NativeHandle == other.NativeHandle;
72     }
73
74     /// <summary>Gets the hash code for this object based on the native pointer it points to.</summary>
75     /// <returns>The value of the pointer, to be used as the hash code of this object.</returns>
76     public override int GetHashCode()
77     {
78         return this.NativeHandle.ToInt32();
79     }
80
81     /// <summary>Turns the native pointer into a string representation.</summary>
82     /// <returns>A string with the type and the native pointer for this object.</returns>
83     public override String ToString()
84     {
85         return $"{this.GetType().Name}@[{this.NativeHandle.ToInt32():x}]";
86     }
87
88     /// <summary>Associates given name with a path of an image or EET file.
89     /// This can be used for quick retrieval (instead of providing actual filenames.
90     /// 
91     /// This <c>file</c> is associated with <c>name</c> is considered a full file path.
92     /// 
93     /// see <see cref="Efl.Ui.TextFactory.Images.AddMatchesMmap"/> for mmap version see <see cref="Efl.Ui.TextFactory.Images.DelMatches"/></summary>
94     /// <param name="name">the name associated with filename</param>
95     /// <param name="path">the image or EET file path</param>
96     /// <param name="key">the key to use (in cases of loading an EET file</param>
97     /// <returns><c>true</c> if successful, <c>false</c> otherwise</returns>
98     virtual public bool AddMatches(System.String name, System.String path, System.String key) {
99                                                                                  var _ret_var = Efl.Ui.TextFactory.Images.NativeMethods.efl_ui_text_factory_images_matches_add_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle),name, path, key);
100         Eina.Error.RaiseIfUnhandledException();
101                                                         return _ret_var;
102  }
103     /// <summary>Deletes an association of <c>key</c> with its respective file path.
104     /// see <see cref="Efl.Ui.TextFactory.Images.AddMatches"/></summary>
105     /// <param name="key">the entry&apos;s key to delete</param>
106     /// <returns><c>true</c> if successful, <c>false</c> otherwise</returns>
107     virtual public bool DelMatches(System.String key) {
108                                  var _ret_var = Efl.Ui.TextFactory.Images.NativeMethods.efl_ui_text_factory_images_matches_del_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle),key);
109         Eina.Error.RaiseIfUnhandledException();
110                         return _ret_var;
111  }
112     /// <summary>Associates given name with a mmap&apos;d image or EET file and key.
113     /// see <see cref="Efl.Ui.TextFactory.Images.AddMatches"/> for string file path version see <see cref="Efl.Ui.TextFactory.Images.DelMatchesMmap"/></summary>
114     /// <param name="name">the name associated with filename</param>
115     /// <param name="file">the image or EET file</param>
116     /// <param name="key">the key to use (in cases of loading an EET file</param>
117     /// <returns><c>true</c> if successful, <c>false</c> otherwise</returns>
118     virtual public bool AddMatchesMmap(System.String name, Eina.File file, System.String key) {
119                                                                                  var _ret_var = Efl.Ui.TextFactory.Images.NativeMethods.efl_ui_text_factory_images_matches_mmap_add_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle),name, file, key);
120         Eina.Error.RaiseIfUnhandledException();
121                                                         return _ret_var;
122  }
123     /// <summary>Deletes an association of <c>key</c> with its respective file.
124     /// see <see cref="Efl.Ui.TextFactory.Images.AddMatchesMmap"/></summary>
125     /// <param name="key">the entry&apos;s key to delete</param>
126     /// <returns><c>true</c> if successful, <c>false</c> otherwise</returns>
127     virtual public bool DelMatchesMmap(System.String key) {
128                                  var _ret_var = Efl.Ui.TextFactory.Images.NativeMethods.efl_ui_text_factory_images_matches_mmap_del_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle),key);
129         Eina.Error.RaiseIfUnhandledException();
130                         return _ret_var;
131  }
132     /// <summary>Translates a given <c>key</c> to an item object, and returns the object. The returned object should be owned by the passed <c>object</c>.</summary>
133     /// <param name="kw_object">The parent of the created object</param>
134     /// <param name="key">Key that is associated to an item object</param>
135     virtual public Efl.Canvas.Object Create(Efl.Canvas.Object kw_object, System.String key) {
136                                                          var _ret_var = Efl.Canvas.ITextFactoryConcrete.NativeMethods.efl_canvas_text_factory_create_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle),kw_object, key);
137         Eina.Error.RaiseIfUnhandledException();
138                                         return _ret_var;
139  }
140     private static IntPtr GetEflClassStatic()
141     {
142         return Efl.Ui.TextFactory.Images.efl_ui_text_factory_images_class_get();
143     }
144     /// <summary>Wrapper for native methods and virtual method delegates.
145     /// For internal use by generated code only.</summary>
146     public new class NativeMethods : Efl.Object.NativeMethods
147     {
148         private static Efl.Eo.NativeModule Module = new Efl.Eo.NativeModule(    efl.Libs.Elementary);
149         /// <summary>Gets the list of Eo operations to override.</summary>
150         /// <returns>The list of Eo operations to be overload.</returns>
151         public override System.Collections.Generic.List<Efl_Op_Description> GetEoOps(System.Type type)
152         {
153             var descs = new System.Collections.Generic.List<Efl_Op_Description>();
154             var methods = Efl.Eo.Globals.GetUserMethods(type);
155
156             if (efl_ui_text_factory_images_matches_add_static_delegate == null)
157             {
158                 efl_ui_text_factory_images_matches_add_static_delegate = new efl_ui_text_factory_images_matches_add_delegate(matches_add);
159             }
160
161             if (methods.FirstOrDefault(m => m.Name == "AddMatches") != null)
162             {
163                 descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_ui_text_factory_images_matches_add"), func = Marshal.GetFunctionPointerForDelegate(efl_ui_text_factory_images_matches_add_static_delegate) });
164             }
165
166             if (efl_ui_text_factory_images_matches_del_static_delegate == null)
167             {
168                 efl_ui_text_factory_images_matches_del_static_delegate = new efl_ui_text_factory_images_matches_del_delegate(matches_del);
169             }
170
171             if (methods.FirstOrDefault(m => m.Name == "DelMatches") != null)
172             {
173                 descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_ui_text_factory_images_matches_del"), func = Marshal.GetFunctionPointerForDelegate(efl_ui_text_factory_images_matches_del_static_delegate) });
174             }
175
176             if (efl_ui_text_factory_images_matches_mmap_add_static_delegate == null)
177             {
178                 efl_ui_text_factory_images_matches_mmap_add_static_delegate = new efl_ui_text_factory_images_matches_mmap_add_delegate(matches_mmap_add);
179             }
180
181             if (methods.FirstOrDefault(m => m.Name == "AddMatchesMmap") != null)
182             {
183                 descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_ui_text_factory_images_matches_mmap_add"), func = Marshal.GetFunctionPointerForDelegate(efl_ui_text_factory_images_matches_mmap_add_static_delegate) });
184             }
185
186             if (efl_ui_text_factory_images_matches_mmap_del_static_delegate == null)
187             {
188                 efl_ui_text_factory_images_matches_mmap_del_static_delegate = new efl_ui_text_factory_images_matches_mmap_del_delegate(matches_mmap_del);
189             }
190
191             if (methods.FirstOrDefault(m => m.Name == "DelMatchesMmap") != null)
192             {
193                 descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_ui_text_factory_images_matches_mmap_del"), func = Marshal.GetFunctionPointerForDelegate(efl_ui_text_factory_images_matches_mmap_del_static_delegate) });
194             }
195
196             if (efl_canvas_text_factory_create_static_delegate == null)
197             {
198                 efl_canvas_text_factory_create_static_delegate = new efl_canvas_text_factory_create_delegate(create);
199             }
200
201             if (methods.FirstOrDefault(m => m.Name == "Create") != null)
202             {
203                 descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_canvas_text_factory_create"), func = Marshal.GetFunctionPointerForDelegate(efl_canvas_text_factory_create_static_delegate) });
204             }
205
206             descs.AddRange(base.GetEoOps(type));
207             return descs;
208         }
209         /// <summary>Returns the Eo class for the native methods of this class.</summary>
210         /// <returns>The native class pointer.</returns>
211         public override IntPtr GetEflClass()
212         {
213             return Efl.Ui.TextFactory.Images.efl_ui_text_factory_images_class_get();
214         }
215
216         #pragma warning disable CA1707, SA1300, SA1600
217
218         [return: MarshalAs(UnmanagedType.U1)]
219         private delegate bool efl_ui_text_factory_images_matches_add_delegate(System.IntPtr obj, System.IntPtr pd, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String name, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String path, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String key);
220
221         [return: MarshalAs(UnmanagedType.U1)]
222         public delegate bool efl_ui_text_factory_images_matches_add_api_delegate(System.IntPtr obj, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String name, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String path, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String key);
223
224         public static Efl.Eo.FunctionWrapper<efl_ui_text_factory_images_matches_add_api_delegate> efl_ui_text_factory_images_matches_add_ptr = new Efl.Eo.FunctionWrapper<efl_ui_text_factory_images_matches_add_api_delegate>(Module, "efl_ui_text_factory_images_matches_add");
225
226         private static bool matches_add(System.IntPtr obj, System.IntPtr pd, System.String name, System.String path, System.String key)
227         {
228             Eina.Log.Debug("function efl_ui_text_factory_images_matches_add was called");
229             Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
230             if (wrapper != null)
231             {
232                                                                                     bool _ret_var = default(bool);
233                 try
234                 {
235                     _ret_var = ((Images)wrapper).AddMatches(name, path, key);
236                 }
237                 catch (Exception e)
238                 {
239                     Eina.Log.Warning($"Callback error: {e.ToString()}");
240                     Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION);
241                 }
242
243                                                         return _ret_var;
244
245             }
246             else
247             {
248                 return efl_ui_text_factory_images_matches_add_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj)), name, path, key);
249             }
250         }
251
252         private static efl_ui_text_factory_images_matches_add_delegate efl_ui_text_factory_images_matches_add_static_delegate;
253
254         [return: MarshalAs(UnmanagedType.U1)]
255         private delegate bool efl_ui_text_factory_images_matches_del_delegate(System.IntPtr obj, System.IntPtr pd, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String key);
256
257         [return: MarshalAs(UnmanagedType.U1)]
258         public delegate bool efl_ui_text_factory_images_matches_del_api_delegate(System.IntPtr obj, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String key);
259
260         public static Efl.Eo.FunctionWrapper<efl_ui_text_factory_images_matches_del_api_delegate> efl_ui_text_factory_images_matches_del_ptr = new Efl.Eo.FunctionWrapper<efl_ui_text_factory_images_matches_del_api_delegate>(Module, "efl_ui_text_factory_images_matches_del");
261
262         private static bool matches_del(System.IntPtr obj, System.IntPtr pd, System.String key)
263         {
264             Eina.Log.Debug("function efl_ui_text_factory_images_matches_del was called");
265             Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
266             if (wrapper != null)
267             {
268                                     bool _ret_var = default(bool);
269                 try
270                 {
271                     _ret_var = ((Images)wrapper).DelMatches(key);
272                 }
273                 catch (Exception e)
274                 {
275                     Eina.Log.Warning($"Callback error: {e.ToString()}");
276                     Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION);
277                 }
278
279                         return _ret_var;
280
281             }
282             else
283             {
284                 return efl_ui_text_factory_images_matches_del_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj)), key);
285             }
286         }
287
288         private static efl_ui_text_factory_images_matches_del_delegate efl_ui_text_factory_images_matches_del_static_delegate;
289
290         [return: MarshalAs(UnmanagedType.U1)]
291         private delegate bool efl_ui_text_factory_images_matches_mmap_add_delegate(System.IntPtr obj, System.IntPtr pd, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String name,  Eina.File file, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String key);
292
293         [return: MarshalAs(UnmanagedType.U1)]
294         public delegate bool efl_ui_text_factory_images_matches_mmap_add_api_delegate(System.IntPtr obj, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String name,  Eina.File file, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String key);
295
296         public static Efl.Eo.FunctionWrapper<efl_ui_text_factory_images_matches_mmap_add_api_delegate> efl_ui_text_factory_images_matches_mmap_add_ptr = new Efl.Eo.FunctionWrapper<efl_ui_text_factory_images_matches_mmap_add_api_delegate>(Module, "efl_ui_text_factory_images_matches_mmap_add");
297
298         private static bool matches_mmap_add(System.IntPtr obj, System.IntPtr pd, System.String name, Eina.File file, System.String key)
299         {
300             Eina.Log.Debug("function efl_ui_text_factory_images_matches_mmap_add was called");
301             Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
302             if (wrapper != null)
303             {
304                                                                                     bool _ret_var = default(bool);
305                 try
306                 {
307                     _ret_var = ((Images)wrapper).AddMatchesMmap(name, file, key);
308                 }
309                 catch (Exception e)
310                 {
311                     Eina.Log.Warning($"Callback error: {e.ToString()}");
312                     Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION);
313                 }
314
315                                                         return _ret_var;
316
317             }
318             else
319             {
320                 return efl_ui_text_factory_images_matches_mmap_add_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj)), name, file, key);
321             }
322         }
323
324         private static efl_ui_text_factory_images_matches_mmap_add_delegate efl_ui_text_factory_images_matches_mmap_add_static_delegate;
325
326         [return: MarshalAs(UnmanagedType.U1)]
327         private delegate bool efl_ui_text_factory_images_matches_mmap_del_delegate(System.IntPtr obj, System.IntPtr pd, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String key);
328
329         [return: MarshalAs(UnmanagedType.U1)]
330         public delegate bool efl_ui_text_factory_images_matches_mmap_del_api_delegate(System.IntPtr obj, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String key);
331
332         public static Efl.Eo.FunctionWrapper<efl_ui_text_factory_images_matches_mmap_del_api_delegate> efl_ui_text_factory_images_matches_mmap_del_ptr = new Efl.Eo.FunctionWrapper<efl_ui_text_factory_images_matches_mmap_del_api_delegate>(Module, "efl_ui_text_factory_images_matches_mmap_del");
333
334         private static bool matches_mmap_del(System.IntPtr obj, System.IntPtr pd, System.String key)
335         {
336             Eina.Log.Debug("function efl_ui_text_factory_images_matches_mmap_del was called");
337             Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
338             if (wrapper != null)
339             {
340                                     bool _ret_var = default(bool);
341                 try
342                 {
343                     _ret_var = ((Images)wrapper).DelMatchesMmap(key);
344                 }
345                 catch (Exception e)
346                 {
347                     Eina.Log.Warning($"Callback error: {e.ToString()}");
348                     Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION);
349                 }
350
351                         return _ret_var;
352
353             }
354             else
355             {
356                 return efl_ui_text_factory_images_matches_mmap_del_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj)), key);
357             }
358         }
359
360         private static efl_ui_text_factory_images_matches_mmap_del_delegate efl_ui_text_factory_images_matches_mmap_del_static_delegate;
361
362         [return:MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalEo<Efl.Eo.OwnTag>))]
363         private delegate Efl.Canvas.Object efl_canvas_text_factory_create_delegate(System.IntPtr obj, System.IntPtr pd, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalEo<Efl.Eo.NonOwnTag>))] Efl.Canvas.Object kw_object, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String key);
364
365         [return:MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalEo<Efl.Eo.OwnTag>))]
366         public delegate Efl.Canvas.Object efl_canvas_text_factory_create_api_delegate(System.IntPtr obj, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalEo<Efl.Eo.NonOwnTag>))] Efl.Canvas.Object kw_object, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String key);
367
368         public static Efl.Eo.FunctionWrapper<efl_canvas_text_factory_create_api_delegate> efl_canvas_text_factory_create_ptr = new Efl.Eo.FunctionWrapper<efl_canvas_text_factory_create_api_delegate>(Module, "efl_canvas_text_factory_create");
369
370         private static Efl.Canvas.Object create(System.IntPtr obj, System.IntPtr pd, Efl.Canvas.Object kw_object, System.String key)
371         {
372             Eina.Log.Debug("function efl_canvas_text_factory_create was called");
373             Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd);
374             if (wrapper != null)
375             {
376                                                             Efl.Canvas.Object _ret_var = default(Efl.Canvas.Object);
377                 try
378                 {
379                     _ret_var = ((Images)wrapper).Create(kw_object, key);
380                 }
381                 catch (Exception e)
382                 {
383                     Eina.Log.Warning($"Callback error: {e.ToString()}");
384                     Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION);
385                 }
386
387                                         return _ret_var;
388
389             }
390             else
391             {
392                 return efl_canvas_text_factory_create_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj)), kw_object, key);
393             }
394         }
395
396         private static efl_canvas_text_factory_create_delegate efl_canvas_text_factory_create_static_delegate;
397
398         #pragma warning restore CA1707, SA1300, SA1600
399
400 }
401 }
402 }
403
404 }
405
406 }
407