On Wed, Mar 16, 2005 at 12:53:15AM +0530, Saurabh Wagh wrote: > Thus, in short, on clicking a button in some internal section of a > complex vbox, i need to change a widget in some Hbox in the same > window.
You can get to any child widget via the container's children() method. And you can swap any widget for another using reparent() or add()/remove(). Shouldn't be very difficult, use a simple testcase to learn. Take care, -- Christian Robottom Reis | http://async.com.br/~kiko/ | [+55 16] 3361 2331 _______________________________________________ pygtk mailing list [email protected] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
