2002-08-10 23:40:20 +00:00
|
|
|
// 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.
|
|
|
|
|
2003-02-22 04:34:56 +00:00
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
2002-08-10 23:40:20 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2003-02-22 04:34:56 +00:00
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
2002-08-10 23:40:20 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2003-02-22 04:34:56 +00:00
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
2002-08-10 23:40:20 +00:00
|
|
|
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;
|
|
|
|
}
|
2002-11-22 03:30:18 +00:00
|
|
|
|
2002-12-25 00:36:00 +00:00
|
|
|
public void SetColumnTypes (params uint[] types)
|
2002-11-22 03:30:18 +00:00
|
|
|
{
|
|
|
|
SetColumnTypes (types.Length, types);
|
|
|
|
}
|