Op 27/08/2009 19:46, Marcus Vinicius Eiffle Duarte het geskryf: > I would like to create a GUI with sidepanel showing an "object browser", > which is a tree of nested (graphic) objects to select. I guess the best > screenshots of this type of application are like the ones here: > http://www.salome-platform.org/home/screenshots/ (Salomé is a great Qt > application, by the way). I am talking about the panel titled "Object > Browser" on the left. Can anyone point me to some resource showing hot to do > it with pygtk?
That looks like a simple TreeStore used with a TreeView. The first column of the TreeView has two cell renderers, though: a CellRendererPixmap for the icon and a CellRendererText for the object name. -- Walter Leibbrandt Software Developer Recent blogs: * Conquering the CellRendererWidget http://www.translate.org.za/blogs/walter/en/content/conquering-cellrendererwidget _______________________________________________ pygtk mailing list [email protected] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://faq.pygtk.org/
