X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=internals%2Fsrc%2FEflSharp%2FEflSharp%2Fefl%2Fefl_ui_text_factory_images.eo.cs;h=a0d69a0f801622c9db2bb6e0241ed463d37c8089;hb=5418695f94c5065494f5f7d74d1506e7a5267c06;hp=30b667ef2423c418123a4c493fd98b3392580b03;hpb=1b49f5436f8fe9b85446ae63a3383d1527fbc28a;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/internals/src/EflSharp/EflSharp/efl/efl_ui_text_factory_images.eo.cs b/internals/src/EflSharp/EflSharp/efl/efl_ui_text_factory_images.eo.cs old mode 100644 new mode 100755 index 30b667e..a0d69a0 --- a/internals/src/EflSharp/EflSharp/efl/efl_ui_text_factory_images.eo.cs +++ b/internals/src/EflSharp/EflSharp/efl/efl_ui_text_factory_images.eo.cs @@ -1,64 +1,72 @@ +#define EFL_BETA #pragma warning disable CS1591 using System; using System.Runtime.InteropServices; using System.Collections.Generic; using System.Linq; +using System.Threading; using System.ComponentModel; -namespace Efl { namespace Ui { namespace TextFactory { +namespace Efl { + +namespace Ui { + +namespace TextFactory { + /// Factory that creates images given key string /// 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. -[ImagesNativeInherit] -public class Images : Efl.Object, Efl.Eo.IWrapper,Efl.Canvas.ITextFactory +/// This is a BETA class. It can be modified or removed in the future. Do not use it for product development. +[Efl.Ui.TextFactory.Images.NativeMethods] +[Efl.Eo.BindingEntity] +public class Images : Efl.Object, Efl.Canvas.ITextFactory { - ///Pointer to the native class description. - public override System.IntPtr NativeClass { - get { - if (((object)this).GetType() == typeof (Images)) - return Efl.Ui.TextFactory.ImagesNativeInherit.GetEflClassStatic(); + /// Pointer to the native class description. + public override System.IntPtr NativeClass + { + get + { + if (((object)this).GetType() == typeof(Images)) + { + return GetEflClassStatic(); + } else + { return Efl.Eo.ClassRegister.klassFromType[((object)this).GetType()]; + } } } + [System.Runtime.InteropServices.DllImport(efl.Libs.Elementary)] internal static extern System.IntPtr efl_ui_text_factory_images_class_get(); - ///Creates a new instance. - ///Parent instance. + /// Initializes a new instance of the class. + /// Parent instance. public Images(Efl.Object parent= null - ) : - base(efl_ui_text_factory_images_class_get(), typeof(Images), parent) + ) : base(efl_ui_text_factory_images_class_get(), parent) { FinishInstantiation(); } - ///Internal usage: Constructs an instance from a native pointer. This is used when interacting with C code and should not be used directly. - protected Images(System.IntPtr raw) : base(raw) - { - RegisterEventProxies(); - } - ///Internal usage: Constructor to forward the wrapper initialization to the root class that interfaces with native code. Should not be used directly. - protected Images(IntPtr base_klass, System.Type managed_type, Efl.Object parent) : base(base_klass, managed_type, parent) {} - ///Verifies if the given object is equal to this one. - public override bool Equals(object obj) - { - var other = obj as Efl.Object; - if (other == null) - return false; - return this.NativeHandle == other.NativeHandle; - } - ///Gets the hash code for this object based on the native pointer it points to. - public override int GetHashCode() + + /// Subclasses should override this constructor if they are expected to be instantiated from native code. + /// Do not call this constructor directly. + /// Tag struct storing the native handle of the object being constructed. + protected Images(ConstructingHandle ch) : base(ch) { - return this.NativeHandle.ToInt32(); } - ///Turns the native pointer into a string representation. - public override String ToString() + + /// Initializes a new instance of the class. + /// Internal usage: Constructs an instance from a native pointer. This is used when interacting with C code and should not be used directly. + /// The native pointer to be wrapped. + protected Images(Efl.Eo.Globals.WrappingHandle wh) : base(wh) { - return $"{this.GetType().Name}@[{this.NativeHandle.ToInt32():x}]"; } - ///Register the Eo event wrappers making the bridge to C# events. Internal usage only. - protected override void RegisterEventProxies() + + /// Initializes a new instance of the class. + /// Internal usage: Constructor to forward the wrapper initialization to the root class that interfaces with native code. Should not be used directly. + /// The pointer to the base native Eo class. + /// The Efl.Object parent of this instance. + protected Images(IntPtr baseKlass, Efl.Object parent) : base(baseKlass, parent) { - base.RegisterEventProxies(); } + /// Associates given name with a path of an image or EET file. /// This can be used for quick retrieval (instead of providing actual filenames. /// @@ -69,8 +77,8 @@ public class Images : Efl.Object, Efl.Eo.IWrapper,Efl.Canvas.ITextFactory /// the image or EET file path /// the key to use (in cases of loading an EET file /// true if successful, false otherwise - virtual public bool AddMatches( System.String name, System.String path, System.String key) { - var _ret_var = Efl.Ui.TextFactory.ImagesNativeInherit.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); + virtual public bool AddMatches(System.String name, System.String path, System.String key) { + var _ret_var = Efl.Ui.TextFactory.Images.NativeMethods.efl_ui_text_factory_images_matches_add_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)),name, path, key); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } @@ -78,8 +86,8 @@ public class Images : Efl.Object, Efl.Eo.IWrapper,Efl.Canvas.ITextFactory /// see /// the entry's key to delete /// true if successful, false otherwise - virtual public bool DelMatches( System.String key) { - var _ret_var = Efl.Ui.TextFactory.ImagesNativeInherit.efl_ui_text_factory_images_matches_del_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle), key); + virtual public bool DelMatches(System.String key) { + var _ret_var = Efl.Ui.TextFactory.Images.NativeMethods.efl_ui_text_factory_images_matches_del_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)),key); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } @@ -89,8 +97,8 @@ public class Images : Efl.Object, Efl.Eo.IWrapper,Efl.Canvas.ITextFactory /// the image or EET file /// the key to use (in cases of loading an EET file /// true if successful, false otherwise - virtual public bool AddMatchesMmap( System.String name, Eina.File file, System.String key) { - var _ret_var = Efl.Ui.TextFactory.ImagesNativeInherit.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); + virtual public bool AddMatchesMmap(System.String name, Eina.File file, System.String key) { + var _ret_var = Efl.Ui.TextFactory.Images.NativeMethods.efl_ui_text_factory_images_matches_mmap_add_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)),name, file, key); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } @@ -98,17 +106,16 @@ public class Images : Efl.Object, Efl.Eo.IWrapper,Efl.Canvas.ITextFactory /// see /// the entry's key to delete /// true if successful, false otherwise - virtual public bool DelMatchesMmap( System.String key) { - var _ret_var = Efl.Ui.TextFactory.ImagesNativeInherit.efl_ui_text_factory_images_matches_mmap_del_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle), key); + virtual public bool DelMatchesMmap(System.String key) { + var _ret_var = Efl.Ui.TextFactory.Images.NativeMethods.efl_ui_text_factory_images_matches_mmap_del_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)),key); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// Translates a given key to an item object, and returns the object. The returned object should be owned by the passed object. /// The parent of the created object /// Key that is associated to an item object - /// - virtual public Efl.Canvas.Object Create( Efl.Canvas.Object kw_object, System.String key) { - var _ret_var = Efl.Canvas.ITextFactoryNativeInherit.efl_canvas_text_factory_create_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle), kw_object, key); + virtual public Efl.Canvas.Object Create(Efl.Canvas.Object kw_object, System.String key) { + var _ret_var = Efl.Canvas.ITextFactoryConcrete.NativeMethods.efl_canvas_text_factory_create_ptr.Value.Delegate((IsGeneratedBindingClass ? this.NativeHandle : Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass)),kw_object, key); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } @@ -116,168 +123,273 @@ public class Images : Efl.Object, Efl.Eo.IWrapper,Efl.Canvas.ITextFactory { return Efl.Ui.TextFactory.Images.efl_ui_text_factory_images_class_get(); } -} -public class ImagesNativeInherit : Efl.ObjectNativeInherit{ - public new static Efl.Eo.NativeModule _Module = new Efl.Eo.NativeModule(efl.Libs.Elementary); - public override System.Collections.Generic.List GetEoOps(System.Type type) + /// Wrapper for native methods and virtual method delegates. + /// For internal use by generated code only. + public new class NativeMethods : Efl.Object.NativeMethods { - var descs = new System.Collections.Generic.List(); - var methods = Efl.Eo.Globals.GetUserMethods(type); - if (efl_ui_text_factory_images_matches_add_static_delegate == null) - efl_ui_text_factory_images_matches_add_static_delegate = new efl_ui_text_factory_images_matches_add_delegate(matches_add); - if (methods.FirstOrDefault(m => m.Name == "AddMatches") != null) - 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)}); - if (efl_ui_text_factory_images_matches_del_static_delegate == null) - efl_ui_text_factory_images_matches_del_static_delegate = new efl_ui_text_factory_images_matches_del_delegate(matches_del); - if (methods.FirstOrDefault(m => m.Name == "DelMatches") != null) - 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)}); - if (efl_ui_text_factory_images_matches_mmap_add_static_delegate == null) - efl_ui_text_factory_images_matches_mmap_add_static_delegate = new efl_ui_text_factory_images_matches_mmap_add_delegate(matches_mmap_add); - if (methods.FirstOrDefault(m => m.Name == "AddMatchesMmap") != null) - 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)}); - if (efl_ui_text_factory_images_matches_mmap_del_static_delegate == null) - efl_ui_text_factory_images_matches_mmap_del_static_delegate = new efl_ui_text_factory_images_matches_mmap_del_delegate(matches_mmap_del); - if (methods.FirstOrDefault(m => m.Name == "DelMatchesMmap") != null) - 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)}); - if (efl_canvas_text_factory_create_static_delegate == null) - efl_canvas_text_factory_create_static_delegate = new efl_canvas_text_factory_create_delegate(create); - if (methods.FirstOrDefault(m => m.Name == "Create") != null) - 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)}); - descs.AddRange(base.GetEoOps(type)); - return descs; - } - public override IntPtr GetEflClass() - { - return Efl.Ui.TextFactory.Images.efl_ui_text_factory_images_class_get(); - } - public static new IntPtr GetEflClassStatic() - { - return Efl.Ui.TextFactory.Images.efl_ui_text_factory_images_class_get(); - } + private static Efl.Eo.NativeModule Module = new Efl.Eo.NativeModule( efl.Libs.Elementary); + /// Gets the list of Eo operations to override. + /// The list of Eo operations to be overload. + public override System.Collections.Generic.List GetEoOps(System.Type type) + { + var descs = new System.Collections.Generic.List(); + var methods = Efl.Eo.Globals.GetUserMethods(type); + if (efl_ui_text_factory_images_matches_add_static_delegate == null) + { + efl_ui_text_factory_images_matches_add_static_delegate = new efl_ui_text_factory_images_matches_add_delegate(matches_add); + } - [return: MarshalAs(UnmanagedType.U1)] 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); + if (methods.FirstOrDefault(m => m.Name == "AddMatches") != null) + { + 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) }); + } + if (efl_ui_text_factory_images_matches_del_static_delegate == null) + { + efl_ui_text_factory_images_matches_del_static_delegate = new efl_ui_text_factory_images_matches_del_delegate(matches_del); + } - [return: MarshalAs(UnmanagedType.U1)] 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); - public static Efl.Eo.FunctionWrapper efl_ui_text_factory_images_matches_add_ptr = new Efl.Eo.FunctionWrapper(_Module, "efl_ui_text_factory_images_matches_add"); - private static bool matches_add(System.IntPtr obj, System.IntPtr pd, System.String name, System.String path, System.String key) - { - Eina.Log.Debug("function efl_ui_text_factory_images_matches_add was called"); - Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); - if(wrapper != null) { - bool _ret_var = default(bool); - try { - _ret_var = ((Images)wrapper).AddMatches( name, path, key); - } catch (Exception e) { - Eina.Log.Warning($"Callback error: {e.ToString()}"); - Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); + if (methods.FirstOrDefault(m => m.Name == "DelMatches") != null) + { + 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) }); } - return _ret_var; - } else { - 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); + + if (efl_ui_text_factory_images_matches_mmap_add_static_delegate == null) + { + efl_ui_text_factory_images_matches_mmap_add_static_delegate = new efl_ui_text_factory_images_matches_mmap_add_delegate(matches_mmap_add); + } + + if (methods.FirstOrDefault(m => m.Name == "AddMatchesMmap") != null) + { + 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) }); + } + + if (efl_ui_text_factory_images_matches_mmap_del_static_delegate == null) + { + efl_ui_text_factory_images_matches_mmap_del_static_delegate = new efl_ui_text_factory_images_matches_mmap_del_delegate(matches_mmap_del); + } + + if (methods.FirstOrDefault(m => m.Name == "DelMatchesMmap") != null) + { + 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) }); + } + + if (efl_canvas_text_factory_create_static_delegate == null) + { + efl_canvas_text_factory_create_static_delegate = new efl_canvas_text_factory_create_delegate(create); + } + + if (methods.FirstOrDefault(m => m.Name == "Create") != null) + { + 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) }); + } + + descs.AddRange(base.GetEoOps(type)); + return descs; + } + /// Returns the Eo class for the native methods of this class. + /// The native class pointer. + public override IntPtr GetEflClass() + { + return Efl.Ui.TextFactory.Images.efl_ui_text_factory_images_class_get(); } - } - private static efl_ui_text_factory_images_matches_add_delegate efl_ui_text_factory_images_matches_add_static_delegate; + #pragma warning disable CA1707, CS1591, SA1300, SA1600 - [return: MarshalAs(UnmanagedType.U1)] 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); + [return: MarshalAs(UnmanagedType.U1)] + 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); + [return: MarshalAs(UnmanagedType.U1)] + 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); + + public static Efl.Eo.FunctionWrapper efl_ui_text_factory_images_matches_add_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_ui_text_factory_images_matches_add"); + + private static bool matches_add(System.IntPtr obj, System.IntPtr pd, System.String name, System.String path, System.String key) + { + Eina.Log.Debug("function efl_ui_text_factory_images_matches_add was called"); + var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj); + if (ws != null) + { + bool _ret_var = default(bool); + try + { + _ret_var = ((Images)ws.Target).AddMatches(name, path, key); + } + catch (Exception e) + { + Eina.Log.Warning($"Callback error: {e.ToString()}"); + Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); + } + + return _ret_var; - [return: MarshalAs(UnmanagedType.U1)] 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); - public static Efl.Eo.FunctionWrapper efl_ui_text_factory_images_matches_del_ptr = new Efl.Eo.FunctionWrapper(_Module, "efl_ui_text_factory_images_matches_del"); - private static bool matches_del(System.IntPtr obj, System.IntPtr pd, System.String key) - { - Eina.Log.Debug("function efl_ui_text_factory_images_matches_del was called"); - Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); - if(wrapper != null) { - bool _ret_var = default(bool); - try { - _ret_var = ((Images)wrapper).DelMatches( key); - } catch (Exception e) { - Eina.Log.Warning($"Callback error: {e.ToString()}"); - Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } - return _ret_var; - } else { - 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); + else + { + 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); + } } - } - private static efl_ui_text_factory_images_matches_del_delegate efl_ui_text_factory_images_matches_del_static_delegate; + private static efl_ui_text_factory_images_matches_add_delegate efl_ui_text_factory_images_matches_add_static_delegate; - [return: MarshalAs(UnmanagedType.U1)] 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); + [return: MarshalAs(UnmanagedType.U1)] + 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); + [return: MarshalAs(UnmanagedType.U1)] + 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); + + public static Efl.Eo.FunctionWrapper efl_ui_text_factory_images_matches_del_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_ui_text_factory_images_matches_del"); + + private static bool matches_del(System.IntPtr obj, System.IntPtr pd, System.String key) + { + Eina.Log.Debug("function efl_ui_text_factory_images_matches_del was called"); + var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj); + if (ws != null) + { + bool _ret_var = default(bool); + try + { + _ret_var = ((Images)ws.Target).DelMatches(key); + } + catch (Exception e) + { + Eina.Log.Warning($"Callback error: {e.ToString()}"); + Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); + } + + return _ret_var; - [return: MarshalAs(UnmanagedType.U1)] 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); - public static Efl.Eo.FunctionWrapper efl_ui_text_factory_images_matches_mmap_add_ptr = new Efl.Eo.FunctionWrapper(_Module, "efl_ui_text_factory_images_matches_mmap_add"); - private static bool matches_mmap_add(System.IntPtr obj, System.IntPtr pd, System.String name, Eina.File file, System.String key) - { - Eina.Log.Debug("function efl_ui_text_factory_images_matches_mmap_add was called"); - Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); - if(wrapper != null) { - bool _ret_var = default(bool); - try { - _ret_var = ((Images)wrapper).AddMatchesMmap( name, file, key); - } catch (Exception e) { - Eina.Log.Warning($"Callback error: {e.ToString()}"); - Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } - return _ret_var; - } else { - 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); + else + { + 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); + } } - } - private static efl_ui_text_factory_images_matches_mmap_add_delegate efl_ui_text_factory_images_matches_mmap_add_static_delegate; + private static efl_ui_text_factory_images_matches_del_delegate efl_ui_text_factory_images_matches_del_static_delegate; - [return: MarshalAs(UnmanagedType.U1)] 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); + [return: MarshalAs(UnmanagedType.U1)] + 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); + [return: MarshalAs(UnmanagedType.U1)] + 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); + + public static Efl.Eo.FunctionWrapper efl_ui_text_factory_images_matches_mmap_add_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_ui_text_factory_images_matches_mmap_add"); + + private static bool matches_mmap_add(System.IntPtr obj, System.IntPtr pd, System.String name, Eina.File file, System.String key) + { + Eina.Log.Debug("function efl_ui_text_factory_images_matches_mmap_add was called"); + var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj); + if (ws != null) + { + bool _ret_var = default(bool); + try + { + _ret_var = ((Images)ws.Target).AddMatchesMmap(name, file, key); + } + catch (Exception e) + { + Eina.Log.Warning($"Callback error: {e.ToString()}"); + Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); + } + + return _ret_var; - [return: MarshalAs(UnmanagedType.U1)] 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); - public static Efl.Eo.FunctionWrapper efl_ui_text_factory_images_matches_mmap_del_ptr = new Efl.Eo.FunctionWrapper(_Module, "efl_ui_text_factory_images_matches_mmap_del"); - private static bool matches_mmap_del(System.IntPtr obj, System.IntPtr pd, System.String key) - { - Eina.Log.Debug("function efl_ui_text_factory_images_matches_mmap_del was called"); - Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); - if(wrapper != null) { - bool _ret_var = default(bool); - try { - _ret_var = ((Images)wrapper).DelMatchesMmap( key); - } catch (Exception e) { - Eina.Log.Warning($"Callback error: {e.ToString()}"); - Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } - return _ret_var; - } else { - 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); + else + { + 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); + } } - } - private static efl_ui_text_factory_images_matches_mmap_del_delegate efl_ui_text_factory_images_matches_mmap_del_static_delegate; + private static efl_ui_text_factory_images_matches_mmap_add_delegate efl_ui_text_factory_images_matches_mmap_add_static_delegate; - [return:MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalTest))] private delegate Efl.Canvas.Object efl_canvas_text_factory_create_delegate(System.IntPtr obj, System.IntPtr pd, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalTest))] Efl.Canvas.Object kw_object, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String key); + [return: MarshalAs(UnmanagedType.U1)] + 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); + [return: MarshalAs(UnmanagedType.U1)] + 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); - [return:MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalTest))] public delegate Efl.Canvas.Object efl_canvas_text_factory_create_api_delegate(System.IntPtr obj, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalTest))] Efl.Canvas.Object kw_object, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String key); - public static Efl.Eo.FunctionWrapper efl_canvas_text_factory_create_ptr = new Efl.Eo.FunctionWrapper(_Module, "efl_canvas_text_factory_create"); - private static Efl.Canvas.Object create(System.IntPtr obj, System.IntPtr pd, Efl.Canvas.Object kw_object, System.String key) - { - Eina.Log.Debug("function efl_canvas_text_factory_create was called"); - Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); - if(wrapper != null) { - Efl.Canvas.Object _ret_var = default(Efl.Canvas.Object); - try { - _ret_var = ((Images)wrapper).Create( kw_object, key); - } catch (Exception e) { - Eina.Log.Warning($"Callback error: {e.ToString()}"); - Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); + public static Efl.Eo.FunctionWrapper efl_ui_text_factory_images_matches_mmap_del_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_ui_text_factory_images_matches_mmap_del"); + + private static bool matches_mmap_del(System.IntPtr obj, System.IntPtr pd, System.String key) + { + Eina.Log.Debug("function efl_ui_text_factory_images_matches_mmap_del was called"); + var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj); + if (ws != null) + { + bool _ret_var = default(bool); + try + { + _ret_var = ((Images)ws.Target).DelMatchesMmap(key); + } + catch (Exception e) + { + Eina.Log.Warning($"Callback error: {e.ToString()}"); + Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); + } + + return _ret_var; + + } + else + { + 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); } + } + + private static efl_ui_text_factory_images_matches_mmap_del_delegate efl_ui_text_factory_images_matches_mmap_del_static_delegate; + + [return:MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalEo))] + 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.Canvas.Object kw_object, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String key); + + [return:MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalEo))] + public delegate Efl.Canvas.Object efl_canvas_text_factory_create_api_delegate(System.IntPtr obj, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalEo))] Efl.Canvas.Object kw_object, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.StringKeepOwnershipMarshaler))] System.String key); + + public static Efl.Eo.FunctionWrapper efl_canvas_text_factory_create_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_canvas_text_factory_create"); + + private static Efl.Canvas.Object create(System.IntPtr obj, System.IntPtr pd, Efl.Canvas.Object kw_object, System.String key) + { + Eina.Log.Debug("function efl_canvas_text_factory_create was called"); + var ws = Efl.Eo.Globals.GetWrapperSupervisor(obj); + if (ws != null) + { + Efl.Canvas.Object _ret_var = default(Efl.Canvas.Object); + try + { + _ret_var = ((Images)ws.Target).Create(kw_object, key); + } + catch (Exception e) + { + Eina.Log.Warning($"Callback error: {e.ToString()}"); + Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); + } + return _ret_var; - } else { - 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); + + } + else + { + 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); + } } - } - private static efl_canvas_text_factory_create_delegate efl_canvas_text_factory_create_static_delegate; + + private static efl_canvas_text_factory_create_delegate efl_canvas_text_factory_create_static_delegate; + + #pragma warning restore CA1707, CS1591, SA1300, SA1600 + +} +} +} + +} + +} + +#if EFL_BETA +#pragma warning disable CS1591 +public static class Efl_Ui_Text_FactoryImages_ExtensionMethods { } -} } } +#pragma warning restore CS1591 +#endif