#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 Access { /// Elementary access selection interface [Efl.Access.ISelectionConcrete.NativeMethods] public interface ISelection : Efl.Eo.IWrapper, IDisposable { /// Gets the number of currently selected children /// Number of currently selected children int GetSelectedChildrenCount(); /// Gets child for given child index /// Index of child /// Child object Efl.Object GetSelectedChild(int selected_child_index); /// Adds selection for given child index /// Index of child /// true if selection was added, false otherwise bool ChildSelect(int child_index); /// Removes selection for given child index /// Index of child /// true if selection was removed, false otherwise bool SelectedChildDeselect(int child_index); /// Determines if child specified by index is selected /// Index of child /// true if child is selected, false otherwise bool IsChildSelected(int child_index); /// Adds selection for all children /// true if selection was added to all children, false otherwise bool AllChildrenSelect(); /// Clears the current selection /// true if selection was cleared, false otherwise bool ClearAccessSelection(); /// Removes selection for given child index /// Index of child /// true if selection was removed, false otherwise bool ChildDeselect(int child_index); /// Called when selection has been changed. event EventHandler AccessSelectionChangedEvt; /// Gets the number of currently selected children /// Number of currently selected children int SelectedChildrenCount { get ; } } /// Elementary access selection interface sealed public class ISelectionConcrete : ISelection { ///Pointer to the native class description. public System.IntPtr NativeClass { get { if (((object)this).GetType() == typeof(ISelectionConcrete)) { return GetEflClassStatic(); } else { return Efl.Eo.ClassRegister.klassFromType[((object)this).GetType()]; } } } private Dictionary<(IntPtr desc, object evtDelegate), (IntPtr evtCallerPtr, Efl.EventCb evtCaller)> eoEvents = new Dictionary<(IntPtr desc, object evtDelegate), (IntPtr evtCallerPtr, Efl.EventCb evtCaller)>(); private readonly object eventLock = new object(); private System.IntPtr handle; ///Pointer to the native instance. public System.IntPtr NativeHandle { get { return handle; } } [System.Runtime.InteropServices.DllImport(efl.Libs.Elementary)] internal static extern System.IntPtr efl_access_selection_interface_get(); /// Initializes a new instance of the class. /// Internal usage: This is used when interacting with C code and should not be used directly. private ISelectionConcrete(System.IntPtr raw) { handle = raw; } ///Destructor. ~ISelectionConcrete() { Dispose(false); } ///Releases the underlying native instance. private void Dispose(bool disposing) { if (handle != System.IntPtr.Zero) { IntPtr h = handle; handle = IntPtr.Zero; IntPtr gcHandlePtr = IntPtr.Zero; if (eoEvents.Count != 0) { GCHandle gcHandle = GCHandle.Alloc(eoEvents); gcHandlePtr = GCHandle.ToIntPtr(gcHandle); } if (disposing) { Efl.Eo.Globals.efl_mono_native_dispose(h, gcHandlePtr); } else { Monitor.Enter(Efl.All.InitLock); if (Efl.All.MainLoopInitialized) { Efl.Eo.Globals.efl_mono_thread_safe_native_dispose(h, gcHandlePtr); } Monitor.Exit(Efl.All.InitLock); } } } ///Releases the underlying native instance. public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } /// Verifies if the given object is equal to this one. /// The object to compare to. /// True if both objects point to the same native object. public override bool Equals(object instance) { var other = instance 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. /// The value of the pointer, to be used as the hash code of this object. public override int GetHashCode() { return this.NativeHandle.ToInt32(); } /// Turns the native pointer into a string representation. /// A string with the type and the native pointer for this object. public override String ToString() { return $"{this.GetType().Name}@[{this.NativeHandle.ToInt32():x}]"; } ///Adds a new event handler, registering it to the native event. For internal use only. ///The name of the native library definining the event. ///The name of the native event. ///Delegate to be called by native code on event raising. ///Managed delegate that will be called by evtCaller on event raising. private void AddNativeEventHandler(string lib, string key, Efl.EventCb evtCaller, object evtDelegate) { IntPtr desc = Efl.EventDescription.GetNative(lib, key); if (desc == IntPtr.Zero) { Eina.Log.Error($"Failed to get native event {key}"); } if (eoEvents.ContainsKey((desc, evtDelegate))) { Eina.Log.Warning($"Event proxy for event {key} already registered!"); return; } IntPtr evtCallerPtr = Marshal.GetFunctionPointerForDelegate(evtCaller); if (!Efl.Eo.Globals.efl_event_callback_priority_add(handle, desc, 0, evtCallerPtr, IntPtr.Zero)) { Eina.Log.Error($"Failed to add event proxy for event {key}"); return; } eoEvents[(desc, evtDelegate)] = (evtCallerPtr, evtCaller); Eina.Error.RaiseIfUnhandledException(); } ///Removes the given event handler for the given event. For internal use only. ///The name of the native library definining the event. ///The name of the native event. ///The delegate to be removed. private void RemoveNativeEventHandler(string lib, string key, object evtDelegate) { IntPtr desc = Efl.EventDescription.GetNative(lib, key); if (desc == IntPtr.Zero) { Eina.Log.Error($"Failed to get native event {key}"); return; } var evtPair = (desc, evtDelegate); if (eoEvents.TryGetValue(evtPair, out var caller)) { if (!Efl.Eo.Globals.efl_event_callback_del(handle, desc, caller.evtCallerPtr, IntPtr.Zero)) { Eina.Log.Error($"Failed to remove event proxy for event {key}"); return; } eoEvents.Remove(evtPair); Eina.Error.RaiseIfUnhandledException(); } else { Eina.Log.Error($"Trying to remove proxy for event {key} when it is nothing registered."); } } /// Called when selection has been changed. public event EventHandler AccessSelectionChangedEvt { add { lock (eventLock) { var wRef = new WeakReference(this); Efl.EventCb callerCb = (IntPtr data, ref Efl.Event.NativeStruct evt) => { var obj = wRef.Target as Efl.Eo.IWrapper; if (obj != null) { EventArgs args = EventArgs.Empty; try { value?.Invoke(obj, args); } catch (Exception e) { Eina.Log.Error(e.ToString()); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } } }; string key = "_EFL_ACCESS_SELECTION_EVENT_ACCESS_SELECTION_CHANGED"; AddNativeEventHandler(efl.Libs.Elementary, key, callerCb, value); } } remove { lock (eventLock) { string key = "_EFL_ACCESS_SELECTION_EVENT_ACCESS_SELECTION_CHANGED"; RemoveNativeEventHandler(efl.Libs.Elementary, key, value); } } } ///Method to raise event AccessSelectionChangedEvt. public void OnAccessSelectionChangedEvt(EventArgs e) { var key = "_EFL_ACCESS_SELECTION_EVENT_ACCESS_SELECTION_CHANGED"; IntPtr desc = Efl.EventDescription.GetNative(efl.Libs.Elementary, key); if (desc == IntPtr.Zero) { Eina.Log.Error($"Failed to get native event {key}"); return; } Efl.Eo.Globals.efl_event_callback_call(this.NativeHandle, desc, IntPtr.Zero); } /// Gets the number of currently selected children /// Number of currently selected children public int GetSelectedChildrenCount() { var _ret_var = Efl.Access.ISelectionConcrete.NativeMethods.efl_access_selection_selected_children_count_get_ptr.Value.Delegate(this.NativeHandle); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// Gets child for given child index /// Index of child /// Child object public Efl.Object GetSelectedChild(int selected_child_index) { var _ret_var = Efl.Access.ISelectionConcrete.NativeMethods.efl_access_selection_selected_child_get_ptr.Value.Delegate(this.NativeHandle,selected_child_index); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// Adds selection for given child index /// Index of child /// true if selection was added, false otherwise public bool ChildSelect(int child_index) { var _ret_var = Efl.Access.ISelectionConcrete.NativeMethods.efl_access_selection_child_select_ptr.Value.Delegate(this.NativeHandle,child_index); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// Removes selection for given child index /// Index of child /// true if selection was removed, false otherwise public bool SelectedChildDeselect(int child_index) { var _ret_var = Efl.Access.ISelectionConcrete.NativeMethods.efl_access_selection_selected_child_deselect_ptr.Value.Delegate(this.NativeHandle,child_index); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// Determines if child specified by index is selected /// Index of child /// true if child is selected, false otherwise public bool IsChildSelected(int child_index) { var _ret_var = Efl.Access.ISelectionConcrete.NativeMethods.efl_access_selection_is_child_selected_ptr.Value.Delegate(this.NativeHandle,child_index); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// Adds selection for all children /// true if selection was added to all children, false otherwise public bool AllChildrenSelect() { var _ret_var = Efl.Access.ISelectionConcrete.NativeMethods.efl_access_selection_all_children_select_ptr.Value.Delegate(this.NativeHandle); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// Clears the current selection /// true if selection was cleared, false otherwise public bool ClearAccessSelection() { var _ret_var = Efl.Access.ISelectionConcrete.NativeMethods.efl_access_selection_clear_ptr.Value.Delegate(this.NativeHandle); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// Removes selection for given child index /// Index of child /// true if selection was removed, false otherwise public bool ChildDeselect(int child_index) { var _ret_var = Efl.Access.ISelectionConcrete.NativeMethods.efl_access_selection_child_deselect_ptr.Value.Delegate(this.NativeHandle,child_index); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// Gets the number of currently selected children /// Number of currently selected children public int SelectedChildrenCount { get { return GetSelectedChildrenCount(); } } private static IntPtr GetEflClassStatic() { return Efl.Access.ISelectionConcrete.efl_access_selection_interface_get(); } /// Wrapper for native methods and virtual method delegates. /// For internal use by generated code only. public class NativeMethods : Efl.Eo.NativeClass { 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_access_selection_selected_children_count_get_static_delegate == null) { efl_access_selection_selected_children_count_get_static_delegate = new efl_access_selection_selected_children_count_get_delegate(selected_children_count_get); } if (methods.FirstOrDefault(m => m.Name == "GetSelectedChildrenCount") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_access_selection_selected_children_count_get"), func = Marshal.GetFunctionPointerForDelegate(efl_access_selection_selected_children_count_get_static_delegate) }); } if (efl_access_selection_selected_child_get_static_delegate == null) { efl_access_selection_selected_child_get_static_delegate = new efl_access_selection_selected_child_get_delegate(selected_child_get); } if (methods.FirstOrDefault(m => m.Name == "GetSelectedChild") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_access_selection_selected_child_get"), func = Marshal.GetFunctionPointerForDelegate(efl_access_selection_selected_child_get_static_delegate) }); } if (efl_access_selection_child_select_static_delegate == null) { efl_access_selection_child_select_static_delegate = new efl_access_selection_child_select_delegate(child_select); } if (methods.FirstOrDefault(m => m.Name == "ChildSelect") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_access_selection_child_select"), func = Marshal.GetFunctionPointerForDelegate(efl_access_selection_child_select_static_delegate) }); } if (efl_access_selection_selected_child_deselect_static_delegate == null) { efl_access_selection_selected_child_deselect_static_delegate = new efl_access_selection_selected_child_deselect_delegate(selected_child_deselect); } if (methods.FirstOrDefault(m => m.Name == "SelectedChildDeselect") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_access_selection_selected_child_deselect"), func = Marshal.GetFunctionPointerForDelegate(efl_access_selection_selected_child_deselect_static_delegate) }); } if (efl_access_selection_is_child_selected_static_delegate == null) { efl_access_selection_is_child_selected_static_delegate = new efl_access_selection_is_child_selected_delegate(is_child_selected); } if (methods.FirstOrDefault(m => m.Name == "IsChildSelected") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_access_selection_is_child_selected"), func = Marshal.GetFunctionPointerForDelegate(efl_access_selection_is_child_selected_static_delegate) }); } if (efl_access_selection_all_children_select_static_delegate == null) { efl_access_selection_all_children_select_static_delegate = new efl_access_selection_all_children_select_delegate(all_children_select); } if (methods.FirstOrDefault(m => m.Name == "AllChildrenSelect") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_access_selection_all_children_select"), func = Marshal.GetFunctionPointerForDelegate(efl_access_selection_all_children_select_static_delegate) }); } if (efl_access_selection_clear_static_delegate == null) { efl_access_selection_clear_static_delegate = new efl_access_selection_clear_delegate(access_selection_clear); } if (methods.FirstOrDefault(m => m.Name == "ClearAccessSelection") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_access_selection_clear"), func = Marshal.GetFunctionPointerForDelegate(efl_access_selection_clear_static_delegate) }); } if (efl_access_selection_child_deselect_static_delegate == null) { efl_access_selection_child_deselect_static_delegate = new efl_access_selection_child_deselect_delegate(child_deselect); } if (methods.FirstOrDefault(m => m.Name == "ChildDeselect") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_access_selection_child_deselect"), func = Marshal.GetFunctionPointerForDelegate(efl_access_selection_child_deselect_static_delegate) }); } return descs; } /// Returns the Eo class for the native methods of this class. /// The native class pointer. public override IntPtr GetEflClass() { return Efl.Access.ISelectionConcrete.efl_access_selection_interface_get(); } #pragma warning disable CA1707, SA1300, SA1600 private delegate int efl_access_selection_selected_children_count_get_delegate(System.IntPtr obj, System.IntPtr pd); public delegate int efl_access_selection_selected_children_count_get_api_delegate(System.IntPtr obj); public static Efl.Eo.FunctionWrapper efl_access_selection_selected_children_count_get_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_access_selection_selected_children_count_get"); private static int selected_children_count_get(System.IntPtr obj, System.IntPtr pd) { Eina.Log.Debug("function efl_access_selection_selected_children_count_get was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { int _ret_var = default(int); try { _ret_var = ((ISelection)wrapper).GetSelectedChildrenCount(); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_access_selection_selected_children_count_get_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj))); } } private static efl_access_selection_selected_children_count_get_delegate efl_access_selection_selected_children_count_get_static_delegate; [return:MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalEo))] private delegate Efl.Object efl_access_selection_selected_child_get_delegate(System.IntPtr obj, System.IntPtr pd, int selected_child_index); [return:MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalEo))] public delegate Efl.Object efl_access_selection_selected_child_get_api_delegate(System.IntPtr obj, int selected_child_index); public static Efl.Eo.FunctionWrapper efl_access_selection_selected_child_get_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_access_selection_selected_child_get"); private static Efl.Object selected_child_get(System.IntPtr obj, System.IntPtr pd, int selected_child_index) { Eina.Log.Debug("function efl_access_selection_selected_child_get was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { Efl.Object _ret_var = default(Efl.Object); try { _ret_var = ((ISelection)wrapper).GetSelectedChild(selected_child_index); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_access_selection_selected_child_get_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj)), selected_child_index); } } private static efl_access_selection_selected_child_get_delegate efl_access_selection_selected_child_get_static_delegate; [return: MarshalAs(UnmanagedType.U1)] private delegate bool efl_access_selection_child_select_delegate(System.IntPtr obj, System.IntPtr pd, int child_index); [return: MarshalAs(UnmanagedType.U1)] public delegate bool efl_access_selection_child_select_api_delegate(System.IntPtr obj, int child_index); public static Efl.Eo.FunctionWrapper efl_access_selection_child_select_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_access_selection_child_select"); private static bool child_select(System.IntPtr obj, System.IntPtr pd, int child_index) { Eina.Log.Debug("function efl_access_selection_child_select was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { bool _ret_var = default(bool); try { _ret_var = ((ISelection)wrapper).ChildSelect(child_index); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_access_selection_child_select_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj)), child_index); } } private static efl_access_selection_child_select_delegate efl_access_selection_child_select_static_delegate; [return: MarshalAs(UnmanagedType.U1)] private delegate bool efl_access_selection_selected_child_deselect_delegate(System.IntPtr obj, System.IntPtr pd, int child_index); [return: MarshalAs(UnmanagedType.U1)] public delegate bool efl_access_selection_selected_child_deselect_api_delegate(System.IntPtr obj, int child_index); public static Efl.Eo.FunctionWrapper efl_access_selection_selected_child_deselect_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_access_selection_selected_child_deselect"); private static bool selected_child_deselect(System.IntPtr obj, System.IntPtr pd, int child_index) { Eina.Log.Debug("function efl_access_selection_selected_child_deselect was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { bool _ret_var = default(bool); try { _ret_var = ((ISelection)wrapper).SelectedChildDeselect(child_index); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_access_selection_selected_child_deselect_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj)), child_index); } } private static efl_access_selection_selected_child_deselect_delegate efl_access_selection_selected_child_deselect_static_delegate; [return: MarshalAs(UnmanagedType.U1)] private delegate bool efl_access_selection_is_child_selected_delegate(System.IntPtr obj, System.IntPtr pd, int child_index); [return: MarshalAs(UnmanagedType.U1)] public delegate bool efl_access_selection_is_child_selected_api_delegate(System.IntPtr obj, int child_index); public static Efl.Eo.FunctionWrapper efl_access_selection_is_child_selected_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_access_selection_is_child_selected"); private static bool is_child_selected(System.IntPtr obj, System.IntPtr pd, int child_index) { Eina.Log.Debug("function efl_access_selection_is_child_selected was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { bool _ret_var = default(bool); try { _ret_var = ((ISelection)wrapper).IsChildSelected(child_index); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_access_selection_is_child_selected_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj)), child_index); } } private static efl_access_selection_is_child_selected_delegate efl_access_selection_is_child_selected_static_delegate; [return: MarshalAs(UnmanagedType.U1)] private delegate bool efl_access_selection_all_children_select_delegate(System.IntPtr obj, System.IntPtr pd); [return: MarshalAs(UnmanagedType.U1)] public delegate bool efl_access_selection_all_children_select_api_delegate(System.IntPtr obj); public static Efl.Eo.FunctionWrapper efl_access_selection_all_children_select_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_access_selection_all_children_select"); private static bool all_children_select(System.IntPtr obj, System.IntPtr pd) { Eina.Log.Debug("function efl_access_selection_all_children_select was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { bool _ret_var = default(bool); try { _ret_var = ((ISelection)wrapper).AllChildrenSelect(); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_access_selection_all_children_select_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj))); } } private static efl_access_selection_all_children_select_delegate efl_access_selection_all_children_select_static_delegate; [return: MarshalAs(UnmanagedType.U1)] private delegate bool efl_access_selection_clear_delegate(System.IntPtr obj, System.IntPtr pd); [return: MarshalAs(UnmanagedType.U1)] public delegate bool efl_access_selection_clear_api_delegate(System.IntPtr obj); public static Efl.Eo.FunctionWrapper efl_access_selection_clear_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_access_selection_clear"); private static bool access_selection_clear(System.IntPtr obj, System.IntPtr pd) { Eina.Log.Debug("function efl_access_selection_clear was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { bool _ret_var = default(bool); try { _ret_var = ((ISelection)wrapper).ClearAccessSelection(); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_access_selection_clear_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj))); } } private static efl_access_selection_clear_delegate efl_access_selection_clear_static_delegate; [return: MarshalAs(UnmanagedType.U1)] private delegate bool efl_access_selection_child_deselect_delegate(System.IntPtr obj, System.IntPtr pd, int child_index); [return: MarshalAs(UnmanagedType.U1)] public delegate bool efl_access_selection_child_deselect_api_delegate(System.IntPtr obj, int child_index); public static Efl.Eo.FunctionWrapper efl_access_selection_child_deselect_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_access_selection_child_deselect"); private static bool child_deselect(System.IntPtr obj, System.IntPtr pd, int child_index) { Eina.Log.Debug("function efl_access_selection_child_deselect was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { bool _ret_var = default(bool); try { _ret_var = ((ISelection)wrapper).ChildDeselect(child_index); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_access_selection_child_deselect_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj)), child_index); } } private static efl_access_selection_child_deselect_delegate efl_access_selection_child_deselect_static_delegate; #pragma warning restore CA1707, SA1300, SA1600 } } } }