aboutsummaryrefslogtreecommitdiff
path: root/src/FocusControl.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2006-02-18 20:19:22 (GMT)
committerfluxgen <fluxgen>2006-02-18 20:19:22 (GMT)
commit5ceacc65925f597180c918fcaa2a8171c42cbcdd (patch)
tree1cee0d151c5368ee69bf4e0e432d0f7f6af37b38 /src/FocusControl.hh
parentf53c93e5e0add69771204056550d07b4fee4efef (diff)
downloadfluxbox-5ceacc65925f597180c918fcaa2a8171c42cbcdd.zip
fluxbox-5ceacc65925f597180c918fcaa2a8171c42cbcdd.tar.bz2
moved all focus handling to FocusControl
Diffstat (limited to 'src/FocusControl.hh')
-rw-r--r--src/FocusControl.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/FocusControl.hh b/src/FocusControl.hh
index 4870c1f..0d9cd05 100644
--- a/src/FocusControl.hh
+++ b/src/FocusControl.hh
@@ -96,7 +96,8 @@ public:
96 void removeClient(WinClient &client); 96 void removeClient(WinClient &client);
97 97
98 static void revertFocus(BScreen &screen); 98 static void revertFocus(BScreen &screen);
99 static void unfocusWindow(WinClient &client, bool full_revert, bool unfocus_frame); 99 // like revertFocus, but specifically related to this window (transients etc)
100 static void unfocusWindow(WinClient &client, bool full_revert = true, bool unfocus_frame = false);
100 static void setFocusedWindow(WinClient *focus_to); 101 static void setFocusedWindow(WinClient *focus_to);
101 static WinClient *focusedWindow() { return s_focused_window; } 102 static WinClient *focusedWindow() { return s_focused_window; }
102private: 103private: