mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 13:15:39 +00:00
6ea443884a
* gtk/Accel.custom : s/List/SList * gtk/Stock.custom : ditto * gtk/TextIter.custom : ditto svn path=/trunk/gtk-sharp/; revision=23029
22 lines
639 B
Plaintext
22 lines
639 B
Plaintext
// Accel.custom - customizations to Gtk.Accel
|
|
//
|
|
// Authors: Mike Kestner <mkestner@ximian.com>
|
|
//
|
|
// Copyright (c) 2004 Novell, Inc.
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
static extern IntPtr gtk_accel_groups_from_object (IntPtr obj);
|
|
|
|
public static AccelGroup[] GroupsFromObject (GLib.Object obj)
|
|
{
|
|
IntPtr raw_ret = gtk_accel_groups_from_object(obj.Handle);
|
|
if (raw_ret == IntPtr.Zero)
|
|
return new AccelGroup [0];
|
|
GLib.SList list = new GLib.SList(raw_ret);
|
|
AccelGroup[] result = new AccelGroup [list.Count];
|
|
for (int i = 0; i < list.Count; i++)
|
|
result [i] = list [i] as AccelGroup;
|
|
return result;
|
|
}
|
|
|