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.
|
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
|
|
|
|
2008-06-29 04:18:26 +00:00
|
|
|
[Obsolete ("Replaced by Reorder (int[]) overload")]
|
|
|
|
public int Reorder ()
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
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);
|
2004-12-18 06:01:09 +00:00
|
|
|
public bool IterChildren (out Gtk.TreeIter iter)
|
|
|
|
{
|
2002-08-10 23:40:20 +00:00
|
|
|
bool raw_ret = gtk_tree_model_iter_children (Handle, out iter, IntPtr.Zero);
|
|
|
|
bool ret = raw_ret;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2004-12-18 06:01:09 +00:00
|
|
|
public int IterNChildren ()
|
|
|
|
{
|
2002-08-10 23:40:20 +00:00
|
|
|
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);
|
2004-12-18 06:01:09 +00:00
|
|
|
public bool IterNthChild (out Gtk.TreeIter iter, int n)
|
|
|
|
{
|
2002-08-10 23:40:20 +00:00
|
|
|
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)
|
|
|
|
{
|
2003-05-19 07:18:52 +00:00
|
|
|
GLib.Value val = new GLib.Value (value);
|
|
|
|
SetValue (iter, column, val);
|
|
|
|
val.Dispose ();
|
|
|
|
}
|
|
|
|
|
2004-12-18 06:01:09 +00:00
|
|
|
public Gtk.TreeIter AppendValues (Array values)
|
|
|
|
{
|
2004-01-15 21:18:46 +00:00
|
|
|
Gtk.TreeIter iter = Append();
|
2003-05-19 07:18:52 +00:00
|
|
|
|
|
|
|
int col = 0;
|
|
|
|
foreach (object value in values) {
|
|
|
|
if (value != null) {
|
|
|
|
GLib.Value val = new GLib.Value (value);
|
|
|
|
SetValue (iter, col, val);
|
|
|
|
val.Dispose ();
|
|
|
|
}
|
|
|
|
col++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
2004-12-18 06:01:09 +00:00
|
|
|
public Gtk.TreeIter AppendValues (params object[] values)
|
|
|
|
{
|
2003-05-19 07:18:52 +00:00
|
|
|
return AppendValues ((Array) values);
|
|
|
|
}
|
|
|
|
|
2007-11-16 16:32:44 +00:00
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
|
|
static extern void gtk_list_store_insert_with_valuesv(IntPtr raw, out TreeIter iter, int position, int[] columns, GLib.Value[] values, int n_values);
|
|
|
|
|
|
|
|
public TreeIter InsertWithValues (int position, params object[] values)
|
|
|
|
{
|
|
|
|
int[] columns = new int[values.Length];
|
|
|
|
GLib.Value[] vals = new GLib.Value[values.Length];
|
|
|
|
int n_values = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < values.Length; i++) {
|
|
|
|
if (values[i] != null) {
|
|
|
|
columns[n_values] = i;
|
|
|
|
vals[n_values] = new GLib.Value (values[i]);
|
|
|
|
n_values++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TreeIter iter;
|
|
|
|
gtk_list_store_insert_with_valuesv (Handle, out iter, position, columns, vals, n_values);
|
|
|
|
|
|
|
|
for (int i = 0; i < n_values; i++)
|
|
|
|
vals[i].Dispose ();
|
|
|
|
|
|
|
|
return iter;
|
|
|
|
}
|
|
|
|
|
2007-12-06 17:23:28 +00:00
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
|
|
static extern void gtk_list_store_set_valuesv(IntPtr raw, ref TreeIter iter, int[] columns, GLib.Value[] values, int n_values);
|
|
|
|
|
|
|
|
public void SetValues (TreeIter iter, params object[] values)
|
|
|
|
{
|
|
|
|
int[] columns = new int[values.Length];
|
|
|
|
GLib.Value[] vals = new GLib.Value[values.Length];
|
|
|
|
int n_values = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < values.Length; i++) {
|
|
|
|
if (values[i] != null) {
|
|
|
|
columns[n_values] = i;
|
|
|
|
vals[n_values] = new GLib.Value (values[i]);
|
|
|
|
n_values++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_list_store_set_valuesv (Handle, ref iter, columns, vals, n_values);
|
|
|
|
|
|
|
|
for (int i = 0; i < n_values; i++)
|
|
|
|
vals[i].Dispose ();
|
|
|
|
}
|
|
|
|
|
2004-05-07 19:33:09 +00:00
|
|
|
public ListStore (params GLib.GType[] types) : base (IntPtr.Zero)
|
|
|
|
{
|
|
|
|
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
|
|
|
public ListStore (params Type[] types) : base (IntPtr.Zero)
|
2003-05-19 07:18:52 +00:00
|
|
|
{
|
2004-05-07 19:33:09 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2004-12-18 06:01:09 +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.")]
|
2005-03-15 17:30:59 +00:00
|
|
|
public void SetSortFunc (int sort_column_id, TreeIterCompareFunc sort_func, IntPtr user_data, Gtk.DestroyNotify destroy)
|
2005-04-05 14:48:49 +00:00
|
|
|
{
|
|
|
|
SetSortFunc (sort_column_id, sort_func);
|
|
|
|
}
|
|
|
|
|
2005-05-04 11:47:25 +00:00
|
|
|
[Obsolete ("Replaced by DefaultSortFunc property.")]
|
2005-03-12 22:19:44 +00:00
|
|
|
public void SetDefaultSortFunc (TreeIterCompareFunc sort_func, IntPtr user_data, Gtk.DestroyNotify destroy)
|
2005-04-05 14:48:49 +00:00
|
|
|
{
|
2005-05-04 11:47:25 +00:00
|
|
|
DefaultSortFunc = sort_func;
|
2005-04-05 14:48:49 +00:00
|
|
|
}
|
2005-05-11 19:41:45 +00:00
|
|
|
|
|
|
|
public IEnumerator GetEnumerator()
|
|
|
|
{
|
|
|
|
return new TreeEnumerator(this);
|
|
|
|
}
|
|
|
|
|
2007-04-17 17:42:58 +00:00
|
|
|
[GLib.CDeclCallback]
|
|
|
|
delegate void RowsReorderedSignalDelegate (IntPtr arg0, IntPtr arg1, IntPtr arg2, IntPtr arg3, IntPtr gch);
|
|
|
|
|
|
|
|
static void RowsReorderedSignalCallback (IntPtr arg0, IntPtr arg1, IntPtr arg2, IntPtr arg3, IntPtr gch)
|
|
|
|
{
|
|
|
|
Gtk.RowsReorderedArgs args = new Gtk.RowsReorderedArgs ();
|
|
|
|
try {
|
|
|
|
GLib.Signal sig = ((GCHandle) gch).Target as GLib.Signal;
|
|
|
|
if (sig == null)
|
|
|
|
throw new Exception("Unknown signal GC handle received " + gch);
|
|
|
|
|
|
|
|
ListStore sender = GLib.Object.GetObject (arg0) as ListStore;
|
|
|
|
args.Args = new object[3];
|
|
|
|
args.Args[0] = arg1 == IntPtr.Zero ? null : (Gtk.TreePath) GLib.Opaque.GetOpaque (arg1, typeof (Gtk.TreePath), false);
|
|
|
|
args.Args[1] = Gtk.TreeIter.New (arg2);
|
|
|
|
int child_cnt = sender.IterNChildren ();
|
|
|
|
int[] new_order = new int [child_cnt];
|
|
|
|
Marshal.Copy (arg3, new_order, 0, child_cnt);
|
|
|
|
args.Args[2] = new_order;
|
|
|
|
Gtk.RowsReorderedHandler handler = (Gtk.RowsReorderedHandler) sig.Handler;
|
|
|
|
handler (sender, args);
|
|
|
|
} catch (Exception e) {
|
|
|
|
GLib.ExceptionManager.RaiseUnhandledException (e, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[GLib.CDeclCallback]
|
|
|
|
delegate void RowsReorderedVMDelegate (IntPtr tree_model, IntPtr path, IntPtr iter, IntPtr new_order);
|
|
|
|
|
|
|
|
static RowsReorderedVMDelegate RowsReorderedVMCallback;
|
|
|
|
|
|
|
|
static void rowsreordered_cb (IntPtr tree_model, IntPtr path_ptr, IntPtr iter_ptr, IntPtr new_order)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
ListStore store = GLib.Object.GetObject (tree_model, false) as ListStore;
|
|
|
|
TreePath path = GLib.Opaque.GetOpaque (path_ptr, typeof (TreePath), false) as TreePath;
|
|
|
|
TreeIter iter = TreeIter.New (iter_ptr);
|
|
|
|
int child_cnt = store.IterNChildren ();
|
|
|
|
int[] child_order = new int [child_cnt];
|
|
|
|
Marshal.Copy (new_order, child_order, 0, child_cnt);
|
|
|
|
store.OnRowsReordered (path, iter, child_order);
|
|
|
|
} catch (Exception e) {
|
|
|
|
GLib.ExceptionManager.RaiseUnhandledException (e, true);
|
|
|
|
// NOTREACHED: above call doesn't return
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void OverrideRowsReordered (GLib.GType gtype)
|
|
|
|
{
|
|
|
|
if (RowsReorderedVMCallback == null)
|
|
|
|
RowsReorderedVMCallback = new RowsReorderedVMDelegate (rowsreordered_cb);
|
|
|
|
OverrideVirtualMethod (gtype, "rows_reordered", RowsReorderedVMCallback);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Obsolete ("Replaced by int[] new_order overload.")]
|
|
|
|
[GLib.DefaultSignalHandler(Type=typeof(Gtk.ListStore), ConnectionMethod="OverrideRowsReordered")]
|
|
|
|
protected virtual void OnRowsReordered (Gtk.TreePath path, Gtk.TreeIter iter, out int new_order)
|
|
|
|
{
|
|
|
|
new_order = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
[GLib.DefaultSignalHandler(Type=typeof(Gtk.ListStore), ConnectionMethod="OverrideRowsReordered")]
|
|
|
|
protected virtual void OnRowsReordered (Gtk.TreePath path, Gtk.TreeIter iter, int[] new_order)
|
|
|
|
{
|
|
|
|
int dummy;
|
|
|
|
OnRowsReordered (path, iter, out dummy);
|
|
|
|
GLib.Value ret = GLib.Value.Empty;
|
|
|
|
GLib.ValueArray inst_and_params = new GLib.ValueArray (4);
|
|
|
|
GLib.Value[] vals = new GLib.Value [4];
|
|
|
|
vals [0] = new GLib.Value (this);
|
|
|
|
inst_and_params.Append (vals [0]);
|
|
|
|
vals [1] = new GLib.Value (path);
|
|
|
|
inst_and_params.Append (vals [1]);
|
|
|
|
vals [2] = new GLib.Value (iter);
|
|
|
|
inst_and_params.Append (vals [2]);
|
|
|
|
int cnt = IterNChildren ();
|
|
|
|
IntPtr new_order_ptr = Marshal.AllocHGlobal (Marshal.SizeOf (typeof (int)) * cnt);
|
|
|
|
Marshal.Copy (new_order, 0, new_order_ptr, cnt);
|
|
|
|
vals [3] = new GLib.Value (new_order_ptr);
|
|
|
|
inst_and_params.Append (vals [3]);
|
|
|
|
g_signal_chain_from_overridden (inst_and_params.ArrayPtr, ref ret);
|
|
|
|
Marshal.FreeHGlobal (new_order_ptr);
|
|
|
|
|
|
|
|
foreach (GLib.Value v in vals)
|
|
|
|
v.Dispose ();
|
|
|
|
}
|
|
|
|
|
|
|
|
[GLib.Signal("rows_reordered")]
|
|
|
|
public event Gtk.RowsReorderedHandler RowsReordered {
|
|
|
|
add {
|
|
|
|
GLib.Signal sig = GLib.Signal.Lookup (this, "rows_reordered", new RowsReorderedSignalDelegate(RowsReorderedSignalCallback));
|
|
|
|
sig.AddDelegate (value);
|
|
|
|
}
|
|
|
|
remove {
|
|
|
|
GLib.Signal sig = GLib.Signal.Lookup (this, "rows_reordered", new RowsReorderedSignalDelegate(RowsReorderedSignalCallback));
|
|
|
|
sig.RemoveDelegate (value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|