2002-08-10 23:40:20 +00:00
|
|
|
// Gtk.TreeModelSort.Custom - Gtk TreeModelSort class customizations
|
|
|
|
//
|
|
|
|
// Author: Kristian Rietveld <kris@gtk.org>
|
|
|
|
//
|
2004-06-25 18:42:19 +00:00
|
|
|
// Copyright (c) 2002 Kristian Rietveld
|
2002-08-10 23:40:20 +00:00
|
|
|
//
|
|
|
|
// This code is inserted after the automatically generated code.
|
2004-06-25 18:42:19 +00:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of version 2 of the Lesser GNU General
|
|
|
|
// Public License as published by the Free Software Foundation.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this program; if not, write to the
|
|
|
|
// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
// Boston, MA 02111-1307, USA.
|
|
|
|
|
2002-08-10 23:40:20 +00:00
|
|
|
|
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;
|
|
|
|
}
|
2003-11-01 12:00:26 +00:00
|
|
|
|
|
|
|
public void SetValue (Gtk.TreeIter iter, int column, bool value) {
|
|
|
|
SetValue (iter, column, new GLib.Value (value));
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SetValue (Gtk.TreeIter iter, int column, double value) {
|
|
|
|
SetValue (iter, column, new GLib.Value (value));
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SetValue (Gtk.TreeIter iter, int column, int value) {
|
|
|
|
SetValue (iter, column, new GLib.Value (value));
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SetValue (Gtk.TreeIter iter, int column, string value) {
|
|
|
|
SetValue (iter, column, new GLib.Value (value));
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SetValue (Gtk.TreeIter iter, int column, float value) {
|
|
|
|
SetValue (iter, column, new GLib.Value (value));
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SetValue (Gtk.TreeIter iter, int column, uint value) {
|
|
|
|
SetValue (iter, column, new GLib.Value (value));
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SetValue (Gtk.TreeIter iter, int column, object value) {
|
|
|
|
SetValue (iter, column, new GLib.Value (value));
|
|
|
|
}
|
|
|
|
|
|
|
|
public Gtk.TreeIter AppendValues (params object[] values) {
|
|
|
|
return AppendValues ((Array) values);
|
|
|
|
}
|
|
|
|
|
|
|
|
public object GetValue (Gtk.TreeIter iter, int column) {
|
2004-04-12 15:54:57 +00:00
|
|
|
GLib.Value val = GLib.Value.Empty;
|
|
|
|
GetValue (iter, column, ref val);
|
2003-11-01 12:00:26 +00:00
|
|
|
object ret = val.Val;
|
|
|
|
val.Dispose ();
|
|
|
|
return ret;
|
|
|
|
}
|
2005-03-12 22:19:44 +00:00
|
|
|
|
2005-04-05 14:48:49 +00:00
|
|
|
[Obsolete ("Replaced by SetSortFunc (int, TreeIterCompareFunc) overload.")]
|
|
|
|
public void SetSortFunc (int sort_column_id, TreeIterCompareFunc sort_func, IntPtr user_data, Gtk.DestroyNotify destroy)
|
|
|
|
{
|
|
|
|
SetSortFunc (sort_column_id, sort_func);
|
|
|
|
}
|
2005-03-12 22:19:44 +00:00
|
|
|
|
2005-05-04 11:47:25 +00:00
|
|
|
[Obsolete ("Replaced by DefaultSortFunc property.")]
|
2005-04-05 14:48:49 +00:00
|
|
|
public void SetDefaultSortFunc (TreeIterCompareFunc sort_func, IntPtr user_data, Gtk.DestroyNotify destroy)
|
|
|
|
{
|
2005-05-04 11:47:25 +00:00
|
|
|
DefaultSortFunc = sort_func;
|
2005-03-15 17:30:59 +00:00
|
|
|
}
|