1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-22 14:07:59 +01:00
Files
wicd/curses
Andrew Psaltis 5fd6cca50b Yet another checkpoint in building the Preferences Dialog up to completion. Some of the code isn't used yet, but this should all be done relatively soon.
curses/curses_misc.py:
  Added a function in the ToggleEdit to set its text to something
  Changed the name of ComboText to ComboBox
  Provided the ability to generate the initial parts of a ComboBox w/o needing the screen.
  Added ComboBoxException, a simple derived exception for the ComboBox.  Used it to die of the user never called build_combobox()
curses/prefs_curses.py:
  Changed the names of some of the widgets.
  Adjusted the code to use the modified ComboBox widget
curses/wicd-curses.py:
  Adjusted the code to use the modified ComboBox widget
2008-12-30 21:27:41 -05:00
..

This is a curses-based client for wicd.  It is designed to imitate wicd-client
as much as can be done with a console-based interface.  It is written using the
Urwid (http://excess.org/urwid) toolkit, and thus requires it.

That's all there is to it, really.  It's not going to install itself until I 
work on it more and figure out how to use distutils.

Right now, it lists current available networks, and whether you are connected
to anything or not, all of which is updated in real time.  It will actually 
connect you to networks now.  Configuring them is a work in progress.

Controls:

F5     : refresh wireless networks
F8 or Q: quit 
D      : disconnect from active network
ESC    : if connecting to a network, stop doing so
ENTER  : Attempt connection to selected network
P      : Display preferences dialog

IN DIALOGS:
ESC or Q: Quit dialog without saving information (if present)



~NaCl