1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace Gtk {
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
#region Autogenerated code
[StructLayout(LayoutKind.Sequential)]
public partial struct RcProperty : IEquatable<RcProperty> {
public int TypeName;
public int PropertyName;
public string Origin;
public GLib.Value Value;
public static Gtk.RcProperty Zero = new Gtk.RcProperty ();
public static Gtk.RcProperty New(IntPtr raw) {
if (raw == IntPtr.Zero)
return Gtk.RcProperty.Zero;
return (Gtk.RcProperty) Marshal.PtrToStructure (raw, typeof (Gtk.RcProperty));
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_rc_property_parse_border(IntPtr pspec, IntPtr gstring, IntPtr property_value);
public static bool ParseBorder(IntPtr pspec, string gstring, GLib.Value property_value) {
IntPtr native_property_value = GLib.Marshaller.StructureToPtrAlloc (property_value);
bool raw_ret = gtk_rc_property_parse_border(pspec, new GLib.GString (gstring).Handle, native_property_value);
bool ret = raw_ret;
Marshal.FreeHGlobal (native_property_value);
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_rc_property_parse_color(IntPtr pspec, IntPtr gstring, IntPtr property_value);
public static bool ParseColor(IntPtr pspec, string gstring, GLib.Value property_value) {
IntPtr native_property_value = GLib.Marshaller.StructureToPtrAlloc (property_value);
bool raw_ret = gtk_rc_property_parse_color(pspec, new GLib.GString (gstring).Handle, native_property_value);
bool ret = raw_ret;
Marshal.FreeHGlobal (native_property_value);
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_rc_property_parse_enum(IntPtr pspec, IntPtr gstring, IntPtr property_value);
public static bool ParseEnum(IntPtr pspec, string gstring, GLib.Value property_value) {
IntPtr native_property_value = GLib.Marshaller.StructureToPtrAlloc (property_value);
bool raw_ret = gtk_rc_property_parse_enum(pspec, new GLib.GString (gstring).Handle, native_property_value);
bool ret = raw_ret;
Marshal.FreeHGlobal (native_property_value);
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_rc_property_parse_flags(IntPtr pspec, IntPtr gstring, IntPtr property_value);
public static bool ParseFlags(IntPtr pspec, string gstring, GLib.Value property_value) {
IntPtr native_property_value = GLib.Marshaller.StructureToPtrAlloc (property_value);
bool raw_ret = gtk_rc_property_parse_flags(pspec, new GLib.GString (gstring).Handle, native_property_value);
bool ret = raw_ret;
Marshal.FreeHGlobal (native_property_value);
return ret;
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gtk_rc_property_parse_requisition(IntPtr pspec, IntPtr gstring, IntPtr property_value);
public static bool ParseRequisition(IntPtr pspec, string gstring, GLib.Value property_value) {
IntPtr native_property_value = GLib.Marshaller.StructureToPtrAlloc (property_value);
bool raw_ret = gtk_rc_property_parse_requisition(pspec, new GLib.GString (gstring).Handle, native_property_value);
bool ret = raw_ret;
Marshal.FreeHGlobal (native_property_value);
return ret;
}
public bool Equals (RcProperty other)
{
return true && TypeName.Equals (other.TypeName) && PropertyName.Equals (other.PropertyName) && Origin.Equals (other.Origin) && Value.Equals (other.Value);
}
public override bool Equals (object other)
{
return other is RcProperty && Equals ((RcProperty) other);
}
public override int GetHashCode ()
{
return this.GetType ().FullName.GetHashCode () ^ TypeName.GetHashCode () ^ PropertyName.GetHashCode () ^ Origin.GetHashCode () ^ Value.GetHashCode ();
}
private static GLib.GType GType {
get { return GLib.GType.Pointer; }
}
#endregion
}
}
|