no more submodule
This commit is contained in:
138
GtkSharp/Source/Libs/GdkSharp/Generated/Gdk/RGBA.cs
Normal file
138
GtkSharp/Source/Libs/GdkSharp/Generated/Gdk/RGBA.cs
Normal file
@@ -0,0 +1,138 @@
|
||||
// This file was generated by the Gtk# code generator.
|
||||
// Any changes made will be lost if regenerated.
|
||||
|
||||
namespace Gdk {
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
#region Autogenerated code
|
||||
[StructLayout(LayoutKind.Sequential)]
|
||||
public partial struct RGBA : IEquatable<RGBA> {
|
||||
|
||||
public double Red;
|
||||
public double Green;
|
||||
public double Blue;
|
||||
public double Alpha;
|
||||
|
||||
public static Gdk.RGBA Zero = new Gdk.RGBA ();
|
||||
|
||||
public static Gdk.RGBA New(IntPtr raw) {
|
||||
if (raw == IntPtr.Zero)
|
||||
return Gdk.RGBA.Zero;
|
||||
return (Gdk.RGBA) Marshal.PtrToStructure (raw, typeof (Gdk.RGBA));
|
||||
}
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate IntPtr d_gdk_rgba_copy(IntPtr raw);
|
||||
static d_gdk_rgba_copy gdk_rgba_copy = FuncLoader.LoadFunction<d_gdk_rgba_copy>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gdk), "gdk_rgba_copy"));
|
||||
|
||||
public Gdk.RGBA Copy() {
|
||||
IntPtr this_as_native = System.Runtime.InteropServices.Marshal.AllocHGlobal (System.Runtime.InteropServices.Marshal.SizeOf<Gdk.RGBA>());
|
||||
System.Runtime.InteropServices.Marshal.StructureToPtr (this, this_as_native, false);
|
||||
IntPtr raw_ret = gdk_rgba_copy(this_as_native);
|
||||
Gdk.RGBA ret = Gdk.RGBA.New (raw_ret);
|
||||
ReadNative (this_as_native, ref this);
|
||||
System.Runtime.InteropServices.Marshal.FreeHGlobal (this_as_native);
|
||||
return ret;
|
||||
}
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate bool d_gdk_rgba_equal(IntPtr p1, IntPtr p2);
|
||||
static d_gdk_rgba_equal gdk_rgba_equal = FuncLoader.LoadFunction<d_gdk_rgba_equal>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gdk), "gdk_rgba_equal"));
|
||||
|
||||
public static bool Equal(IntPtr p1, IntPtr p2) {
|
||||
bool raw_ret = gdk_rgba_equal(p1, p2);
|
||||
bool ret = raw_ret;
|
||||
return ret;
|
||||
}
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate void d_gdk_rgba_free(IntPtr raw);
|
||||
static d_gdk_rgba_free gdk_rgba_free = FuncLoader.LoadFunction<d_gdk_rgba_free>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gdk), "gdk_rgba_free"));
|
||||
|
||||
public void Free() {
|
||||
IntPtr this_as_native = System.Runtime.InteropServices.Marshal.AllocHGlobal (System.Runtime.InteropServices.Marshal.SizeOf<Gdk.RGBA>());
|
||||
System.Runtime.InteropServices.Marshal.StructureToPtr (this, this_as_native, false);
|
||||
gdk_rgba_free(this_as_native);
|
||||
ReadNative (this_as_native, ref this);
|
||||
System.Runtime.InteropServices.Marshal.FreeHGlobal (this_as_native);
|
||||
}
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate IntPtr d_gdk_rgba_get_type();
|
||||
static d_gdk_rgba_get_type gdk_rgba_get_type = FuncLoader.LoadFunction<d_gdk_rgba_get_type>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gdk), "gdk_rgba_get_type"));
|
||||
|
||||
public static GLib.GType GType {
|
||||
get {
|
||||
IntPtr raw_ret = gdk_rgba_get_type();
|
||||
GLib.GType ret = new GLib.GType(raw_ret);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate uint d_gdk_rgba_hash(IntPtr p);
|
||||
static d_gdk_rgba_hash gdk_rgba_hash = FuncLoader.LoadFunction<d_gdk_rgba_hash>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gdk), "gdk_rgba_hash"));
|
||||
|
||||
public static uint Hash(IntPtr p) {
|
||||
uint raw_ret = gdk_rgba_hash(p);
|
||||
uint ret = raw_ret;
|
||||
return ret;
|
||||
}
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate bool d_gdk_rgba_parse(IntPtr raw, IntPtr spec);
|
||||
static d_gdk_rgba_parse gdk_rgba_parse = FuncLoader.LoadFunction<d_gdk_rgba_parse>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gdk), "gdk_rgba_parse"));
|
||||
|
||||
public bool Parse(string spec) {
|
||||
IntPtr this_as_native = System.Runtime.InteropServices.Marshal.AllocHGlobal (System.Runtime.InteropServices.Marshal.SizeOf<Gdk.RGBA>());
|
||||
System.Runtime.InteropServices.Marshal.StructureToPtr (this, this_as_native, false);
|
||||
IntPtr native_spec = GLib.Marshaller.StringToPtrGStrdup (spec);
|
||||
bool raw_ret = gdk_rgba_parse(this_as_native, native_spec);
|
||||
bool ret = raw_ret;
|
||||
ReadNative (this_as_native, ref this);
|
||||
System.Runtime.InteropServices.Marshal.FreeHGlobal (this_as_native);
|
||||
GLib.Marshaller.Free (native_spec);
|
||||
return ret;
|
||||
}
|
||||
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate IntPtr d_gdk_rgba_to_string(IntPtr raw);
|
||||
static d_gdk_rgba_to_string gdk_rgba_to_string = FuncLoader.LoadFunction<d_gdk_rgba_to_string>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gdk), "gdk_rgba_to_string"));
|
||||
|
||||
public override string ToString() {
|
||||
IntPtr this_as_native = System.Runtime.InteropServices.Marshal.AllocHGlobal (System.Runtime.InteropServices.Marshal.SizeOf<Gdk.RGBA>());
|
||||
System.Runtime.InteropServices.Marshal.StructureToPtr (this, this_as_native, false);
|
||||
IntPtr raw_ret = gdk_rgba_to_string(this_as_native);
|
||||
string ret = GLib.Marshaller.PtrToStringGFree(raw_ret);
|
||||
ReadNative (this_as_native, ref this);
|
||||
System.Runtime.InteropServices.Marshal.FreeHGlobal (this_as_native);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void ReadNative (IntPtr native, ref Gdk.RGBA target)
|
||||
{
|
||||
target = New (native);
|
||||
}
|
||||
|
||||
public bool Equals (RGBA other)
|
||||
{
|
||||
return true && Red.Equals (other.Red) && Green.Equals (other.Green) && Blue.Equals (other.Blue) && Alpha.Equals (other.Alpha);
|
||||
}
|
||||
|
||||
public override bool Equals (object other)
|
||||
{
|
||||
return other is RGBA && Equals ((RGBA) other);
|
||||
}
|
||||
|
||||
public override int GetHashCode ()
|
||||
{
|
||||
return this.GetType ().FullName.GetHashCode () ^ Red.GetHashCode () ^ Green.GetHashCode () ^ Blue.GetHashCode () ^ Alpha.GetHashCode ();
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user