mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 05:15:31 +00:00
c8d090f62f
Proper GList, GSList support. Read-only for now. * glue/list.c: Added. * glue/Makefile.am: Add list.c * glue/type.c: Add function gtksharp_is_object. * glib/ListBase.cs, List.cs: Added. * glib/SList.cs: Inherit from ListBase. * glib/Object.cs: Add static method "IsObject". * generator/Method.cs: Pass on element_type to constructor if specified. * generator/SymbolTable.cs: Move GList to manual types. * sample/GladeViewer.cs: Remove list hacks. * sources/Gnome.metadata: Specify element types for CanvasPathDef.Split and IconList.GetSelection. Rename CanvasPathDef *to methods to properly capitalized *To. * sources/Gtk.metadata: Hide Widget.ListAccelClosures until GClosure is handled properly. * sources/Pango.metadata: Added. * sample/test/TestToolbar.cs: Compile with recent delegate changes. svn path=/trunk/gtk-sharp/; revision=7166
72 lines
1.4 KiB
C#
72 lines
1.4 KiB
C#
// SList.cs - GSList class wrapper implementation
|
|
//
|
|
// Authors: Mike Kestner <mkestner@speakeasy.net>
|
|
//
|
|
// (c) 2002 Mike Kestner
|
|
|
|
namespace GLib {
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
/// <summary>
|
|
/// SList Class
|
|
/// </summary>
|
|
///
|
|
/// <remarks>
|
|
/// Wrapper class for GSList.
|
|
/// </remarks>
|
|
|
|
public class SList : ListBase {
|
|
|
|
[DllImport("glib-2.0")]
|
|
static extern IntPtr g_slist_copy (IntPtr l);
|
|
|
|
public override object Clone ()
|
|
{
|
|
return new SList (g_slist_copy (Handle));
|
|
}
|
|
|
|
[DllImport("gtksharpglue")]
|
|
static extern IntPtr gtksharp_slist_get_data (IntPtr l);
|
|
|
|
internal override IntPtr GetData (IntPtr current)
|
|
{
|
|
return gtksharp_slist_get_data (current);
|
|
}
|
|
|
|
[DllImport("gtksharpglue")]
|
|
static extern IntPtr gtksharp_slist_get_next (IntPtr l);
|
|
|
|
internal override IntPtr Next (IntPtr current)
|
|
{
|
|
return gtksharp_slist_get_next (current);
|
|
}
|
|
|
|
[DllImport("glib-2.0")]
|
|
static extern int g_slist_length (IntPtr l);
|
|
|
|
internal override int Length (IntPtr list)
|
|
{
|
|
return g_slist_length (list);
|
|
}
|
|
|
|
[DllImport("glib-2.0")]
|
|
static extern void g_slist_free(IntPtr l);
|
|
|
|
internal override void Free (IntPtr list)
|
|
{
|
|
if (list != IntPtr.Zero)
|
|
g_slist_free (list);
|
|
}
|
|
|
|
public SList (IntPtr raw) : base (raw)
|
|
{
|
|
}
|
|
|
|
public SList (IntPtr raw, Type element_type) : base (raw, element_type)
|
|
{
|
|
}
|
|
}
|
|
}
|