aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-04-20 12:21:35 (GMT)
committerrathnor <rathnor>2003-04-20 12:21:35 (GMT)
commit2a1bc27e90ae96f14a2fc0164fef074974023389 (patch)
tree260f797a90be16e2d86c64156d96c2089b730040 /src/Screen.hh
parente75378d0e6d5891536e24389fcbeabeb7a9d579a (diff)
downloadfluxbox-2a1bc27e90ae96f14a2fc0164fef074974023389.zip
fluxbox-2a1bc27e90ae96f14a2fc0164fef074974023389.tar.bz2
add directional focus movement (Simon)
incl new keybindings FocusUp, FocusDown, FocusLeft, FocusRight
Diffstat (limited to 'src/Screen.hh')
-rw-r--r--src/Screen.hh5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index 8b4d74a..84d7f74 100644
--- a/src/Screen.hh
+++ b/src/Screen.hh
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Screen.hh,v 1.80 2003/04/16 16:17:57 rathnor Exp $ 25// $Id: Screen.hh,v 1.81 2003/04/20 12:21:35 rathnor Exp $
26 26
27#ifndef SCREEN_HH 27#ifndef SCREEN_HH
28#define SCREEN_HH 28#define SCREEN_HH
@@ -278,6 +278,9 @@ public:
278 void raiseFocus(); 278 void raiseFocus();
279 void setFocusedWindow(WinClient &winclient); 279 void setFocusedWindow(WinClient &winclient);
280 280
281 enum FocusDir { FOCUSUP, FOCUSDOWN, FOCUSLEFT, FOCUSRIGHT };
282 void dirFocus(FluxboxWindow &win, FocusDir dir);
283
281 void reconfigure(); 284 void reconfigure();
282 void rereadMenu(); 285 void rereadMenu();
283 void shutdown(); 286 void shutdown();