Re: How to create unique widget when reusing widget id's from a GladeXML object.

2008-08-11 Thread dhk
dhk wrote: I'm adding tabs to a notebook by getting the tab (a vbox) out of a GladeXML object. The tab widget returned from glade_xml_build_widget() can be added to the notebook and everything works fine. The problem is when more tabs are added. It doesn't seem like the widget id's on each

Re: How to create unique widget when reusing widget id's from a GladeXML object.

2008-08-11 Thread Tristan Van Berkom
If you are using one glade file for the tab contents and parsing it again for each tab, then you get widgets in your runtime interface that have the same name, thats not an issue for gtk+ - but, as you named them yourself, its up to you to identify them some other way. Im not sure I understood