1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-19 20:38:00 +01:00

Made the keymappings displayed in the OptCols actually do what they say they're suppoed to do.

Updated the README
This commit is contained in:
Andrew Psaltis
2009-03-05 23:13:29 -05:00
parent dc49a2fc4f
commit 32d0d57b6d
2 changed files with 12 additions and 13 deletions

View File

@@ -14,15 +14,15 @@ All features that I plan on implementing (that are not mentioned above) are
listed the TODO file in this same directory. If you want any other features, listed the TODO file in this same directory. If you want any other features,
ask me. I try to be on the #wicd Freenode IRC channel most of the time. ask me. I try to be on the #wicd Freenode IRC channel most of the time.
Controls: Controls (most of these should be viewable in wicd-curses itself):
F5 : refresh wireless networks F5 : refresh wireless networks
F8 or Q or q: quit F8 Q q : quit
D : disconnect from all active networks D : disconnect from all active networks
ESC : if connecting to a network, stop doing so ESC : if connecting to a network, stop doing so
ENTER : Attempt connection to selected network ENTER C : Attempt connection to selected network
P : Display preferences dialog P : Display preferences dialog
C : Display network configuration for selected network right arrow : Display network configuration for selected network
A : Display "About" dialog A : Display "About" dialog
I : Raise the "Scan for hidden networks" dialog I : Raise the "Scan for hidden networks" dialog
H or h or ? : Raise help dialog H or h or ? : Raise help dialog
@@ -33,7 +33,7 @@ O : Raise ad-hoc network dialog
IN DIALOGS (Meta usually is "Alt"): IN DIALOGS (Meta usually is "Alt"):
ESC or Q: Quit dialog without saving information (if present) ESC or Q: Quit dialog without saving information (if present)
Meta+Left/Right: Change tabs Left/Right (if tabs present) Meta+[/]: Change tabs Left/Right (if tabs present)
Meta+Enter : Quit dialog and save information Meta+Enter : Quit dialog and save information
FAQ (WIP): FAQ (WIP):

View File

@@ -880,16 +880,15 @@ class appGUI():
self.footer1 = self.confCols self.footer1 = self.confCols
about_dialog(self.frame) about_dialog(self.frame)
if "C" in keys: if "C" in keys:
focus = self.thePile.get_focus() # Same as "enter" for now
focus = self.frame.body.get_focus()
if focus == self.wiredCB: if focus == self.wiredCB:
WiredSettingsDialog(self.wiredCB.get_body(). self.special = focus
get_selected_profile()).run(ui,self.size,self.frame) self.connect("wired",0)
else: else:
# wireless list only other option # wless list only other option
wid,pos = self.thePile.get_focus().get_focus() wid,pos = self.thePile.get_focus().get_focus()
WirelessSettingsDialog(pos).run(ui,self.size,self.frame) self.connect("wireless",pos)
#self.netentry = NetEntryBase(dbusmanager.get_dbus_ifaces())
#self.netentry.run(ui,self.size,self.frame)
if "I" in keys: if "I" in keys:
self.raise_hidden_network_dialog() self.raise_hidden_network_dialog()
if "H" in keys or 'h' in keys or '?' in keys: if "H" in keys or 'h' in keys or '?' in keys: