2002-08-10 23:40:20 +00:00
|
|
|
// Gtk.TreeStore.Custom - Gtk TreeStore class customizations
|
|
|
|
//
|
2004-05-07 19:33:09 +00:00
|
|
|
// Authors: Kristian Rietveld <kris@gtk.org>
|
|
|
|
// Mike Kestner <mkestner@ximian.com>
|
2002-08-10 23:40:20 +00:00
|
|
|
//
|
2004-05-07 19:33:09 +00:00
|
|
|
// Copyright (c) 2002 Kristian Rietveld
|
|
|
|
// Copyright (c) 2004 Novell, Inc.
|
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
|
|
|
|
2005-03-29 21:12:32 +00:00
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
|
|
static extern void gtk_tree_store_append (IntPtr raw, out TreeIter iter, ref TreeIter parent);
|
2002-08-10 23:40:20 +00:00
|
|
|
|
2003-02-22 04:34:56 +00:00
|
|
|
[DllImport ("libgtk-win32-2.0-0.dll")]
|
2005-03-29 21:12:32 +00:00
|
|
|
static extern void gtk_tree_store_append (IntPtr raw, out TreeIter iter, IntPtr parent);
|
|
|
|
|
|
|
|
[Obsolete ("Replaced by AppendNode")]
|
|
|
|
public TreeIter Append (TreeIter parent)
|
|
|
|
{
|
|
|
|
TreeIter iter;
|
|
|
|
gtk_tree_store_append (Handle, out iter, ref parent);
|
|
|
|
return iter;
|
|
|
|
}
|
2002-08-10 23:40:20 +00:00
|
|
|
|
2005-03-29 21:12:32 +00:00
|
|
|
[Obsolete ("Replaced by AppendNode")]
|
|
|
|
public void Append (out TreeIter iter)
|
|
|
|
{
|
|
|
|
gtk_tree_store_append (Handle, out iter, IntPtr.Zero);
|
|
|
|
}
|
|
|
|
|
|
|
|
public TreeIter AppendNode ()
|
|
|
|
{
|
|
|
|
TreeIter iter;
|
2002-08-10 23:40:20 +00:00
|
|
|
gtk_tree_store_append (Handle, out iter, IntPtr.Zero);
|
2005-03-29 21:12:32 +00:00
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
public TreeIter AppendNode (TreeIter parent)
|
|
|
|
{
|
|
|
|
TreeIter iter;
|
|
|
|
gtk_tree_store_append (Handle, out iter, ref parent);
|
|
|
|
return iter;
|
2002-08-10 23:40:20 +00:00
|
|
|
}
|
|
|
|
|
2005-03-29 21:12:32 +00:00
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
|
|
static extern void gtk_tree_store_insert (IntPtr raw, out TreeIter iter, ref TreeIter parent, int position);
|
|
|
|
|
2003-02-22 04:34:56 +00:00
|
|
|
[DllImport ("libgtk-win32-2.0-0.dll")]
|
2005-03-29 21:12:32 +00:00
|
|
|
static extern void gtk_tree_store_insert (IntPtr raw, out TreeIter iter, IntPtr parent, int position);
|
2002-08-10 23:40:20 +00:00
|
|
|
|
2005-03-29 21:12:32 +00:00
|
|
|
[Obsolete ("Replaced by InsertNode")]
|
|
|
|
public TreeIter Insert (TreeIter parent, int position)
|
|
|
|
{
|
|
|
|
TreeIter iter;
|
|
|
|
gtk_tree_store_insert (Handle, out iter, ref parent, position);
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
[Obsolete ("Replaced by InsertNode")]
|
|
|
|
public void Insert (out TreeIter iter, int position)
|
|
|
|
{
|
2002-08-10 23:40:20 +00:00
|
|
|
gtk_tree_store_insert (Handle, out iter, IntPtr.Zero, position);
|
|
|
|
}
|
|
|
|
|
2005-03-29 21:12:32 +00:00
|
|
|
public TreeIter InsertNode (TreeIter parent, int position)
|
|
|
|
{
|
|
|
|
TreeIter iter;
|
|
|
|
gtk_tree_store_insert (Handle, out iter, ref parent, position);
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
public TreeIter InsertNode (int position)
|
|
|
|
{
|
|
|
|
TreeIter iter;
|
|
|
|
gtk_tree_store_insert (Handle, out iter, IntPtr.Zero, position);
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
|
|
static extern void gtk_tree_store_prepend (IntPtr raw, out TreeIter iter, ref TreeIter parent);
|
|
|
|
|
2003-02-22 04:34:56 +00:00
|
|
|
[DllImport ("libgtk-win32-2.0-0.dll")]
|
2005-03-29 21:12:32 +00:00
|
|
|
static extern void gtk_tree_store_prepend (IntPtr raw, out TreeIter iter, IntPtr parent);
|
2002-08-10 23:40:20 +00:00
|
|
|
|
2005-03-29 21:12:32 +00:00
|
|
|
[Obsolete ("Replaced by PrependNode")]
|
|
|
|
public TreeIter Prepend(TreeIter parent)
|
|
|
|
{
|
|
|
|
TreeIter iter;
|
|
|
|
gtk_tree_store_prepend (Handle, out iter, ref parent);
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
[Obsolete ("Replaced by PrependNode")]
|
|
|
|
public void Prepend (out TreeIter iter)
|
|
|
|
{
|
2002-08-10 23:40:20 +00:00
|
|
|
gtk_tree_store_append (Handle, out iter, IntPtr.Zero);
|
|
|
|
}
|
|
|
|
|
2005-03-29 21:12:32 +00:00
|
|
|
public TreeIter PrependNode (TreeIter parent)
|
|
|
|
{
|
|
|
|
TreeIter iter;
|
|
|
|
gtk_tree_store_prepend (Handle, out iter, ref parent);
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
public TreeIter PrependNode ()
|
|
|
|
{
|
|
|
|
TreeIter iter;
|
|
|
|
gtk_tree_store_prepend (Handle, out iter, IntPtr.Zero);
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
|
|
static extern void gtk_tree_store_insert_before (IntPtr raw, out TreeIter iter, ref TreeIter parent, ref TreeIter sibling);
|
|
|
|
|
2003-02-22 04:34:56 +00:00
|
|
|
[DllImport ("libgtk-win32-2.0-0.dll")]
|
2005-03-29 21:12:32 +00:00
|
|
|
static extern void gtk_tree_store_insert_before (IntPtr raw, out TreeIter iter, IntPtr parent, ref TreeIter sibling);
|
2002-08-10 23:40:20 +00:00
|
|
|
|
2005-03-29 21:12:32 +00:00
|
|
|
[Obsolete ("Replaced by InsertNodeBefore")]
|
|
|
|
public TreeIter InsertBefore (TreeIter parent, TreeIter sibling)
|
|
|
|
{
|
|
|
|
TreeIter iter;
|
|
|
|
gtk_tree_store_insert_before (Handle, out iter, ref parent, ref sibling);
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
[Obsolete ("Replaced by InsertNodeBefore")]
|
|
|
|
public void InsertBefore (out TreeIter iter, TreeIter sibling)
|
|
|
|
{
|
2002-08-10 23:40:20 +00:00
|
|
|
gtk_tree_store_insert_before (Handle, out iter, IntPtr.Zero, ref sibling);
|
|
|
|
}
|
|
|
|
|
2005-03-29 21:12:32 +00:00
|
|
|
public TreeIter InsertNodeBefore (TreeIter sibling)
|
|
|
|
{
|
|
|
|
TreeIter iter;
|
|
|
|
gtk_tree_store_insert_before (Handle, out iter, IntPtr.Zero, ref sibling);
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
public TreeIter InsertNodeBefore (TreeIter parent, TreeIter sibling)
|
|
|
|
{
|
|
|
|
TreeIter iter;
|
|
|
|
gtk_tree_store_insert_before (Handle, out iter, ref parent, ref sibling);
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
|
|
static extern void gtk_tree_store_insert_after (IntPtr raw, out TreeIter iter, ref TreeIter parent, ref TreeIter sibling);
|
|
|
|
|
2003-02-22 04:34:56 +00:00
|
|
|
[DllImport ("libgtk-win32-2.0-0.dll")]
|
2005-03-29 21:12:32 +00:00
|
|
|
static extern void gtk_tree_store_insert_after (IntPtr raw, out TreeIter iter, IntPtr parent, ref TreeIter sibling);
|
|
|
|
|
|
|
|
[Obsolete ("Replaced by InsertNodeAfter")]
|
|
|
|
public TreeIter InsertAfter (TreeIter parent, TreeIter sibling)
|
|
|
|
{
|
|
|
|
TreeIter iter;
|
|
|
|
gtk_tree_store_insert_after (Handle, out iter, ref parent, ref sibling);
|
|
|
|
return iter;
|
|
|
|
}
|
2002-08-10 23:40:20 +00:00
|
|
|
|
2005-03-29 21:12:32 +00:00
|
|
|
[Obsolete ("Replaced by InsertNodeAfter")]
|
|
|
|
public void InsertAfter (out TreeIter iter, TreeIter sibling)
|
|
|
|
{
|
2002-08-10 23:40:20 +00:00
|
|
|
gtk_tree_store_insert_after (Handle, out iter, IntPtr.Zero, ref sibling);
|
|
|
|
}
|
|
|
|
|
2005-03-29 21:12:32 +00:00
|
|
|
public TreeIter InsertNodeAfter (TreeIter sibling)
|
|
|
|
{
|
|
|
|
TreeIter iter;
|
|
|
|
gtk_tree_store_insert_after (Handle, out iter, IntPtr.Zero, ref sibling);
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
public TreeIter InsertNodeAfter (TreeIter parent, TreeIter sibling)
|
|
|
|
{
|
|
|
|
TreeIter iter;
|
|
|
|
gtk_tree_store_insert_after (Handle, out iter, ref parent, ref sibling);
|
|
|
|
return iter;
|
|
|
|
}
|
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;
|
|
|
|
}
|
2002-11-22 03:30:18 +00:00
|
|
|
|
2004-12-18 06:01:09 +00:00
|
|
|
public void SetValue (Gtk.TreeIter iter, int column, bool value)
|
|
|
|
{
|
|
|
|
GLib.Value val = new GLib.Value (value);
|
|
|
|
SetValue (iter, column, val);
|
|
|
|
val.Dispose ();
|
2003-05-19 07:18:52 +00:00
|
|
|
}
|
|
|
|
|
2004-12-18 06:01:09 +00:00
|
|
|
public void SetValue (Gtk.TreeIter iter, int column, double value)
|
|
|
|
{
|
|
|
|
GLib.Value val = new GLib.Value (value);
|
|
|
|
SetValue (iter, column, val);
|
|
|
|
val.Dispose ();
|
2003-05-19 07:18:52 +00:00
|
|
|
}
|
|
|
|
|
2004-12-18 06:01:09 +00:00
|
|
|
public void SetValue (Gtk.TreeIter iter, int column, int value)
|
|
|
|
{
|
|
|
|
GLib.Value val = new GLib.Value (value);
|
|
|
|
SetValue (iter, column, val);
|
|
|
|
val.Dispose ();
|
2003-05-19 07:18:52 +00:00
|
|
|
}
|
|
|
|
|
2004-12-18 06:01:09 +00:00
|
|
|
public void SetValue (Gtk.TreeIter iter, int column, string value)
|
|
|
|
{
|
|
|
|
GLib.Value val = new GLib.Value (value);
|
|
|
|
SetValue (iter, column, val);
|
|
|
|
val.Dispose ();
|
2003-05-19 07:18:52 +00:00
|
|
|
}
|
|
|
|
|
2004-12-18 06:01:09 +00:00
|
|
|
public void SetValue (Gtk.TreeIter iter, int column, float value)
|
|
|
|
{
|
|
|
|
GLib.Value val = new GLib.Value (value);
|
|
|
|
SetValue (iter, column, val);
|
|
|
|
val.Dispose ();
|
2003-05-19 07:18:52 +00:00
|
|
|
}
|
|
|
|
|
2004-12-18 06:01:09 +00:00
|
|
|
public void SetValue (Gtk.TreeIter iter, int column, uint value)
|
|
|
|
{
|
|
|
|
GLib.Value val = new GLib.Value (value);
|
|
|
|
SetValue (iter, column, val);
|
|
|
|
val.Dispose ();
|
2003-05-19 07:18:52 +00:00
|
|
|
}
|
|
|
|
|
2004-12-18 06:01:09 +00:00
|
|
|
public void SetValue (Gtk.TreeIter iter, int column, object value)
|
|
|
|
{
|
|
|
|
GLib.Value val = new GLib.Value (value);
|
|
|
|
SetValue (iter, column, val);
|
|
|
|
val.Dispose ();
|
2003-05-19 07:18:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void _AppendValues (Gtk.TreeIter iter, Array values) {
|
|
|
|
int col = 0;
|
|
|
|
foreach (object value in values) {
|
|
|
|
if (value != null)
|
2004-12-18 06:01:09 +00:00
|
|
|
SetValue (iter, col, value);
|
2003-05-19 07:18:52 +00:00
|
|
|
col++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public Gtk.TreeIter AppendValues (Gtk.TreeIter parent, Array values) {
|
2005-03-29 21:12:32 +00:00
|
|
|
Gtk.TreeIter iter = AppendNode (parent);
|
2003-05-19 07:18:52 +00:00
|
|
|
_AppendValues (iter, values);
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Gtk.TreeIter AppendValues (Gtk.TreeIter parent, params object[] values) {
|
|
|
|
return AppendValues (parent, (Array) values);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Gtk.TreeIter AppendValues (Array values) {
|
2005-03-29 21:12:32 +00:00
|
|
|
Gtk.TreeIter iter = AppendNode ();
|
2003-05-19 07:18:52 +00:00
|
|
|
_AppendValues (iter, values);
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Gtk.TreeIter AppendValues (params object[] values) {
|
|
|
|
return AppendValues ((Array) values);
|
|
|
|
}
|
|
|
|
|
2004-05-07 19:33:09 +00:00
|
|
|
public TreeStore (params GLib.GType[] types) : base (IntPtr.Zero)
|
2003-05-19 07:18:52 +00:00
|
|
|
{
|
2004-05-07 19:33:09 +00:00
|
|
|
CreateNativeObject (new string [0], new GLib.Value [0]);
|
* generator/Parameters.cs (IsHidden): method to check if a
parameter should be hidden in the managed sig (eg, because it's
user_data, or it's the length of the preceding array/string, etc).
(VisibleCount): the number of parameters that will actually be
exposed in the managed signature.
(IsAccessor): test VisibleCount, not Count
(AccessorReturnType, AccessorName): deal with the fact that the
accessor parameter might not be the first one.
* generator/CallbackGen.cs:
* generator/Signature.cs: use Parameters.IsHidden.
* generator/Method.cs (Initialize): set is_set based on
VisibleCount, not Count.
(Validate): call base.Validate() before Initialize() so that
VisibleCount will be correct in Initialize.
* generator/MethodBody.cs (GetCallString, CallArrayLength,
Initialize): update to deal with accessors with multiple args.
* gtk/Clipboard.custom (SetText): implement as an Obsolete variant
of the Text property
* gtk/IconTheme.custom (SearchPath, SetSearchPath): obsolete
SetSearchPath, implement a setter on SearchPath instead.
* gtk/ListStore.custom (SetColumnTypes):
* gtk/TreeStore.custom (SetColumnTypes): implement as an Obsolete
variant of the ColumnTypes property.
* glade/XML.custom (CustomHandler): implement as a property
(SetCustomHandler): Mark this obsolete
* glade/Global.custom (SetCustomHandler): deprecate in favor of
XML.CustomHandler.
* gnomedb/Editor.custom (SetText): implement as an Obsolete
variant of the Text property
svn path=/trunk/gtk-sharp/; revision=43898
2005-05-02 20:10:03 +00:00
|
|
|
ColumnTypes = types;
|
2004-05-07 19:33:09 +00:00
|
|
|
}
|
2004-04-07 19:15:01 +00:00
|
|
|
|
2004-05-07 19:33:09 +00:00
|
|
|
public TreeStore (params Type[] types) : base (IntPtr.Zero)
|
|
|
|
{
|
|
|
|
GLib.GType[] gtypes = new GLib.GType[types.Length];
|
2003-05-19 07:18:52 +00:00
|
|
|
int i = 0;
|
|
|
|
foreach (Type type in types) {
|
2005-05-04 16:54:24 +00:00
|
|
|
gtypes[i] = (GLib.GType) type;
|
2003-05-19 07:18:52 +00:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2004-05-07 19:33:09 +00:00
|
|
|
CreateNativeObject (new string [0], new GLib.Value [0]);
|
* generator/Parameters.cs (IsHidden): method to check if a
parameter should be hidden in the managed sig (eg, because it's
user_data, or it's the length of the preceding array/string, etc).
(VisibleCount): the number of parameters that will actually be
exposed in the managed signature.
(IsAccessor): test VisibleCount, not Count
(AccessorReturnType, AccessorName): deal with the fact that the
accessor parameter might not be the first one.
* generator/CallbackGen.cs:
* generator/Signature.cs: use Parameters.IsHidden.
* generator/Method.cs (Initialize): set is_set based on
VisibleCount, not Count.
(Validate): call base.Validate() before Initialize() so that
VisibleCount will be correct in Initialize.
* generator/MethodBody.cs (GetCallString, CallArrayLength,
Initialize): update to deal with accessors with multiple args.
* gtk/Clipboard.custom (SetText): implement as an Obsolete variant
of the Text property
* gtk/IconTheme.custom (SearchPath, SetSearchPath): obsolete
SetSearchPath, implement a setter on SearchPath instead.
* gtk/ListStore.custom (SetColumnTypes):
* gtk/TreeStore.custom (SetColumnTypes): implement as an Obsolete
variant of the ColumnTypes property.
* glade/XML.custom (CustomHandler): implement as a property
(SetCustomHandler): Mark this obsolete
* glade/Global.custom (SetCustomHandler): deprecate in favor of
XML.CustomHandler.
* gnomedb/Editor.custom (SetText): implement as an Obsolete
variant of the Text property
svn path=/trunk/gtk-sharp/; revision=43898
2005-05-02 20:10:03 +00:00
|
|
|
ColumnTypes = gtypes;
|
|
|
|
}
|
|
|
|
|
|
|
|
[Obsolete ("Replaced by ColumnTypes property.")]
|
|
|
|
public void SetColumnTypes (GLib.GType[] types)
|
|
|
|
{
|
|
|
|
ColumnTypes = types;
|
2003-05-19 07:18:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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-05-19 07:18:52 +00:00
|
|
|
object ret = val.Val;
|
|
|
|
val.Dispose ();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
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-04-05 14:48:49 +00:00
|
|
|
}
|