mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 03:55:28 +00:00
dd061f70b1
an exact match for a C GObject class (i.e. BluecurveStyle), walk up the gobject type hierarchy until we find a type that we do have a wrapper for, and return that. This means that you'll always, worst-case, end up with a GObject. * glib/Value.cs, glue/value.c: Added default constructor to GLib.Value() that creates a new value with a type of INVALID, and changed the glue function to not call gtk_type_init if INVALID is passed. svn path=/trunk/gtk-sharp/; revision=7994
39 lines
563 B
C
39 lines
563 B
C
/* value.c : Glue to allocate GValues on the heap.
|
|
*
|
|
* Author: Mike Kestner <mkestner@speakeasy.net>
|
|
*
|
|
* <c> 2002 Mike Kestner
|
|
*/
|
|
|
|
#include <glib-object.h>
|
|
|
|
gchar *
|
|
gtksharp_get_type_name (GObject *obj)
|
|
{
|
|
return G_OBJECT_TYPE_NAME (obj);
|
|
}
|
|
|
|
gboolean
|
|
gtksharp_is_object (gpointer obj)
|
|
{
|
|
return G_IS_OBJECT (obj);
|
|
}
|
|
|
|
GType
|
|
gtksharp_get_type_id (GObject *obj)
|
|
{
|
|
return G_TYPE_FROM_INSTANCE (obj);
|
|
}
|
|
|
|
GType
|
|
gtksharp_get_parent_type (GType typ)
|
|
{
|
|
return g_type_parent (typ);
|
|
}
|
|
|
|
gchar *
|
|
gtksharp_get_type_name_for_id (GType typ)
|
|
{
|
|
return g_type_name (typ);
|
|
}
|