mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-27 08:15:27 +00:00
3a108845d7
* api/*.xml : a few new attrs * generator/Parameters.cs : remove redundant ref keywords * gtk/ListStore.custom: overload SetColumnTypes * gtk/TreeStore.custom: overload SetColumnTypes * parser/GAPI/Metadata.pm : allow callback nodes at class level * sources/Gtk.metadata : hide ClipboardClearFunc and GetFunc, tag types param of SetColumnTypes as array, uncomment needs_ref tags on Widget methods to match the current api.xml file svn path=/trunk/gtk-sharp/; revision=9148
37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
// Gtk.ListStore.Custom - Gtk ListStore class customizations
|
|
//
|
|
// Author: Kristian Rietveld <kris@gtk.org>
|
|
//
|
|
// (c) 2002 Kristian Rietveld
|
|
//
|
|
// This code is inserted after the automatically generated code.
|
|
|
|
[DllImport("gtk-x11-2.0")]
|
|
static extern bool gtk_tree_model_iter_children (IntPtr raw, out Gtk.TreeIter iter, IntPtr parent);
|
|
public bool IterChildren (out Gtk.TreeIter iter) {
|
|
bool raw_ret = gtk_tree_model_iter_children (Handle, out iter, IntPtr.Zero);
|
|
bool ret = raw_ret;
|
|
return ret;
|
|
}
|
|
|
|
[DllImport("gtk-x11-2.0")]
|
|
static extern int gtk_tree_model_iter_n_children (IntPtr raw, IntPtr iter);
|
|
public int IterNChildren () {
|
|
int raw_ret = gtk_tree_model_iter_n_children (Handle, IntPtr.Zero);
|
|
int ret = raw_ret;
|
|
return ret;
|
|
}
|
|
|
|
[DllImport("gtk-x11-2.0")]
|
|
static extern bool gtk_tree_model_iter_nth_child (IntPtr raw, out Gtk.TreeIter iter, IntPtr parent, int n);
|
|
public bool IterNthChild (out Gtk.TreeIter iter, int n) {
|
|
bool raw_ret = gtk_tree_model_iter_nth_child (Handle, out iter, IntPtr.Zero, n);
|
|
bool ret = raw_ret;
|
|
return ret;
|
|
}
|
|
|
|
public void SetColumnTypes (params int[] types)
|
|
{
|
|
SetColumnTypes (types.Length, types);
|
|
}
|