#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 { /// Elementary pan class [Efl.Ui.Pan.NativeMethods] public class Pan : Efl.Canvas.Group, Efl.Eo.IWrapper,Efl.IContent { ///Pointer to the native class description. public override System.IntPtr NativeClass { get { if (((object)this).GetType() == typeof(Pan)) { 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_pan_class_get(); /// Initializes a new instance of the class. /// Parent instance. public Pan(Efl.Object parent= null ) : base(efl_ui_pan_class_get(), typeof(Pan), parent) { FinishInstantiation(); } /// 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 Pan(System.IntPtr raw) : base(raw) { } /// 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 managed type of the public constructor that originated this call. /// The Efl.Object parent of this instance. protected Pan(IntPtr baseKlass, System.Type managedType, Efl.Object parent) : base(baseKlass, managedType, parent) { } /// 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}]"; } /// Called when pan content changed public event EventHandler PanContentChangedEvt { 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_UI_PAN_EVENT_PAN_CONTENT_CHANGED"; AddNativeEventHandler(efl.Libs.Elementary, key, callerCb, value); } } remove { lock (eventLock) { string key = "_EFL_UI_PAN_EVENT_PAN_CONTENT_CHANGED"; RemoveNativeEventHandler(efl.Libs.Elementary, key, value); } } } ///Method to raise event PanContentChangedEvt. public void OnPanContentChangedEvt(EventArgs e) { var key = "_EFL_UI_PAN_EVENT_PAN_CONTENT_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); } /// Called when pan viewport changed public event EventHandler PanViewportChangedEvt { 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_UI_PAN_EVENT_PAN_VIEWPORT_CHANGED"; AddNativeEventHandler(efl.Libs.Elementary, key, callerCb, value); } } remove { lock (eventLock) { string key = "_EFL_UI_PAN_EVENT_PAN_VIEWPORT_CHANGED"; RemoveNativeEventHandler(efl.Libs.Elementary, key, value); } } } ///Method to raise event PanViewportChangedEvt. public void OnPanViewportChangedEvt(EventArgs e) { var key = "_EFL_UI_PAN_EVENT_PAN_VIEWPORT_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); } /// Called when pan position changed public event EventHandler PanPositionChangedEvt { 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_UI_PAN_EVENT_PAN_POSITION_CHANGED"; AddNativeEventHandler(efl.Libs.Elementary, key, callerCb, value); } } remove { lock (eventLock) { string key = "_EFL_UI_PAN_EVENT_PAN_POSITION_CHANGED"; RemoveNativeEventHandler(efl.Libs.Elementary, key, value); } } } ///Method to raise event PanPositionChangedEvt. public void OnPanPositionChangedEvt(EventArgs e) { var key = "_EFL_UI_PAN_EVENT_PAN_POSITION_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); } /// Sent after the content is set or unset using the current content object. /// (Since EFL 1.22) public event EventHandler ContentChangedEvt { 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) { Efl.IContentContentChangedEvt_Args args = new Efl.IContentContentChangedEvt_Args(); args.arg = (Efl.Eo.Globals.CreateWrapperFor(evt.Info) as Efl.Gfx.IEntityConcrete); try { value?.Invoke(obj, args); } catch (Exception e) { Eina.Log.Error(e.ToString()); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } } }; string key = "_EFL_CONTENT_EVENT_CONTENT_CHANGED"; AddNativeEventHandler(efl.Libs.Efl, key, callerCb, value); } } remove { lock (eventLock) { string key = "_EFL_CONTENT_EVENT_CONTENT_CHANGED"; RemoveNativeEventHandler(efl.Libs.Efl, key, value); } } } ///Method to raise event ContentChangedEvt. public void OnContentChangedEvt(Efl.IContentContentChangedEvt_Args e) { var key = "_EFL_CONTENT_EVENT_CONTENT_CHANGED"; IntPtr desc = Efl.EventDescription.GetNative(efl.Libs.Efl, key); if (desc == IntPtr.Zero) { Eina.Log.Error($"Failed to get native event {key}"); return; } IntPtr info = e.arg.NativeHandle; Efl.Eo.Globals.efl_event_callback_call(this.NativeHandle, desc, info); } /// Position virtual public Eina.Position2D GetPanPosition() { var _ret_var = Efl.Ui.Pan.NativeMethods.efl_ui_pan_position_get_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle)); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// Position virtual public void SetPanPosition(Eina.Position2D position) { Eina.Position2D.NativeStruct _in_position = position; Efl.Ui.Pan.NativeMethods.efl_ui_pan_position_set_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle),_in_position); Eina.Error.RaiseIfUnhandledException(); } /// Content size virtual public Eina.Size2D GetContentSize() { var _ret_var = Efl.Ui.Pan.NativeMethods.efl_ui_pan_content_size_get_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle)); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// The minimal position to scroll virtual public Eina.Position2D GetPanPositionMin() { var _ret_var = Efl.Ui.Pan.NativeMethods.efl_ui_pan_position_min_get_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle)); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// The maximal position to scroll virtual public Eina.Position2D GetPanPositionMax() { var _ret_var = Efl.Ui.Pan.NativeMethods.efl_ui_pan_position_max_get_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle)); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// Sub-object currently set as this object's single content. /// If it is set multiple times, previous sub-objects are removed first. Therefore, if an invalid content is set the object will become empty (it will have no sub-object). /// (Since EFL 1.22) /// The sub-object. virtual public Efl.Gfx.IEntity GetContent() { var _ret_var = Efl.IContentConcrete.NativeMethods.efl_content_get_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle)); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// Sub-object currently set as this object's single content. /// If it is set multiple times, previous sub-objects are removed first. Therefore, if an invalid content is set the object will become empty (it will have no sub-object). /// (Since EFL 1.22) /// The sub-object. /// true if content was successfully swallowed. virtual public bool SetContent(Efl.Gfx.IEntity content) { var _ret_var = Efl.IContentConcrete.NativeMethods.efl_content_set_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle),content); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// Remove the sub-object currently set as content of this object and return it. This object becomes empty. /// (Since EFL 1.22) /// Unswallowed object virtual public Efl.Gfx.IEntity UnsetContent() { var _ret_var = Efl.IContentConcrete.NativeMethods.efl_content_unset_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle)); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// Position public Eina.Position2D PanPosition { get { return GetPanPosition(); } set { SetPanPosition(value); } } /// Content size public Eina.Size2D ContentSize { get { return GetContentSize(); } } /// The minimal position to scroll public Eina.Position2D PanPositionMin { get { return GetPanPositionMin(); } } /// The maximal position to scroll public Eina.Position2D PanPositionMax { get { return GetPanPositionMax(); } } /// Sub-object currently set as this object's single content. /// If it is set multiple times, previous sub-objects are removed first. Therefore, if an invalid content is set the object will become empty (it will have no sub-object). /// (Since EFL 1.22) /// The sub-object. public Efl.Gfx.IEntity Content { get { return GetContent(); } set { SetContent(value); } } private static IntPtr GetEflClassStatic() { return Efl.Ui.Pan.efl_ui_pan_class_get(); } /// Wrapper for native methods and virtual method delegates. /// For internal use by generated code only. public new class NativeMethods : Efl.Canvas.Group.NativeMethods { 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_pan_position_get_static_delegate == null) { efl_ui_pan_position_get_static_delegate = new efl_ui_pan_position_get_delegate(pan_position_get); } if (methods.FirstOrDefault(m => m.Name == "GetPanPosition") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_ui_pan_position_get"), func = Marshal.GetFunctionPointerForDelegate(efl_ui_pan_position_get_static_delegate) }); } if (efl_ui_pan_position_set_static_delegate == null) { efl_ui_pan_position_set_static_delegate = new efl_ui_pan_position_set_delegate(pan_position_set); } if (methods.FirstOrDefault(m => m.Name == "SetPanPosition") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_ui_pan_position_set"), func = Marshal.GetFunctionPointerForDelegate(efl_ui_pan_position_set_static_delegate) }); } if (efl_ui_pan_content_size_get_static_delegate == null) { efl_ui_pan_content_size_get_static_delegate = new efl_ui_pan_content_size_get_delegate(content_size_get); } if (methods.FirstOrDefault(m => m.Name == "GetContentSize") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_ui_pan_content_size_get"), func = Marshal.GetFunctionPointerForDelegate(efl_ui_pan_content_size_get_static_delegate) }); } if (efl_ui_pan_position_min_get_static_delegate == null) { efl_ui_pan_position_min_get_static_delegate = new efl_ui_pan_position_min_get_delegate(pan_position_min_get); } if (methods.FirstOrDefault(m => m.Name == "GetPanPositionMin") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_ui_pan_position_min_get"), func = Marshal.GetFunctionPointerForDelegate(efl_ui_pan_position_min_get_static_delegate) }); } if (efl_ui_pan_position_max_get_static_delegate == null) { efl_ui_pan_position_max_get_static_delegate = new efl_ui_pan_position_max_get_delegate(pan_position_max_get); } if (methods.FirstOrDefault(m => m.Name == "GetPanPositionMax") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_ui_pan_position_max_get"), func = Marshal.GetFunctionPointerForDelegate(efl_ui_pan_position_max_get_static_delegate) }); } if (efl_content_get_static_delegate == null) { efl_content_get_static_delegate = new efl_content_get_delegate(content_get); } if (methods.FirstOrDefault(m => m.Name == "GetContent") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_content_get"), func = Marshal.GetFunctionPointerForDelegate(efl_content_get_static_delegate) }); } if (efl_content_set_static_delegate == null) { efl_content_set_static_delegate = new efl_content_set_delegate(content_set); } if (methods.FirstOrDefault(m => m.Name == "SetContent") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_content_set"), func = Marshal.GetFunctionPointerForDelegate(efl_content_set_static_delegate) }); } if (efl_content_unset_static_delegate == null) { efl_content_unset_static_delegate = new efl_content_unset_delegate(content_unset); } if (methods.FirstOrDefault(m => m.Name == "UnsetContent") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_content_unset"), func = Marshal.GetFunctionPointerForDelegate(efl_content_unset_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.Pan.efl_ui_pan_class_get(); } #pragma warning disable CA1707, SA1300, SA1600 private delegate Eina.Position2D.NativeStruct efl_ui_pan_position_get_delegate(System.IntPtr obj, System.IntPtr pd); public delegate Eina.Position2D.NativeStruct efl_ui_pan_position_get_api_delegate(System.IntPtr obj); public static Efl.Eo.FunctionWrapper efl_ui_pan_position_get_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_ui_pan_position_get"); private static Eina.Position2D.NativeStruct pan_position_get(System.IntPtr obj, System.IntPtr pd) { Eina.Log.Debug("function efl_ui_pan_position_get was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { Eina.Position2D _ret_var = default(Eina.Position2D); try { _ret_var = ((Pan)wrapper).GetPanPosition(); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_ui_pan_position_get_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj))); } } private static efl_ui_pan_position_get_delegate efl_ui_pan_position_get_static_delegate; private delegate void efl_ui_pan_position_set_delegate(System.IntPtr obj, System.IntPtr pd, Eina.Position2D.NativeStruct position); public delegate void efl_ui_pan_position_set_api_delegate(System.IntPtr obj, Eina.Position2D.NativeStruct position); public static Efl.Eo.FunctionWrapper efl_ui_pan_position_set_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_ui_pan_position_set"); private static void pan_position_set(System.IntPtr obj, System.IntPtr pd, Eina.Position2D.NativeStruct position) { Eina.Log.Debug("function efl_ui_pan_position_set was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { Eina.Position2D _in_position = position; try { ((Pan)wrapper).SetPanPosition(_in_position); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } } else { efl_ui_pan_position_set_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj)), position); } } private static efl_ui_pan_position_set_delegate efl_ui_pan_position_set_static_delegate; private delegate Eina.Size2D.NativeStruct efl_ui_pan_content_size_get_delegate(System.IntPtr obj, System.IntPtr pd); public delegate Eina.Size2D.NativeStruct efl_ui_pan_content_size_get_api_delegate(System.IntPtr obj); public static Efl.Eo.FunctionWrapper efl_ui_pan_content_size_get_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_ui_pan_content_size_get"); private static Eina.Size2D.NativeStruct content_size_get(System.IntPtr obj, System.IntPtr pd) { Eina.Log.Debug("function efl_ui_pan_content_size_get was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { Eina.Size2D _ret_var = default(Eina.Size2D); try { _ret_var = ((Pan)wrapper).GetContentSize(); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_ui_pan_content_size_get_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj))); } } private static efl_ui_pan_content_size_get_delegate efl_ui_pan_content_size_get_static_delegate; private delegate Eina.Position2D.NativeStruct efl_ui_pan_position_min_get_delegate(System.IntPtr obj, System.IntPtr pd); public delegate Eina.Position2D.NativeStruct efl_ui_pan_position_min_get_api_delegate(System.IntPtr obj); public static Efl.Eo.FunctionWrapper efl_ui_pan_position_min_get_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_ui_pan_position_min_get"); private static Eina.Position2D.NativeStruct pan_position_min_get(System.IntPtr obj, System.IntPtr pd) { Eina.Log.Debug("function efl_ui_pan_position_min_get was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { Eina.Position2D _ret_var = default(Eina.Position2D); try { _ret_var = ((Pan)wrapper).GetPanPositionMin(); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_ui_pan_position_min_get_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj))); } } private static efl_ui_pan_position_min_get_delegate efl_ui_pan_position_min_get_static_delegate; private delegate Eina.Position2D.NativeStruct efl_ui_pan_position_max_get_delegate(System.IntPtr obj, System.IntPtr pd); public delegate Eina.Position2D.NativeStruct efl_ui_pan_position_max_get_api_delegate(System.IntPtr obj); public static Efl.Eo.FunctionWrapper efl_ui_pan_position_max_get_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_ui_pan_position_max_get"); private static Eina.Position2D.NativeStruct pan_position_max_get(System.IntPtr obj, System.IntPtr pd) { Eina.Log.Debug("function efl_ui_pan_position_max_get was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { Eina.Position2D _ret_var = default(Eina.Position2D); try { _ret_var = ((Pan)wrapper).GetPanPositionMax(); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_ui_pan_position_max_get_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj))); } } private static efl_ui_pan_position_max_get_delegate efl_ui_pan_position_max_get_static_delegate; [return:MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalEo))] private delegate Efl.Gfx.IEntity efl_content_get_delegate(System.IntPtr obj, System.IntPtr pd); [return:MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalEo))] public delegate Efl.Gfx.IEntity efl_content_get_api_delegate(System.IntPtr obj); public static Efl.Eo.FunctionWrapper efl_content_get_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_content_get"); private static Efl.Gfx.IEntity content_get(System.IntPtr obj, System.IntPtr pd) { Eina.Log.Debug("function efl_content_get was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { Efl.Gfx.IEntity _ret_var = default(Efl.Gfx.IEntity); try { _ret_var = ((Pan)wrapper).GetContent(); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_content_get_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj))); } } private static efl_content_get_delegate efl_content_get_static_delegate; [return: MarshalAs(UnmanagedType.U1)] private delegate bool efl_content_set_delegate(System.IntPtr obj, System.IntPtr pd, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalEo))] Efl.Gfx.IEntity content); [return: MarshalAs(UnmanagedType.U1)] public delegate bool efl_content_set_api_delegate(System.IntPtr obj, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalEo))] Efl.Gfx.IEntity content); public static Efl.Eo.FunctionWrapper efl_content_set_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_content_set"); private static bool content_set(System.IntPtr obj, System.IntPtr pd, Efl.Gfx.IEntity content) { Eina.Log.Debug("function efl_content_set was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { bool _ret_var = default(bool); try { _ret_var = ((Pan)wrapper).SetContent(content); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_content_set_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj)), content); } } private static efl_content_set_delegate efl_content_set_static_delegate; [return:MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalEo))] private delegate Efl.Gfx.IEntity efl_content_unset_delegate(System.IntPtr obj, System.IntPtr pd); [return:MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(Efl.Eo.MarshalEo))] public delegate Efl.Gfx.IEntity efl_content_unset_api_delegate(System.IntPtr obj); public static Efl.Eo.FunctionWrapper efl_content_unset_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_content_unset"); private static Efl.Gfx.IEntity content_unset(System.IntPtr obj, System.IntPtr pd) { Eina.Log.Debug("function efl_content_unset was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { Efl.Gfx.IEntity _ret_var = default(Efl.Gfx.IEntity); try { _ret_var = ((Pan)wrapper).UnsetContent(); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_content_unset_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj))); } } private static efl_content_unset_delegate efl_content_unset_static_delegate; #pragma warning restore CA1707, SA1300, SA1600 } } } }