
Text-mode "windowing" libraries for Python?
Now I'm looking for something that let's me define a text-mode user
interface. In particular, something that lets me build the interface using
widgets, for example --
req = toolkit.NewRequestor( "Are you sure?" )
vpack = toolkit.NewVPacker()
req.AddChild( vpack )
label = toolkit.NewLabel( "Are you sure you want only 3 wishes?" )
vpack.AddChild( label )
hpack = toolkit.NewHPacker()
okButton = toolkit.NewButton( "OK", DoMyOKBidding )
noButton = toolkit.NewButton( "Cancel", DoMyNOBidding )
hpack.AddChildren( [okButton, noButton] )
vpack.AddChild( hpack )
req.Display()
Basically, I'm in need of some utilities which I'm writing that much be able
to execute via Telnet, but which also needs to have a half-way decent user
interface to them.
Any recommendations? Many thanks in advance for your considerations.
--
KC5TJA/6, DM13, QRP-L #1447 | Official Channel Saint, *Team Amiga*
Samuel A. Falvo II |
Oceanside, CA |