diff options
author | rathnor <rathnor> | 2003-04-20 12:21:35 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-04-20 12:21:35 (GMT) |
commit | 2a1bc27e90ae96f14a2fc0164fef074974023389 (patch) | |
tree | 260f797a90be16e2d86c64156d96c2089b730040 /src/Keys.cc | |
parent | e75378d0e6d5891536e24389fcbeabeb7a9d579a (diff) | |
download | fluxbox_pavel-2a1bc27e90ae96f14a2fc0164fef074974023389.zip fluxbox_pavel-2a1bc27e90ae96f14a2fc0164fef074974023389.tar.bz2 |
add directional focus movement (Simon)
incl new keybindings FocusUp, FocusDown, FocusLeft, FocusRight
Diffstat (limited to 'src/Keys.cc')
-rw-r--r-- | src/Keys.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Keys.cc b/src/Keys.cc index 02cfabd..a818e3b 100644 --- a/src/Keys.cc +++ b/src/Keys.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | //$Id: Keys.cc,v 1.25 2003/04/15 00:50:24 rathnor Exp $ | 22 | //$Id: Keys.cc,v 1.26 2003/04/20 12:21:35 rathnor Exp $ |
23 | 23 | ||
24 | 24 | ||
25 | #include "Keys.hh" | 25 | #include "Keys.hh" |
@@ -110,6 +110,10 @@ Keys::t_actionstr Keys::m_actionlist[] = { | |||
110 | {"MoveTabNext", MOVETABNEXT}, | 110 | {"MoveTabNext", MOVETABNEXT}, |
111 | {"AttachLast", ATTACHLAST}, | 111 | {"AttachLast", ATTACHLAST}, |
112 | {"DetachClient", DETACHCLIENT}, | 112 | {"DetachClient", DETACHCLIENT}, |
113 | {"FocusUp", FOCUSUP}, | ||
114 | {"FocusDown", FOCUSDOWN}, | ||
115 | {"FocusLeft", FOCUSLEFT}, | ||
116 | {"FocusRight", FOCUSRIGHT}, | ||
113 | {"ShadeWindow", SHADE}, | 117 | {"ShadeWindow", SHADE}, |
114 | {"MaximizeWindow", MAXIMIZE}, | 118 | {"MaximizeWindow", MAXIMIZE}, |
115 | {"StickWindow", STICK}, | 119 | {"StickWindow", STICK}, |