#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 Canvas { /// Native surfaces usually bound to an externally-managed buffer. /// The attached is entirely platform-dependent, which means some of this mixin's subclasses will not work (constructor returns null) on some platforms. This class is meant to be used from native code only (C or C++), with direct access to the display system or a buffer allocation system. [Efl.Canvas.Surface.NativeMethods] public abstract class Surface : Efl.Canvas.ImageInternal, Efl.Eo.IWrapper { ///Pointer to the native class description. public override System.IntPtr NativeClass { get { if (((object)this).GetType() == typeof(Surface)) { return GetEflClassStatic(); } else { return Efl.Eo.ClassRegister.klassFromType[((object)this).GetType()]; } } } [System.Runtime.InteropServices.DllImport(efl.Libs.Evas)] internal static extern System.IntPtr efl_canvas_surface_class_get(); /// Initializes a new instance of the class. /// Parent instance. public Surface(Efl.Object parent= null ) : base(efl_canvas_surface_class_get(), typeof(Surface), 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 Surface(System.IntPtr raw) : base(raw) { } [Efl.Eo.PrivateNativeClass] private class SurfaceRealized : Surface { private SurfaceRealized(IntPtr ptr) : base(ptr) { } } /// 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 Surface(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}]"; } /// External buffer attached to this native surface. /// Set to null to detach this surface from the external buffer. /// The external buffer, depends on its type. virtual public System.IntPtr GetNativeBuffer() { var _ret_var = Efl.Canvas.Surface.NativeMethods.efl_canvas_surface_native_buffer_get_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle)); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// Set the buffer. If this fails, this function returns false, and the surface is left without any attached buffer. /// The external buffer, depends on its type. /// true on success, false otherwise virtual public bool SetNativeBuffer(System.IntPtr buffer) { var _ret_var = Efl.Canvas.Surface.NativeMethods.efl_canvas_surface_native_buffer_set_ptr.Value.Delegate((inherited ? Efl.Eo.Globals.efl_super(this.NativeHandle, this.NativeClass) : this.NativeHandle),buffer); Eina.Error.RaiseIfUnhandledException(); return _ret_var; } /// External buffer attached to this native surface. /// Set to null to detach this surface from the external buffer. /// The external buffer, depends on its type. public System.IntPtr NativeBuffer { get { return GetNativeBuffer(); } set { SetNativeBuffer(value); } } private static IntPtr GetEflClassStatic() { return Efl.Canvas.Surface.efl_canvas_surface_class_get(); } /// Wrapper for native methods and virtual method delegates. /// For internal use by generated code only. public new class NativeMethods : Efl.Canvas.ImageInternal.NativeMethods { private static Efl.Eo.NativeModule Module = new Efl.Eo.NativeModule( efl.Libs.Evas); /// 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_canvas_surface_native_buffer_get_static_delegate == null) { efl_canvas_surface_native_buffer_get_static_delegate = new efl_canvas_surface_native_buffer_get_delegate(native_buffer_get); } if (methods.FirstOrDefault(m => m.Name == "GetNativeBuffer") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_canvas_surface_native_buffer_get"), func = Marshal.GetFunctionPointerForDelegate(efl_canvas_surface_native_buffer_get_static_delegate) }); } if (efl_canvas_surface_native_buffer_set_static_delegate == null) { efl_canvas_surface_native_buffer_set_static_delegate = new efl_canvas_surface_native_buffer_set_delegate(native_buffer_set); } if (methods.FirstOrDefault(m => m.Name == "SetNativeBuffer") != null) { descs.Add(new Efl_Op_Description() {api_func = Efl.Eo.FunctionInterop.LoadFunctionPointer(Module.Module, "efl_canvas_surface_native_buffer_set"), func = Marshal.GetFunctionPointerForDelegate(efl_canvas_surface_native_buffer_set_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.Canvas.Surface.efl_canvas_surface_class_get(); } #pragma warning disable CA1707, SA1300, SA1600 private delegate System.IntPtr efl_canvas_surface_native_buffer_get_delegate(System.IntPtr obj, System.IntPtr pd); public delegate System.IntPtr efl_canvas_surface_native_buffer_get_api_delegate(System.IntPtr obj); public static Efl.Eo.FunctionWrapper efl_canvas_surface_native_buffer_get_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_canvas_surface_native_buffer_get"); private static System.IntPtr native_buffer_get(System.IntPtr obj, System.IntPtr pd) { Eina.Log.Debug("function efl_canvas_surface_native_buffer_get was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { System.IntPtr _ret_var = default(System.IntPtr); try { _ret_var = ((Surface)wrapper).GetNativeBuffer(); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_canvas_surface_native_buffer_get_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj))); } } private static efl_canvas_surface_native_buffer_get_delegate efl_canvas_surface_native_buffer_get_static_delegate; [return: MarshalAs(UnmanagedType.U1)] private delegate bool efl_canvas_surface_native_buffer_set_delegate(System.IntPtr obj, System.IntPtr pd, System.IntPtr buffer); [return: MarshalAs(UnmanagedType.U1)] public delegate bool efl_canvas_surface_native_buffer_set_api_delegate(System.IntPtr obj, System.IntPtr buffer); public static Efl.Eo.FunctionWrapper efl_canvas_surface_native_buffer_set_ptr = new Efl.Eo.FunctionWrapper(Module, "efl_canvas_surface_native_buffer_set"); private static bool native_buffer_set(System.IntPtr obj, System.IntPtr pd, System.IntPtr buffer) { Eina.Log.Debug("function efl_canvas_surface_native_buffer_set was called"); Efl.Eo.IWrapper wrapper = Efl.Eo.Globals.PrivateDataGet(pd); if (wrapper != null) { bool _ret_var = default(bool); try { _ret_var = ((Surface)wrapper).SetNativeBuffer(buffer); } catch (Exception e) { Eina.Log.Warning($"Callback error: {e.ToString()}"); Eina.Error.Set(Eina.Error.UNHANDLED_EXCEPTION); } return _ret_var; } else { return efl_canvas_surface_native_buffer_set_ptr.Value.Delegate(Efl.Eo.Globals.efl_super(obj, Efl.Eo.Globals.efl_class_get(obj)), buffer); } } private static efl_canvas_surface_native_buffer_set_delegate efl_canvas_surface_native_buffer_set_static_delegate; #pragma warning restore CA1707, SA1300, SA1600 } } } }