diff options
author | fluxgen <fluxgen> | 2004-12-10 09:49:01 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2004-12-10 09:49:01 (GMT) |
commit | 6ba7744f65453a2705ba1bb88ce355c4cfde9276 (patch) | |
tree | f8ce7cf3fc2be0ab624edaa827ea73dab4ae436c /src/CurrentWindowCmd.hh | |
parent | cc486c194f862bf0d8d8b3644c321446b0d3f051 (diff) | |
download | fluxbox_pavel-6ba7744f65453a2705ba1bb88ce355c4cfde9276.zip fluxbox_pavel-6ba7744f65453a2705ba1bb88ce355c4cfde9276.tar.bz2 |
Tab command, thanks Steeve Lennmark, steeve dot lennmark at mediasvar dot se
Diffstat (limited to 'src/CurrentWindowCmd.hh')
-rw-r--r-- | src/CurrentWindowCmd.hh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/CurrentWindowCmd.hh b/src/CurrentWindowCmd.hh index 2bc2c81..9b8e8fb 100644 --- a/src/CurrentWindowCmd.hh +++ b/src/CurrentWindowCmd.hh | |||
@@ -87,6 +87,16 @@ private: | |||
87 | const int m_workspace_num; | 87 | const int m_workspace_num; |
88 | }; | 88 | }; |
89 | 89 | ||
90 | // goto tab | ||
91 | class GoToTabCmd: public WindowHelperCmd { | ||
92 | public: | ||
93 | explicit GoToTabCmd(int tab_num):m_tab_num(tab_num) { } | ||
94 | protected: | ||
95 | void real_execute(); | ||
96 | private: | ||
97 | const int m_tab_num; | ||
98 | }; | ||
99 | |||
90 | // move cmd, relative position | 100 | // move cmd, relative position |
91 | class MoveCmd: public WindowHelperCmd { | 101 | class MoveCmd: public WindowHelperCmd { |
92 | public: | 102 | public: |