2000-10-05 01:04:57 +00:00
|
|
|
/* gtkliststore.c
|
|
|
|
* Copyright (C) 2000 Red Hat, Inc., Jonathan Blandford <jrb@redhat.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include "gtktreemodel.h"
|
|
|
|
#include "gtkliststore.h"
|
|
|
|
#include "gtktreedatalist.h"
|
2000-10-16 23:11:55 +00:00
|
|
|
#include "gtksignal.h"
|
2001-01-08 18:26:05 +00:00
|
|
|
#include <gobject/gvaluecollector.h>
|
2000-10-05 01:04:57 +00:00
|
|
|
|
|
|
|
#define G_SLIST(x) ((GSList *) x)
|
2000-10-27 23:34:58 +00:00
|
|
|
|
2000-10-16 23:11:55 +00:00
|
|
|
enum {
|
2000-10-26 00:36:47 +00:00
|
|
|
CHANGED,
|
|
|
|
INSERTED,
|
|
|
|
CHILD_TOGGLED,
|
|
|
|
DELETED,
|
2000-10-16 23:11:55 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
static guint list_store_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
static void gtk_list_store_init (GtkListStore *list_store);
|
|
|
|
static void gtk_list_store_class_init (GtkListStoreClass *class);
|
|
|
|
static void gtk_list_store_tree_model_init (GtkTreeModelIface *iface);
|
2000-11-09 16:52:17 +00:00
|
|
|
static guint gtk_list_store_get_flags (GtkTreeModel *tree_model);
|
2000-10-27 23:34:58 +00:00
|
|
|
static gint gtk_list_store_get_n_columns (GtkTreeModel *tree_model);
|
2000-11-10 19:38:53 +00:00
|
|
|
static GType gtk_list_store_get_column_type (GtkTreeModel *tree_model,
|
|
|
|
gint index);
|
2000-10-27 23:34:58 +00:00
|
|
|
static gboolean gtk_list_store_get_iter (GtkTreeModel *tree_model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
GtkTreePath *path);
|
|
|
|
static GtkTreePath *gtk_list_store_get_path (GtkTreeModel *tree_model,
|
|
|
|
GtkTreeIter *iter);
|
|
|
|
static void gtk_list_store_get_value (GtkTreeModel *tree_model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
gint column,
|
|
|
|
GValue *value);
|
|
|
|
static gboolean gtk_list_store_iter_next (GtkTreeModel *tree_model,
|
|
|
|
GtkTreeIter *iter);
|
|
|
|
static gboolean gtk_list_store_iter_children (GtkTreeModel *tree_model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
GtkTreeIter *parent);
|
|
|
|
static gboolean gtk_list_store_iter_has_child (GtkTreeModel *tree_model,
|
|
|
|
GtkTreeIter *iter);
|
|
|
|
static gint gtk_list_store_iter_n_children (GtkTreeModel *tree_model,
|
|
|
|
GtkTreeIter *iter);
|
|
|
|
static gboolean gtk_list_store_iter_nth_child (GtkTreeModel *tree_model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
GtkTreeIter *parent,
|
|
|
|
gint n);
|
|
|
|
static gboolean gtk_list_store_iter_parent (GtkTreeModel *tree_model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
GtkTreeIter *child);
|
2000-10-05 01:04:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
GtkType
|
|
|
|
gtk_list_store_get_type (void)
|
|
|
|
{
|
|
|
|
static GtkType list_store_type = 0;
|
|
|
|
|
|
|
|
if (!list_store_type)
|
|
|
|
{
|
|
|
|
static const GTypeInfo list_store_info =
|
|
|
|
{
|
|
|
|
sizeof (GtkListStoreClass),
|
|
|
|
NULL, /* base_init */
|
|
|
|
NULL, /* base_finalize */
|
|
|
|
(GClassInitFunc) gtk_list_store_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (GtkListStore),
|
|
|
|
0,
|
|
|
|
(GInstanceInitFunc) gtk_list_store_init,
|
|
|
|
};
|
|
|
|
|
2000-10-16 23:11:55 +00:00
|
|
|
static const GInterfaceInfo tree_model_info =
|
|
|
|
{
|
|
|
|
(GInterfaceInitFunc) gtk_list_store_tree_model_init,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
urg, removed implementation of gtk_marshal_VOID__INT_INT_INT_INT. if
Wed Oct 25 20:47:41 2000 Tim Janik <timj@gtk.org>
* gtk/gdk-pixbuf-loader.c (gdk_pixbuf_loader_class_init): urg, removed
implementation of gtk_marshal_VOID__INT_INT_INT_INT. if people do that,
couldn't they at least give it a non-standard name?
* gtk/gtktextlayout.c: arg! yet another implementation of
gtk_marshal_VOID__INT_INT_INT_INT(), is this a conspiracy?
* gtk/gtktextbuffer.c: gotcha! captured a vagabonding
gtk_marshal_VOID__INT_POINTER_INT() implementation, braught it back
home. now i know this _is_ a conspiracy.
* gtk/gtkwidget.c (gtk_widget_class_init): marshaller fixups for
::state-changed.
* gtk/gtkaccelgroup.c (gtk_accel_group_create_remove):
(gtk_accel_group_create_add): marshaller signature fixups.
* gtk/gtklistitem.c (gtk_list_item_class_init): signal creation fixups,
pass in GTK_TYPE_SCROLL_TYPE instead of GTK_TYPE_ENUM.
* gtk/gtkobject.[hc]: removed GTK_CONNECTED flag, it's not valid
anymore.
Tue Oct 24 23:59:21 2000 Tim Janik <timj@gtk.org>
* docs/reference/Makefile.am: disabled SUBDIRS for the moment, since
due to the signal system changes, it wouldn't build currently. to
be fixed soon.
* docs/Changes-2.0.txt: GtkSignal/GSignal updates.
* gtk/gtkwidget.c: ::direction_changed takes an enum as argument,
so it needs gtk_marshal_VOID__ENUM() instead of
gtk_marshal_NONE__UINT().
* gdk/gdk*.c: adapted type registration functions.
* gtk/gtkbindings.c:
* gtk/gtkaccelgroup.c: operate on GSignalQuery, GtkSignalQuery is
gone.
* gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType.
* gtk/gtkobject.c:
(gtk_object_destroy):
(gtk_object_shutdown): fixed recursion guards. basically we have to
catch the case where any of GObject.shutdown() or gtk_object_destroy()
is called during ::destroy, and avoid recursion there.
* gtk/gtktypeutils.c:
* gtk/maketypes.awk: awk-script hackup to provide gtk_type_init() with
boxed_copy/boxed_free. this needs a more general solution based on a
publically installed code-generator utility.
* gtk/gtktypeutils.[hc]: compat aliased GTK_TYPE_BOXED to G_TYPE_BOXED,
glib's gobject has support for that now.
define GtkSignalMarshaller in terms of GSignalCMarshaller.
Mon Oct 23 09:36:42 2000 Tim Janik <timj@gtk.org>
* gtk/gtksignal.[hc]:
* gtk/gtkmarshal.[hc]:
* gtk/Makefile.am: generate marshallers with glib-genmarshal and don't
compile gtkmarshal.c on its own anymore, just include it in gtksignal.c.
removed #include <gtkmarshal.h>s all over the place, gtksignal.h takes
care of that.
* *.c: marshaller name fixups.
* gtk/gtkmarshal.list: added a comment briefing the format.
Sun Oct 22 23:14:39 2000 Tim Janik <timj@gtk.org>
* gtk/gtksignal.[hc]: nuked old implementation. we mostly have
compatibility macros here now. more specifically, most of
the API is preserved (yes, _most_, nonwithstanding the
following exceptions listed, the API is stil lHUGE ;)
things that got removed completely:
GtkSignalQuery, gtk_signal_query(), gtk_signal_n_emissions(),
gtk_signal_n_emissions_by_name(), gtk_signal_handlers_destroy(),
gtk_signal_set_funcs(), gtk_signal_handler_pending_by_id(),
gtk_signal_add_emission_hook(), gtk_signal_add_emission_hook_full(),
gtk_signal_remove_emission_hook().
non-functional functions variants:
gtk_signal_add_emission_hook(), gtk_signal_remove_emission_hook().
the GtkCallbackMarshal argument to gtk_signal_connect_full() is
not supported anymore.
(gtk_signal_compat_matched): new internal function to aid
implementation of the compatibility macros, it provides
functionality to block/unblock/disconnect handlers based
on func/data.
* gtk/gtkenums.h: define GtkSignalRunType in terms of GSignalType,
* *.c: adaptions to new type registration API signatures.
Fri Oct 20 15:26:33 2000 Tim Janik <timj@gtk.org>
* gtk/gtktypeutils.[hc]: removed G_TYPE_GTK_POINTER cludge.
2000-10-25 22:34:14 +00:00
|
|
|
list_store_type = g_type_register_static (GTK_TYPE_OBJECT, "GtkListStore", &list_store_info, 0);
|
2000-10-16 23:11:55 +00:00
|
|
|
g_type_add_interface_static (list_store_type,
|
|
|
|
GTK_TYPE_TREE_MODEL,
|
|
|
|
&tree_model_info);
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return list_store_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_list_store_class_init (GtkListStoreClass *class)
|
|
|
|
{
|
|
|
|
GtkObjectClass *object_class;
|
|
|
|
|
|
|
|
object_class = (GtkObjectClass*) class;
|
2000-10-16 23:11:55 +00:00
|
|
|
|
2000-10-26 00:36:47 +00:00
|
|
|
list_store_signals[CHANGED] =
|
|
|
|
gtk_signal_new ("changed",
|
2000-10-16 23:11:55 +00:00
|
|
|
GTK_RUN_FIRST,
|
|
|
|
GTK_CLASS_TYPE (object_class),
|
2000-10-26 00:36:47 +00:00
|
|
|
GTK_SIGNAL_OFFSET (GtkListStoreClass, changed),
|
2000-11-10 19:38:53 +00:00
|
|
|
gtk_marshal_VOID__BOXED_BOXED,
|
|
|
|
G_TYPE_NONE, 2,
|
|
|
|
GTK_TYPE_TREE_PATH,
|
|
|
|
GTK_TYPE_TREE_ITER);
|
2000-10-26 00:36:47 +00:00
|
|
|
list_store_signals[INSERTED] =
|
|
|
|
gtk_signal_new ("inserted",
|
2000-10-16 23:11:55 +00:00
|
|
|
GTK_RUN_FIRST,
|
|
|
|
GTK_CLASS_TYPE (object_class),
|
2000-10-26 00:36:47 +00:00
|
|
|
GTK_SIGNAL_OFFSET (GtkListStoreClass, inserted),
|
2000-11-10 19:38:53 +00:00
|
|
|
gtk_marshal_VOID__BOXED_BOXED,
|
|
|
|
G_TYPE_NONE, 2,
|
|
|
|
GTK_TYPE_TREE_PATH,
|
|
|
|
GTK_TYPE_TREE_ITER);
|
2000-10-26 00:36:47 +00:00
|
|
|
list_store_signals[CHILD_TOGGLED] =
|
|
|
|
gtk_signal_new ("child_toggled",
|
2000-10-16 23:11:55 +00:00
|
|
|
GTK_RUN_FIRST,
|
|
|
|
GTK_CLASS_TYPE (object_class),
|
2000-10-26 00:36:47 +00:00
|
|
|
GTK_SIGNAL_OFFSET (GtkListStoreClass, child_toggled),
|
2000-11-10 19:38:53 +00:00
|
|
|
gtk_marshal_VOID__BOXED_BOXED,
|
|
|
|
G_TYPE_NONE, 2,
|
|
|
|
GTK_TYPE_TREE_PATH,
|
|
|
|
GTK_TYPE_TREE_ITER);
|
2000-10-26 00:36:47 +00:00
|
|
|
list_store_signals[DELETED] =
|
|
|
|
gtk_signal_new ("deleted",
|
2000-10-16 23:11:55 +00:00
|
|
|
GTK_RUN_FIRST,
|
|
|
|
GTK_CLASS_TYPE (object_class),
|
2000-10-26 00:36:47 +00:00
|
|
|
GTK_SIGNAL_OFFSET (GtkListStoreClass, deleted),
|
2000-11-10 19:38:53 +00:00
|
|
|
gtk_marshal_VOID__BOXED,
|
|
|
|
G_TYPE_NONE, 1,
|
|
|
|
GTK_TYPE_TREE_PATH);
|
2000-10-16 23:11:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_list_store_tree_model_init (GtkTreeModelIface *iface)
|
|
|
|
{
|
2000-11-09 16:52:17 +00:00
|
|
|
iface->get_flags = gtk_list_store_get_flags;
|
2000-10-16 23:11:55 +00:00
|
|
|
iface->get_n_columns = gtk_list_store_get_n_columns;
|
2000-11-10 19:38:53 +00:00
|
|
|
iface->get_column_type = gtk_list_store_get_column_type;
|
2000-10-26 00:36:47 +00:00
|
|
|
iface->get_iter = gtk_list_store_get_iter;
|
2000-10-16 23:11:55 +00:00
|
|
|
iface->get_path = gtk_list_store_get_path;
|
2000-10-27 23:34:58 +00:00
|
|
|
iface->get_value = gtk_list_store_get_value;
|
2000-10-26 00:36:47 +00:00
|
|
|
iface->iter_next = gtk_list_store_iter_next;
|
|
|
|
iface->iter_children = gtk_list_store_iter_children;
|
|
|
|
iface->iter_has_child = gtk_list_store_iter_has_child;
|
|
|
|
iface->iter_n_children = gtk_list_store_iter_n_children;
|
|
|
|
iface->iter_nth_child = gtk_list_store_iter_nth_child;
|
|
|
|
iface->iter_parent = gtk_list_store_iter_parent;
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_list_store_init (GtkListStore *list_store)
|
|
|
|
{
|
|
|
|
list_store->root = NULL;
|
2000-11-09 16:52:17 +00:00
|
|
|
list_store->stamp = g_random_int ();
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
GtkListStore *
|
2000-10-05 01:04:57 +00:00
|
|
|
gtk_list_store_new (void)
|
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
return GTK_LIST_STORE (gtk_type_new (gtk_list_store_get_type ()));
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
GtkListStore *
|
2000-10-05 01:04:57 +00:00
|
|
|
gtk_list_store_new_with_types (gint n_columns,
|
|
|
|
...)
|
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
GtkListStore *retval;
|
2000-10-05 01:04:57 +00:00
|
|
|
va_list args;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
g_return_val_if_fail (n_columns > 0, NULL);
|
|
|
|
|
|
|
|
retval = gtk_list_store_new ();
|
2000-10-27 23:34:58 +00:00
|
|
|
gtk_list_store_set_n_columns (retval, n_columns);
|
2000-10-05 01:04:57 +00:00
|
|
|
|
|
|
|
va_start (args, n_columns);
|
2000-10-27 23:34:58 +00:00
|
|
|
|
2000-10-05 01:04:57 +00:00
|
|
|
for (i = 0; i < n_columns; i++)
|
2000-10-27 23:34:58 +00:00
|
|
|
gtk_list_store_set_column_type (retval, i, va_arg (args, GType));
|
2000-10-05 01:04:57 +00:00
|
|
|
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_list_store_set_n_columns (GtkListStore *list_store,
|
|
|
|
gint n_columns)
|
|
|
|
{
|
|
|
|
GType *new_columns;
|
|
|
|
|
|
|
|
g_return_if_fail (list_store != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_LIST_STORE (list_store));
|
2000-10-27 23:34:58 +00:00
|
|
|
g_return_if_fail (n_columns > 0);
|
2000-10-05 01:04:57 +00:00
|
|
|
|
|
|
|
if (list_store->n_columns == n_columns)
|
|
|
|
return;
|
|
|
|
|
|
|
|
new_columns = g_new0 (GType, n_columns);
|
|
|
|
if (list_store->column_headers)
|
|
|
|
{
|
|
|
|
/* copy the old header orders over */
|
|
|
|
if (n_columns >= list_store->n_columns)
|
|
|
|
memcpy (new_columns, list_store->column_headers, list_store->n_columns * sizeof (gchar *));
|
|
|
|
else
|
|
|
|
memcpy (new_columns, list_store->column_headers, n_columns * sizeof (GType));
|
|
|
|
|
|
|
|
g_free (list_store->column_headers);
|
|
|
|
}
|
|
|
|
|
|
|
|
list_store->column_headers = new_columns;
|
|
|
|
list_store->n_columns = n_columns;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_list_store_set_column_type (GtkListStore *list_store,
|
|
|
|
gint column,
|
|
|
|
GType type)
|
|
|
|
{
|
|
|
|
g_return_if_fail (list_store != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_LIST_STORE (list_store));
|
|
|
|
g_return_if_fail (column >=0 && column < list_store->n_columns);
|
|
|
|
|
|
|
|
list_store->column_headers[column] = type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fulfill the GtkTreeModel requirements */
|
2000-11-09 16:52:17 +00:00
|
|
|
static guint
|
|
|
|
gtk_list_store_get_flags (GtkTreeModel *tree_model)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_LIST_STORE (tree_model), 0);
|
|
|
|
|
|
|
|
return GTK_TREE_MODEL_ITERS_PERSIST;
|
|
|
|
}
|
|
|
|
|
2000-10-05 01:04:57 +00:00
|
|
|
static gint
|
|
|
|
gtk_list_store_get_n_columns (GtkTreeModel *tree_model)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_LIST_STORE (tree_model), 0);
|
|
|
|
|
|
|
|
return GTK_LIST_STORE (tree_model)->n_columns;
|
|
|
|
}
|
|
|
|
|
2000-11-10 19:38:53 +00:00
|
|
|
static GType
|
|
|
|
gtk_list_store_get_column_type (GtkTreeModel *tree_model,
|
|
|
|
gint index)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_LIST_STORE (tree_model), G_TYPE_INVALID);
|
|
|
|
g_return_val_if_fail (index < GTK_LIST_STORE (tree_model)->n_columns &&
|
|
|
|
index >= 0, G_TYPE_INVALID);
|
|
|
|
|
|
|
|
return GTK_LIST_STORE (tree_model)->column_headers[index];
|
|
|
|
}
|
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
static gboolean
|
2000-10-26 00:36:47 +00:00
|
|
|
gtk_list_store_get_iter (GtkTreeModel *tree_model,
|
2000-10-27 23:34:58 +00:00
|
|
|
GtkTreeIter *iter,
|
2000-10-05 01:04:57 +00:00
|
|
|
GtkTreePath *path)
|
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_LIST_STORE (tree_model), FALSE);
|
|
|
|
g_return_val_if_fail (gtk_tree_path_get_depth (path) > 0, FALSE);
|
|
|
|
|
|
|
|
iter->stamp = GTK_LIST_STORE (tree_model)->stamp;
|
2001-01-04 23:36:19 +00:00
|
|
|
iter->user_data = g_slist_nth (G_SLIST (GTK_LIST_STORE (tree_model)->root),
|
2000-10-27 23:34:58 +00:00
|
|
|
gtk_tree_path_get_indices (path)[0]);
|
|
|
|
|
2001-01-04 23:36:19 +00:00
|
|
|
return iter->user_data != NULL;
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GtkTreePath *
|
|
|
|
gtk_list_store_get_path (GtkTreeModel *tree_model,
|
2000-10-27 23:34:58 +00:00
|
|
|
GtkTreeIter *iter)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
|
|
|
GtkTreePath *retval;
|
|
|
|
GSList *list;
|
|
|
|
gint i = 0;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_LIST_STORE (tree_model), NULL);
|
2000-10-27 23:34:58 +00:00
|
|
|
g_return_val_if_fail (iter->stamp == GTK_LIST_STORE (tree_model)->stamp, NULL);
|
2000-10-05 01:04:57 +00:00
|
|
|
|
|
|
|
for (list = G_SLIST (GTK_LIST_STORE (tree_model)->root); list; list = list->next)
|
|
|
|
{
|
2001-01-04 23:36:19 +00:00
|
|
|
if (list == G_SLIST (iter->user_data))
|
2000-10-05 01:04:57 +00:00
|
|
|
break;
|
2000-10-27 23:34:58 +00:00
|
|
|
i++;
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
if (list == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
retval = gtk_tree_path_new ();
|
|
|
|
gtk_tree_path_append_index (retval, i);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-10-27 23:34:58 +00:00
|
|
|
gtk_list_store_get_value (GtkTreeModel *tree_model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
gint column,
|
|
|
|
GValue *value)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
|
|
|
GtkTreeDataList *list;
|
|
|
|
gint tmp_column = column;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_LIST_STORE (tree_model));
|
|
|
|
g_return_if_fail (column < GTK_LIST_STORE (tree_model)->n_columns);
|
2000-10-27 23:34:58 +00:00
|
|
|
g_return_if_fail (GTK_LIST_STORE (tree_model)->stamp == iter->stamp);
|
2000-10-05 01:04:57 +00:00
|
|
|
|
2001-01-04 23:36:19 +00:00
|
|
|
list = G_SLIST (iter->user_data)->data;
|
2000-10-05 01:04:57 +00:00
|
|
|
|
|
|
|
while (tmp_column-- > 0 && list)
|
|
|
|
list = list->next;
|
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
if (list == NULL)
|
|
|
|
g_value_init (value, GTK_LIST_STORE (tree_model)->column_headers[column]);
|
|
|
|
else
|
|
|
|
_gtk_tree_data_list_node_to_value (list,
|
|
|
|
GTK_LIST_STORE (tree_model)->column_headers[column],
|
|
|
|
value);
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2000-10-26 00:36:47 +00:00
|
|
|
gtk_list_store_iter_next (GtkTreeModel *tree_model,
|
|
|
|
GtkTreeIter *iter)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_LIST_STORE (tree_model), FALSE);
|
|
|
|
g_return_val_if_fail (GTK_LIST_STORE (tree_model)->stamp == iter->stamp, FALSE);
|
2000-10-05 01:04:57 +00:00
|
|
|
|
2001-01-04 23:36:19 +00:00
|
|
|
iter->user_data = G_SLIST (iter->user_data)->next;
|
2000-10-05 01:04:57 +00:00
|
|
|
|
2001-01-04 23:36:19 +00:00
|
|
|
return (iter->user_data != NULL);
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
static gboolean
|
2000-10-26 00:36:47 +00:00
|
|
|
gtk_list_store_iter_children (GtkTreeModel *tree_model,
|
2000-10-27 23:34:58 +00:00
|
|
|
GtkTreeIter *iter,
|
|
|
|
GtkTreeIter *parent)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
iter->stamp = 0;
|
2001-01-04 23:36:19 +00:00
|
|
|
iter->user_data = NULL;
|
2000-10-27 23:34:58 +00:00
|
|
|
|
|
|
|
return FALSE;
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2000-10-26 00:36:47 +00:00
|
|
|
gtk_list_store_iter_has_child (GtkTreeModel *tree_model,
|
2000-10-27 23:34:58 +00:00
|
|
|
GtkTreeIter *iter)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
2000-10-26 00:36:47 +00:00
|
|
|
gtk_list_store_iter_n_children (GtkTreeModel *tree_model,
|
2000-10-27 23:34:58 +00:00
|
|
|
GtkTreeIter *iter)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
2000-11-09 16:52:17 +00:00
|
|
|
if (iter == NULL)
|
|
|
|
return g_slist_length (G_SLIST (GTK_LIST_STORE (tree_model)->root));
|
|
|
|
|
2000-10-05 01:04:57 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
static gboolean
|
2000-10-26 00:36:47 +00:00
|
|
|
gtk_list_store_iter_nth_child (GtkTreeModel *tree_model,
|
2000-10-27 23:34:58 +00:00
|
|
|
GtkTreeIter *iter,
|
|
|
|
GtkTreeIter *parent,
|
Fix GtkTreeNode *node ->GtkTreeNode node issue.
2000-10-15 <jrb@redhat.com>
* gtk/gtktreeview.c, gtk/gtktreeview.h, gtk/gtktreestore.h,
gtk/gtktreestore.c, gtk/gtkliststore.h, gtk/gtkliststore.c,
gtk/gtkmodelsimple.c, gtk/gtkmodelsimple.h, gtk/gtktreedatalist.c,
gtk/gtktreemodel.h, gtk/gtktreeselection.c,
gtk/gtktreeselection.h: Fix GtkTreeNode *node ->GtkTreeNode node
issue.
2000-10-15 17:46:23 +00:00
|
|
|
gint n)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
g_return_val_if_fail (GTK_IS_LIST_STORE (tree_model), FALSE);
|
2000-10-05 01:04:57 +00:00
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
if (parent)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (iter->stamp == GTK_LIST_STORE (tree_model)->stamp, FALSE);
|
|
|
|
iter->stamp = 0;
|
2001-01-04 23:36:19 +00:00
|
|
|
iter->user_data = NULL;
|
2000-10-27 23:34:58 +00:00
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-01-04 23:36:19 +00:00
|
|
|
iter->user_data = g_slist_nth (G_SLIST (GTK_LIST_STORE (tree_model)->root), n);
|
|
|
|
if (iter->user_data)
|
2000-10-27 23:34:58 +00:00
|
|
|
iter->stamp = GTK_LIST_STORE (tree_model)->stamp;
|
|
|
|
else
|
|
|
|
iter->stamp = 0;
|
|
|
|
|
2001-01-04 23:36:19 +00:00
|
|
|
return (iter->user_data != NULL);
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
static gboolean
|
|
|
|
gtk_list_store_iter_parent (GtkTreeModel *tree_model,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
GtkTreeIter *child)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
iter->stamp = 0;
|
2001-01-04 23:36:19 +00:00
|
|
|
iter->user_data = NULL;
|
2000-10-05 01:04:57 +00:00
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
return FALSE;
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
/* Public accessors */
|
2000-10-05 01:04:57 +00:00
|
|
|
/* This is a somewhat inelegant function that does a lot of list
|
|
|
|
* manipulations on it's own.
|
|
|
|
*/
|
|
|
|
void
|
2000-10-27 23:34:58 +00:00
|
|
|
gtk_list_store_set_cell (GtkListStore *list_store,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
gint column,
|
|
|
|
GValue *value)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
|
|
|
GtkTreeDataList *list;
|
|
|
|
GtkTreeDataList *prev;
|
|
|
|
|
|
|
|
g_return_if_fail (list_store != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_LIST_STORE (list_store));
|
2000-10-26 00:36:47 +00:00
|
|
|
g_return_if_fail (iter != NULL);
|
2000-10-05 01:04:57 +00:00
|
|
|
g_return_if_fail (column >= 0 && column < list_store->n_columns);
|
|
|
|
|
2001-01-04 23:36:19 +00:00
|
|
|
prev = list = G_SLIST (iter->user_data)->data;
|
2000-10-05 01:04:57 +00:00
|
|
|
|
|
|
|
while (list != NULL)
|
|
|
|
{
|
|
|
|
if (column == 0)
|
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
_gtk_tree_data_list_value_to_node (list, value);
|
2000-11-18 23:59:30 +00:00
|
|
|
gtk_signal_emit_by_name (GTK_OBJECT (list_store),
|
|
|
|
"changed",
|
|
|
|
NULL, iter);
|
2000-10-05 01:04:57 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
column--;
|
|
|
|
prev = list;
|
|
|
|
list = list->next;
|
|
|
|
}
|
|
|
|
|
2001-01-04 23:36:19 +00:00
|
|
|
if (G_SLIST (iter->user_data)->data == NULL)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
2001-01-04 23:36:19 +00:00
|
|
|
G_SLIST (iter->user_data)->data = list = _gtk_tree_data_list_alloc ();
|
2000-10-05 01:04:57 +00:00
|
|
|
list->next = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
list = prev->next = _gtk_tree_data_list_alloc ();
|
2000-10-05 01:04:57 +00:00
|
|
|
list->next = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (column != 0)
|
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
list->next = _gtk_tree_data_list_alloc ();
|
2000-10-05 01:04:57 +00:00
|
|
|
list = list->next;
|
|
|
|
list->next = NULL;
|
|
|
|
column --;
|
|
|
|
}
|
2000-10-27 23:34:58 +00:00
|
|
|
_gtk_tree_data_list_value_to_node (list, value);
|
|
|
|
gtk_signal_emit_by_name (GTK_OBJECT (list_store),
|
|
|
|
"changed",
|
|
|
|
NULL, iter);
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
2001-01-08 18:26:05 +00:00
|
|
|
void
|
|
|
|
gtk_list_store_set_valist (GtkListStore *list_store,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
va_list var_args)
|
|
|
|
{
|
|
|
|
gint column;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_LIST_STORE (list_store));
|
|
|
|
|
|
|
|
column = va_arg (var_args, gint);
|
|
|
|
|
|
|
|
while (column != -1)
|
|
|
|
{
|
|
|
|
GValue value = { 0, };
|
|
|
|
gchar *error = NULL;
|
|
|
|
|
|
|
|
if (column >= list_store->n_columns)
|
|
|
|
{
|
|
|
|
g_warning ("%s: Invalid column number %d added to iter (remember to end your list of columns with a -1)", G_STRLOC, column);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
g_value_init (&value, list_store->column_headers[column]);
|
|
|
|
|
|
|
|
G_VALUE_COLLECT (&value, var_args, &error);
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
g_warning ("%s: %s", G_STRLOC, error);
|
|
|
|
g_free (error);
|
|
|
|
|
|
|
|
/* we purposely leak the value here, it might not be
|
|
|
|
* in a sane state if an error condition occoured
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_list_store_set_cell (list_store,
|
|
|
|
iter,
|
|
|
|
column,
|
|
|
|
&value);
|
|
|
|
|
|
|
|
g_value_unset (&value);
|
|
|
|
|
|
|
|
column = va_arg (var_args, gint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_list_store_set:
|
|
|
|
* @list_store: a #GtkListStore
|
|
|
|
* @iter: row iterator
|
|
|
|
* @Varargs: pairs of column number and value, terminated with -1
|
|
|
|
*
|
|
|
|
* Sets the value of one or more cells in the row referenced by @iter.
|
|
|
|
* The variable argument list should contain integer column numbers,
|
|
|
|
* each column number followed by the value to be set. For example,
|
|
|
|
* The list is terminated by a -1. For example, to set column 0 with type
|
|
|
|
* %G_TYPE_STRING to "Foo", you would write gtk_list_store_set (store, iter,
|
|
|
|
* 0, "Foo", -1).
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_list_store_set (GtkListStore *list_store,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
...)
|
|
|
|
{
|
|
|
|
va_list var_args;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_LIST_STORE (list_store));
|
|
|
|
|
|
|
|
va_start (var_args, iter);
|
|
|
|
gtk_list_store_set_valist (list_store, iter, var_args);
|
|
|
|
va_end (var_args);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_list_store_get_valist (GtkListStore *list_store,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
va_list var_args)
|
|
|
|
{
|
|
|
|
gint column;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_LIST_STORE (list_store));
|
|
|
|
|
|
|
|
column = va_arg (var_args, gint);
|
|
|
|
|
|
|
|
while (column != -1)
|
|
|
|
{
|
|
|
|
GValue value = { 0, };
|
|
|
|
gchar *error = NULL;
|
|
|
|
|
|
|
|
if (column >= list_store->n_columns)
|
|
|
|
{
|
|
|
|
g_warning ("%s: Invalid column number %d accessed (remember to end your list of columns with a -1)", G_STRLOC, column);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_list_store_get_value (GTK_TREE_MODEL (list_store), iter, column, &value);
|
|
|
|
|
|
|
|
G_VALUE_LCOPY (&value, var_args, &error);
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
g_warning ("%s: %s", G_STRLOC, error);
|
|
|
|
g_free (error);
|
|
|
|
|
|
|
|
/* we purposely leak the value here, it might not be
|
|
|
|
* in a sane state if an error condition occoured
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_value_unset (&value);
|
|
|
|
|
|
|
|
column = va_arg (var_args, gint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_list_store_get (GtkListStore *list_store,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
...)
|
|
|
|
{
|
|
|
|
va_list var_args;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_LIST_STORE (list_store));
|
|
|
|
|
|
|
|
va_start (var_args, iter);
|
|
|
|
gtk_list_store_get_valist (list_store, iter, var_args);
|
|
|
|
va_end (var_args);
|
|
|
|
}
|
|
|
|
|
2000-10-05 01:04:57 +00:00
|
|
|
void
|
2000-10-27 23:34:58 +00:00
|
|
|
gtk_list_store_remove (GtkListStore *list_store,
|
|
|
|
GtkTreeIter *iter)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
GtkTreePath *path;
|
|
|
|
|
|
|
|
g_return_if_fail (list_store != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_LIST_STORE (list_store));
|
|
|
|
|
2001-01-04 23:36:19 +00:00
|
|
|
if (G_SLIST (iter->user_data)->data)
|
|
|
|
_gtk_tree_data_list_free ((GtkTreeDataList *) G_SLIST (iter->user_data)->data,
|
2000-10-27 23:34:58 +00:00
|
|
|
list_store->column_headers);
|
|
|
|
|
|
|
|
path = gtk_list_store_get_path (GTK_TREE_MODEL (list_store), iter);
|
|
|
|
list_store->root = g_slist_remove_link (G_SLIST (list_store->root),
|
2001-01-04 23:36:19 +00:00
|
|
|
G_SLIST (iter->user_data));
|
2000-10-27 23:34:58 +00:00
|
|
|
list_store->stamp ++;
|
|
|
|
gtk_signal_emit_by_name (GTK_OBJECT (list_store),
|
|
|
|
"deleted",
|
|
|
|
path);
|
|
|
|
gtk_tree_path_free (path);
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
void
|
|
|
|
gtk_list_store_insert (GtkListStore *list_store,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
gint position)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
|
|
|
GSList *list;
|
2000-10-27 23:34:58 +00:00
|
|
|
GtkTreePath *path;
|
2000-10-05 01:04:57 +00:00
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
g_return_if_fail (list_store != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_LIST_STORE (list_store));
|
|
|
|
g_return_if_fail (iter != NULL);
|
|
|
|
g_return_if_fail (position < 0);
|
2000-10-05 01:04:57 +00:00
|
|
|
|
|
|
|
if (position == 0)
|
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
gtk_list_store_prepend (list_store, iter);
|
|
|
|
return;
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
iter->stamp = list_store->stamp;
|
2001-01-04 23:36:19 +00:00
|
|
|
iter->user_data = g_slist_alloc ();
|
2000-10-27 23:34:58 +00:00
|
|
|
|
|
|
|
list = g_slist_nth (G_SLIST (list_store->root), position - 1);
|
2000-10-05 01:04:57 +00:00
|
|
|
if (list)
|
|
|
|
{
|
2001-01-04 23:36:19 +00:00
|
|
|
G_SLIST (iter->user_data)->next = list->next;
|
|
|
|
list->next = G_SLIST (iter->user_data)->next;
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
2000-10-27 23:34:58 +00:00
|
|
|
path = gtk_tree_path_new ();
|
|
|
|
gtk_tree_path_append_index (path, position);
|
|
|
|
gtk_signal_emit_by_name (GTK_OBJECT (list_store),
|
|
|
|
"inserted",
|
|
|
|
path, iter);
|
|
|
|
gtk_tree_path_free (path);
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
void
|
|
|
|
gtk_list_store_insert_before (GtkListStore *list_store,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
GtkTreeIter *sibling)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
GtkTreePath *path;
|
|
|
|
GSList *list, *prev;
|
|
|
|
gint i = 0;
|
|
|
|
|
|
|
|
g_return_if_fail (list_store != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_LIST_STORE (list_store));
|
|
|
|
g_return_if_fail (iter != NULL);
|
|
|
|
g_return_if_fail (G_SLIST (iter)->next == NULL);
|
2000-10-05 01:04:57 +00:00
|
|
|
|
|
|
|
if (sibling == NULL)
|
2000-10-27 23:34:58 +00:00
|
|
|
{
|
|
|
|
gtk_list_store_append (list_store, iter);
|
|
|
|
return;
|
|
|
|
}
|
2000-10-05 01:04:57 +00:00
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
iter->stamp = list_store->stamp;
|
2001-01-04 23:36:19 +00:00
|
|
|
iter->user_data = g_slist_alloc ();
|
2000-10-27 23:34:58 +00:00
|
|
|
|
|
|
|
prev = list = list_store->root;
|
2001-01-04 23:36:19 +00:00
|
|
|
while (list && list != sibling->user_data)
|
2000-10-27 23:34:58 +00:00
|
|
|
{
|
|
|
|
prev = list;
|
|
|
|
list = list->next;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prev)
|
|
|
|
{
|
2001-01-04 23:36:19 +00:00
|
|
|
prev->next = iter->user_data;
|
2000-10-27 23:34:58 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-01-04 23:36:19 +00:00
|
|
|
G_SLIST (iter->user_data)->next = list_store->root;
|
|
|
|
list_store->root = iter->user_data;
|
2000-10-27 23:34:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
path = gtk_tree_path_new ();
|
|
|
|
gtk_tree_path_append_index (path, i);
|
|
|
|
gtk_signal_emit_by_name (GTK_OBJECT (list_store),
|
|
|
|
"inserted",
|
|
|
|
path, iter);
|
|
|
|
gtk_tree_path_free (path);
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
void
|
|
|
|
gtk_list_store_insert_after (GtkListStore *list_store,
|
|
|
|
GtkTreeIter *iter,
|
|
|
|
GtkTreeIter *sibling)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
GtkTreePath *path;
|
|
|
|
GSList *list;
|
|
|
|
gint i = 0;
|
|
|
|
|
|
|
|
g_return_if_fail (list_store != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_LIST_STORE (list_store));
|
|
|
|
g_return_if_fail (iter == NULL);
|
|
|
|
if (sibling)
|
|
|
|
g_return_if_fail (sibling->stamp == list_store->stamp);
|
2000-10-05 01:04:57 +00:00
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
if (sibling == NULL)
|
|
|
|
{
|
|
|
|
gtk_list_store_prepend (list_store, iter);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2001-01-04 23:36:19 +00:00
|
|
|
for (list = list_store->root; list && list != sibling->user_data; list = list->next)
|
2000-10-27 23:34:58 +00:00
|
|
|
i++;
|
|
|
|
|
|
|
|
g_return_if_fail (list != NULL);
|
2000-10-05 01:04:57 +00:00
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
iter->stamp = list_store->stamp;
|
2001-01-04 23:36:19 +00:00
|
|
|
iter->user_data = g_slist_alloc ();
|
2000-10-27 23:34:58 +00:00
|
|
|
|
2001-01-04 23:36:19 +00:00
|
|
|
G_SLIST (iter->user_data)->next = G_SLIST (sibling->user_data)->next;
|
2000-10-27 23:34:58 +00:00
|
|
|
G_SLIST (sibling)->next = G_SLIST (iter);
|
|
|
|
|
|
|
|
path = gtk_tree_path_new ();
|
|
|
|
gtk_tree_path_append_index (path, i);
|
|
|
|
gtk_signal_emit_by_name (GTK_OBJECT (list_store),
|
|
|
|
"inserted",
|
|
|
|
path, iter);
|
|
|
|
gtk_tree_path_free (path);
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
void
|
|
|
|
gtk_list_store_prepend (GtkListStore *list_store,
|
|
|
|
GtkTreeIter *iter)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
GtkTreePath *path;
|
|
|
|
|
|
|
|
g_return_if_fail (list_store != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_LIST_STORE (list_store));
|
|
|
|
g_return_if_fail (iter != NULL);
|
2000-10-05 01:04:57 +00:00
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
iter->stamp = list_store->stamp;
|
2001-01-04 23:36:19 +00:00
|
|
|
iter->user_data = g_slist_alloc ();
|
2000-10-05 01:04:57 +00:00
|
|
|
|
2001-01-04 23:36:19 +00:00
|
|
|
G_SLIST (iter->user_data)->next = G_SLIST (list_store->root);
|
|
|
|
list_store->root = iter->user_data;
|
2000-10-05 01:04:57 +00:00
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
path = gtk_tree_path_new ();
|
|
|
|
gtk_tree_path_append_index (path, 0);
|
|
|
|
gtk_signal_emit_by_name (GTK_OBJECT (list_store),
|
|
|
|
"inserted",
|
|
|
|
path, iter);
|
|
|
|
gtk_tree_path_free (path);
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
void
|
|
|
|
gtk_list_store_append (GtkListStore *list_store,
|
|
|
|
GtkTreeIter *iter)
|
2000-10-05 01:04:57 +00:00
|
|
|
{
|
2000-10-27 23:34:58 +00:00
|
|
|
GtkTreePath *path;
|
|
|
|
GSList *list, *prev;
|
|
|
|
gint i = 0;
|
|
|
|
|
|
|
|
g_return_if_fail (list_store != NULL);
|
|
|
|
g_return_if_fail (GTK_IS_LIST_STORE (list_store));
|
|
|
|
g_return_if_fail (iter != NULL);
|
|
|
|
|
|
|
|
iter->stamp = list_store->stamp;
|
2001-01-04 23:36:19 +00:00
|
|
|
iter->user_data = g_slist_alloc ();
|
2000-10-05 01:04:57 +00:00
|
|
|
|
2000-10-27 23:34:58 +00:00
|
|
|
prev = list = list_store->root;
|
|
|
|
while (list)
|
|
|
|
{
|
|
|
|
prev = list;
|
|
|
|
list = list->next;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prev)
|
2001-01-04 23:36:19 +00:00
|
|
|
prev->next = iter->user_data;
|
2000-10-27 23:34:58 +00:00
|
|
|
else
|
2001-01-04 23:36:19 +00:00
|
|
|
list_store->root = iter->user_data;
|
2000-10-27 23:34:58 +00:00
|
|
|
|
|
|
|
path = gtk_tree_path_new ();
|
|
|
|
gtk_tree_path_append_index (path, i);
|
|
|
|
gtk_signal_emit_by_name (GTK_OBJECT (list_store),
|
|
|
|
"inserted",
|
|
|
|
path, iter);
|
|
|
|
gtk_tree_path_free (path);
|
2000-10-05 01:04:57 +00:00
|
|
|
}
|