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.