diff options
author | fluxgen <fluxgen> | 2006-02-18 11:39:38 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2006-02-18 11:39:38 (GMT) |
commit | 4d52797b955b8e38b9e49802981e69fb34a734bc (patch) | |
tree | d541712bb9720c47fa58fda7476528649c32fbca /src/WorkspaceCmd.hh | |
parent | d23eeeaa4e1ed5adb76d97eb47dd0b88b6dfed3f (diff) | |
download | fluxbox_pavel-4d52797b955b8e38b9e49802981e69fb34a734bc.zip fluxbox_pavel-4d52797b955b8e38b9e49802981e69fb34a734bc.tar.bz2 |
moved all focus handling to class FocusControl
Diffstat (limited to 'src/WorkspaceCmd.hh')
-rw-r--r-- | src/WorkspaceCmd.hh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/WorkspaceCmd.hh b/src/WorkspaceCmd.hh index 72b90ef..7051fa0 100644 --- a/src/WorkspaceCmd.hh +++ b/src/WorkspaceCmd.hh | |||
@@ -25,7 +25,9 @@ | |||
25 | #ifndef WORKSPACECMD_HH | 25 | #ifndef WORKSPACECMD_HH |
26 | #define WORKSPACECMD_HH | 26 | #define WORKSPACECMD_HH |
27 | #include "Command.hh" | 27 | #include "Command.hh" |
28 | #include "Screen.hh" | 28 | |
29 | #include "FocusControl.hh" | ||
30 | |||
29 | 31 | ||
30 | class NextWindowCmd: public FbTk::Command { | 32 | class NextWindowCmd: public FbTk::Command { |
31 | public: | 33 | public: |
@@ -45,10 +47,10 @@ private: | |||
45 | 47 | ||
46 | class DirFocusCmd: public FbTk::Command { | 48 | class DirFocusCmd: public FbTk::Command { |
47 | public: | 49 | public: |
48 | explicit DirFocusCmd(const BScreen::FocusDir dir): m_dir(dir) { } | 50 | explicit DirFocusCmd(const FocusControl::FocusDir dir): m_dir(dir) { } |
49 | void execute(); | 51 | void execute(); |
50 | private: | 52 | private: |
51 | const BScreen::FocusDir m_dir; | 53 | const FocusControl::FocusDir m_dir; |
52 | }; | 54 | }; |
53 | 55 | ||
54 | class NextWorkspaceCmd: public FbTk::Command { | 56 | class NextWorkspaceCmd: public FbTk::Command { |