aboutsummaryrefslogtreecommitdiff
path: root/src/FbCommandFactory.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-07-28 12:05:27 (GMT)
committerfluxgen <fluxgen>2003-07-28 12:05:27 (GMT)
commit7c76910844e8b6f13fe4b8eda1a37cb636e0e8c4 (patch)
treedf276a5df7c4da66f9ab70f8f6cd44578dd67095 /src/FbCommandFactory.cc
parent0ec62e41d2cf5e7f60b57a7f89058e83b237dff5 (diff)
downloadfluxbox-7c76910844e8b6f13fe4b8eda1a37cb636e0e8c4.zip
fluxbox-7c76910844e8b6f13fe4b8eda1a37cb636e0e8c4.tar.bz2
added movetableft and movetabright commands
Diffstat (limited to 'src/FbCommandFactory.cc')
-rw-r--r--src/FbCommandFactory.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/FbCommandFactory.cc b/src/FbCommandFactory.cc
index 2194bd6..237442a 100644
--- a/src/FbCommandFactory.cc
+++ b/src/FbCommandFactory.cc
@@ -20,7 +20,7 @@
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE. 21// DEALINGS IN THE SOFTWARE.
22 22
23// $Id: FbCommandFactory.cc,v 1.10 2003/07/26 13:44:00 rathnor Exp $ 23// $Id: FbCommandFactory.cc,v 1.11 2003/07/28 12:05:27 fluxgen Exp $
24 24
25#include "FbCommandFactory.hh" 25#include "FbCommandFactory.hh"
26 26
@@ -70,6 +70,8 @@ FbCommandFactory::FbCommandFactory() {
70 "killwindow", 70 "killwindow",
71 "nexttab", 71 "nexttab",
72 "prevtab", 72 "prevtab",
73 "movetableft",
74 "movetabright",
73 "detachclient", 75 "detachclient",
74 "nextworkspace", 76 "nextworkspace",
75 "rightworkspace", 77 "rightworkspace",
@@ -151,6 +153,10 @@ FbTk::Command *FbCommandFactory::stringToCommand(const std::string &command,
151 return new CurrentWindowCmd(&FluxboxWindow::nextClient); 153 return new CurrentWindowCmd(&FluxboxWindow::nextClient);
152 else if (command == "prevtab") 154 else if (command == "prevtab")
153 return new CurrentWindowCmd(&FluxboxWindow::prevClient); 155 return new CurrentWindowCmd(&FluxboxWindow::prevClient);
156 else if (command == "movetableft")
157 return new CurrentWindowCmd(&FluxboxWindow::moveClientLeft);
158 else if (command == "movetabright")
159 return new CurrentWindowCmd(&FluxboxWindow::moveClientRight);
154 else if (command == "detachclient") 160 else if (command == "detachclient")
155 return new CurrentWindowCmd(&FluxboxWindow::detachCurrentClient); 161 return new CurrentWindowCmd(&FluxboxWindow::detachCurrentClient);
156 // 162 //