I'm trying to build a simple user interface with Python, using urwid.

The basic layout is a radio botton with three options on the left, and, for two of them, corresponding edit fields in the right. Something like this:

( ) All files
(*) These files:          ______________________
( ) Files matching regex: ______________________

I want only the edit field, which corresponds to the selected option, to be editable. The others should disappear, be greyed out, or something similar.

I have it implemented using two piles, placed side by side. The left one with radio buttons, the right one with a text field and two edit fields.
I have handlers calls when the radio buttons are toggled, but I didn't find a way to use them to make the right pile widgets appear/disappear.

Anyone knows a good way to do this?
Thanks.

link|improve this question
OK, I figured out how to do it. The pile's widget_list member is just a list, and can be edited. But if you replace a widget with another, you should first move the focus away from the removed widget. – ugoren Jan 2 at 10:04
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.