mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-03-01 10:06:54 +00:00
2008-06-20 Mike Kestner <mkestner@novell.com>
* glib/Value.cs: Patch from Christian Hoff. Support for byte and sbyte values. svn path=/trunk/gtk-sharp/; revision=106309
This commit is contained in:
parent
793802f7be
commit
04d1d00b15
|
@ -1,3 +1,8 @@
|
||||||
|
2008-06-20 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
|
* glib/Value.cs: Patch from Christian Hoff. Support for byte and
|
||||||
|
sbyte values.
|
||||||
|
|
||||||
2008-06-17 Mike Kestner <mkestner@novell.com>
|
2008-06-17 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
* glib/SignalClosure.cs: post back the gvalues after the closure is
|
* glib/SignalClosure.cs: post back the gvalues after the closure is
|
||||||
|
|
|
@ -58,6 +58,16 @@ namespace GLib {
|
||||||
g_value_set_boolean (ref this, val);
|
g_value_set_boolean (ref this, val);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Value (byte val) : this (GType.UChar)
|
||||||
|
{
|
||||||
|
g_value_set_uchar (ref this, val);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Value (sbyte val) : this (GType.Char)
|
||||||
|
{
|
||||||
|
g_value_set_char (ref this, val);
|
||||||
|
}
|
||||||
|
|
||||||
public Value (int val) : this (GType.Int)
|
public Value (int val) : this (GType.Int)
|
||||||
{
|
{
|
||||||
g_value_set_int (ref this, val);
|
g_value_set_int (ref this, val);
|
||||||
|
@ -209,6 +219,16 @@ namespace GLib {
|
||||||
return g_value_get_boolean (ref val);
|
return g_value_get_boolean (ref val);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static explicit operator byte (Value val)
|
||||||
|
{
|
||||||
|
return g_value_get_uchar (ref val);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static explicit operator sbyte (Value val)
|
||||||
|
{
|
||||||
|
return g_value_get_char (ref val);
|
||||||
|
}
|
||||||
|
|
||||||
public static explicit operator int (Value val)
|
public static explicit operator int (Value val)
|
||||||
{
|
{
|
||||||
return g_value_get_int (ref val);
|
return g_value_get_int (ref val);
|
||||||
|
@ -329,6 +349,10 @@ namespace GLib {
|
||||||
get {
|
get {
|
||||||
if (type == GType.Boolean.Val)
|
if (type == GType.Boolean.Val)
|
||||||
return (bool) this;
|
return (bool) this;
|
||||||
|
else if (type == GType.UChar.Val)
|
||||||
|
return (byte) this;
|
||||||
|
else if (type == GType.Char.Val)
|
||||||
|
return (sbyte) this;
|
||||||
else if (type == GType.Int.Val)
|
else if (type == GType.Int.Val)
|
||||||
return (int) this;
|
return (int) this;
|
||||||
else if (type == GType.UInt.Val)
|
else if (type == GType.UInt.Val)
|
||||||
|
@ -362,6 +386,10 @@ namespace GLib {
|
||||||
set {
|
set {
|
||||||
if (type == GType.Boolean.Val)
|
if (type == GType.Boolean.Val)
|
||||||
g_value_set_boolean (ref this, (bool) value);
|
g_value_set_boolean (ref this, (bool) value);
|
||||||
|
else if (type == GType.UChar.Val)
|
||||||
|
g_value_set_uchar (ref this, (byte) value);
|
||||||
|
else if (type == GType.Char.Val)
|
||||||
|
g_value_set_char (ref this, (sbyte) value);
|
||||||
else if (type == GType.Int.Val)
|
else if (type == GType.Int.Val)
|
||||||
g_value_set_int (ref this, (int) value);
|
g_value_set_int (ref this, (int) value);
|
||||||
else if (type == GType.UInt.Val)
|
else if (type == GType.UInt.Val)
|
||||||
|
@ -435,6 +463,12 @@ namespace GLib {
|
||||||
[DllImport("libgobject-2.0-0.dll")]
|
[DllImport("libgobject-2.0-0.dll")]
|
||||||
static extern void g_value_set_boolean (ref Value val, bool data);
|
static extern void g_value_set_boolean (ref Value val, bool data);
|
||||||
|
|
||||||
|
[DllImport("libgobject-2.0-0.dll")]
|
||||||
|
static extern void g_value_set_uchar (ref Value val, byte data);
|
||||||
|
|
||||||
|
[DllImport("libgobject-2.0-0.dll")]
|
||||||
|
static extern void g_value_set_char (ref Value val, sbyte data);
|
||||||
|
|
||||||
[DllImport("libgobject-2.0-0.dll")]
|
[DllImport("libgobject-2.0-0.dll")]
|
||||||
static extern void g_value_set_boxed (ref Value val, IntPtr data);
|
static extern void g_value_set_boxed (ref Value val, IntPtr data);
|
||||||
|
|
||||||
|
@ -476,6 +510,12 @@ namespace GLib {
|
||||||
[DllImport("libgobject-2.0-0.dll")]
|
[DllImport("libgobject-2.0-0.dll")]
|
||||||
static extern bool g_value_get_boolean (ref Value val);
|
static extern bool g_value_get_boolean (ref Value val);
|
||||||
|
|
||||||
|
[DllImport("libgobject-2.0-0.dll")]
|
||||||
|
static extern byte g_value_get_uchar (ref Value val);
|
||||||
|
|
||||||
|
[DllImport("libgobject-2.0-0.dll")]
|
||||||
|
static extern sbyte g_value_get_char (ref Value val);
|
||||||
|
|
||||||
[DllImport("libgobject-2.0-0.dll")]
|
[DllImport("libgobject-2.0-0.dll")]
|
||||||
static extern IntPtr g_value_get_boxed (ref Value val);
|
static extern IntPtr g_value_get_boxed (ref Value val);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue