Refactored some ComboBox internals
Renamed show_first to focus in ComboBox
Added callback support
curses/netentry_curses.py:
Renamed NetEntryBase to AdvancedSettingsDialog, and WirelessNetEntry to
WirelessSettingsDialog
The "WirelessSettingsDialog" is complete. :-) Raise it by pressing "C" on a wireless
network. Much of the code was taken from netentry.py. The buttons aren't pretty
like they are in the Preferences Dialog, but they are fully functional.
curses/prefs_curses.py:
Refactored to accommodate the ComboBox changes
Added a warning about changing backends
curses/wicd-curses.py:
Refactored to accommodate changes to the rest of the program
Added a constantly displayed message saying how to exit the program, other than
ctrl+c
curses/TODO: Removed a bunch of stuff that is already implemented, added some stuff that
needs to be implemented
curses/README: Added/clearified some things
curses/curses_misc.py:
Refactored some DynWrap internals
Added MaskingEdit, a password edit
Modified ComboBox to use a DynWrap internally instead of an AttrWrap
curses/netentry_curses.py:
Added most of the WirelessNetEntry. It doesn't save information yet, but it does
load most of it. Support for viewing the templated network settings is not
implemented yet.
curses/wicd-curses.py:
Activated support for the WirelessNetEntry configurator. The wired one is not
implemented yet.
Added DynWrapper, a wrapper class with which we can dynamically change the
selectability of a widget.
Removed ToggleEdit, replaced by DynWrapper.
curses/netentry_curses.py: ADDED. Network entry configurator dialog.
Has a base class for the common elements of the wired/wireless NetEntries.
curses/prefs_curses.py: Replaced ToggleEdits with DynWrapped Edits.
curses/wicd-curses.py:
Rebuilt the connect function into the main keyhandler. I discovered that
implementing that the way I had previously done it would have made
displaying the dialogs a bit more difficult
Added support for running the NetEntry selector
in/man=wicd-curses.8.in, curses/README:
Modified to say that the NetEntry dialog is now a WIP (Raise it with 'C')
setup.py:
Install netentry_curses.py if we are installing the rest of the curses client
Install the man page only if we want to install the rest of the man pages and
the curses client
meta+right or meta+left now move the selected tab right and left respectively. Focus goes back to the tabs, though.
Fixed a bug in ComboBox where show_first does nothing
Restored get_selected to its original state
curses/prefs_curses.py:
Moved the automatic reconnect category to "General Settings"
Made the backend selector actually select the selected backend at first
Reset the button statuses each time we load the settings
meta+enter now saves+closes the preferences dialog
curses/wicd-curses.py:
Turned the wired list into a list of custom SelTexts, so that they can do the connecting/script-choosing/configuring/etc, instead of the dialog itself
Offset the version in the about dialog a little less
Recycle the old preferences dialog instead of making a new one if we run it more than once
Added a Dialog class, mostly borrowed from a urwid example
curses/prefs_curses.py:
Added the DNS domain to the dialog, as was done in the GTK UI
curses/wicd-curses.py:
Added a semi-pretty about dialog.
curses/README: Activating about dialog is done by "A"
Added a get_edit_text function to ToggleEdit.
Changed the get_selected function in ComboBox to return the index only.
curses/prefs_curses.py:
Completed the load+save functions of the UI
Buttons are now functional. Only selecting the OK button will save the data for now.
curses/wicd-curses.py:
Added support for the "Always Show Wired Interface" config option
Completed support for the preferences dialog
curses/TODO,README: Preferences dialog is done. :-)
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
curses/curses_misc.py: Changed the internal layout of the widgets to allow me to stick buttons on the bottom.
curses/prefs_curses.py: Added rudimentary Dbus support to the dialog.
Started getting the config settings to save to wicd.
Added buttons (which don't do anything yet).
The PrefOverlay has been renamed to PrefsDialog. The PrefsDialog widget is wrapped around a TabColumns widget.
Added a main entry point into the file to allow for somewhat easier testing. It can now be called indepentently of wicd-curses, if needed.
curses/wicd-curses.py: Undid a change that caused the ESC key to disconnect from the current network, in addition to its current function.
curses/prefs_curses.py: Converted the code to use the tabbed interface found in curses_misc.py. The dialog now fills up the terminal, but it still does nothing.
curses/wicd-curses.py: Turned the "list" wired section of the interface to a combo box.
curses/prefs_curses.py: Frontend is complete. However, it is still missing buttons and the ability to save information. Removed code that is now in curses_misc.py.
curses/wicd-curses.py: Removed code that is now in curses_misc.py. Tweaked the visuals a little bit.
curses/README: Preferences configuration is a WIP now.
curses/TODO: A combo box has been implemented in curses_misc.py, so that part has been removed. Also added a part about making a man page.
curses/wicd-curses.py: Some code cleanup, replaced the language mess with the GUI list in misc, and added support for running the Preferences dialog with 'P'.
curses/README: Added the keybindings to bring up the preferences dialog.