Re: TreeView help

2005-11-13 Thread Murray Cumming
On Sat, 2005-11-12 at 21:09 -0500, Amadeus W. M. wrote: This is my first take at a TreeView, and I tried to figure it out on my own from the docs, but I must resort once again to the community. I have a bunch of files which I want to load and display in a TreeView using a ListStore. I can do

Re: TreeView help

2005-11-13 Thread Armin Burgmeier
In fact, I don't even understand very well how multiple selection works. The user does Ctrl+Button1 on each item it wants, then what? When does select_foreach() get called? When does gtk (or X?) that the user is done picking items, and that the action on each item must be triggered? GTK+ does not

Re: TreeView help

2005-11-13 Thread Amadeus W. M.
Thanks all! I realized shortly after I posted that gtk/x are not psychic, and they can't guess when the user is done with a multiple selection. So the user himself must call select_foreach() in some way (e.g. via a button). ___ gtkmm-list mailing list

TreeView help

2005-11-12 Thread Amadeus W. M.
This is my first take at a TreeView, and I tried to figure it out on my own from the docs, but I must resort once again to the community. I have a bunch of files which I want to load and display in a TreeView using a ListStore. I can do that, and do something to a selected row, ONLY in