Re: GtkTreeView data

2005-04-14 Thread Gabriel de Perthuis
Le jeudi 14 avril 2005 Ã 18:23 +0100, Kris Marsh a Ãcrit : > Hi, > > I'm trying to attach extra information to each row in a list, and then > retrieve it later on from a row on > a double click (row_activated) event. > Basically, i've tried: > > g_object_set_data(G_OBJECT(&iter_child), "my_info

Re: GtkTreeView data

2005-04-14 Thread John Coppens
On Thu, 14 Apr 2005 18:23:11 +0100 Kris Marsh <[EMAIL PROTECTED]> wrote: > Hi, > > I'm trying to attach extra information to each row in a list, and then > retrieve it later on from a row on > a double click (row_activated) event. > Basically, i've tried: > > g_object_set_data(G_OBJECT(&iter_c

Re: GtkTreeView data

2005-04-14 Thread Carlo
Kris Marsh ha scritto lo scorso 14/04/2005 19:23: Hi, I'm trying to attach extra information to each row in a list, and then retrieve it later on from a row on a double click (row_activated) event. Basically, i've tried: g_object_set_data(G_OBJECT(&iter_child), "my_info", GUINT_TO_POINTER(some_

GtkTreeView data

2005-04-14 Thread Kris Marsh
Hi, I'm trying to attach extra information to each row in a list, and then retrieve it later on from a row on a double click (row_activated) event. Basically, i've tried: g_object_set_data(G_OBJECT(&iter_child), "my_info", GUINT_TO_POINTER(some_info)); Upon inserting an item into the list and