Re: It is not possible to create a recursive function over a pyGTK treeStore

2007-06-29 Thread sebastien . abeille
A little update : I finally found an example of a file browser using gtkTreestore that parse the file system recursively : http://www.koders.com/python/fidDB37D29C69F526E5EEA9A7D8B4FC5B87E92A78CC.aspx?s=filter_out_extensions#L113 I still need to check how it works, but I am sure that it will answe

Re: It is not possible to create a recursive function over a pyGTK treeStore

2007-06-29 Thread Bruno Desthuilliers
[EMAIL PROTECTED] a écrit : > Hello, > > I would like to create a minimalist file browser using pyGTK. > > Having read lot of tutorials, it seems to me that that in my case, the > best solution is > to have a gtk.TreeStore containing all the files and folders so that > it would map the > file sys

It is not possible to create a recursive function over a pyGTK treeStore

2007-06-29 Thread sebastien . abeille
Hello, I would like to create a minimalist file browser using pyGTK. Having read lot of tutorials, it seems to me that that in my case, the best solution is to have a gtk.TreeStore containing all the files and folders so that it would map the file system hierarchy. I wrote a recursive function t