f750d78d6a
* generator/ObjectGen.cs : generate protected GType ctors * generator/SymbolTable.cs : map GType to uint * glib/Object.cs : add GType ctor. add RegisterGType. * glue/type.c (gtksharp_register_type): new GType registrar * */*.custom : make GType params uints * sample/Subclass.cs : a simple type registration example svn path=/trunk/gtk-sharp/; revision=9870
36 lines
1.2 KiB
Text
36 lines
1.2 KiB
Text
// 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 uint[] types)
|
|
{
|
|
SetColumnTypes (types.Length, types);
|
|
}
|