On Mon, Sep 29, 2003 at 10:36:40AM +0700, mige wrote: > I'm trying to use a treemodel [store] in both views (showing as a tree > and a list), just like file explorer. > The tree view is working fine. > But, I need to show the direct childrens in the list view if I click the > node. Is there any way not to copy the model ? So, no need creating new > model. May be just passing the node as (sub) treemodel [as list-store] > for the list view ?
I don't know a way to do that currently without writing your own treemodels, which is not hard. Then you can have instances of MyTreeStore and MyListStore that reference the same underlying data structure. Dave Cook _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
