diff options
-rw-r--r-- | src/FbCommandFactory.cc | 8 |
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 | // |