diff options
Diffstat (limited to 'src/FbCommandFactory.cc')
-rw-r--r-- | src/FbCommandFactory.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/FbCommandFactory.cc b/src/FbCommandFactory.cc index 8f5dcf8..902461c 100644 --- a/src/FbCommandFactory.cc +++ b/src/FbCommandFactory.cc | |||
@@ -257,6 +257,8 @@ FbCommandFactory::FbCommandFactory() { | |||
257 | "setresourcevalue", | 257 | "setresourcevalue", |
258 | "setresourcevaluedialog", | 258 | "setresourcevaluedialog", |
259 | "shade", | 259 | "shade", |
260 | "shadeon", | ||
261 | "shadeoff", | ||
260 | "shadewindow", | 262 | "shadewindow", |
261 | "showdesktop", | 263 | "showdesktop", |
262 | "startmoving", | 264 | "startmoving", |
@@ -541,6 +543,10 @@ FbTk::Command *FbCommandFactory::stringToCommand(const std::string &command, | |||
541 | return new WindowListCmd(FbTk::RefCount<FbTk::Command>(new CurrentWindowCmd(&FluxboxWindow::kill)), arguments); | 543 | return new WindowListCmd(FbTk::RefCount<FbTk::Command>(new CurrentWindowCmd(&FluxboxWindow::kill)), arguments); |
542 | else if (command == "shade" || command == "shadewindow") | 544 | else if (command == "shade" || command == "shadewindow") |
543 | return new WindowListCmd(FbTk::RefCount<FbTk::Command>(new CurrentWindowCmd(&FluxboxWindow::shade)), arguments); | 545 | return new WindowListCmd(FbTk::RefCount<FbTk::Command>(new CurrentWindowCmd(&FluxboxWindow::shade)), arguments); |
546 | else if (command == "shadeon" ) | ||
547 | return new WindowListCmd(FbTk::RefCount<FbTk::Command>(new CurrentWindowCmd(&FluxboxWindow::shadeOn)), arguments); | ||
548 | else if (command == "shadeoff" ) | ||
549 | return new WindowListCmd(FbTk::RefCount<FbTk::Command>(new CurrentWindowCmd(&FluxboxWindow::shadeOff)), arguments); | ||
544 | else if (command == "stick" || command == "stickwindow") | 550 | else if (command == "stick" || command == "stickwindow") |
545 | return new WindowListCmd(FbTk::RefCount<FbTk::Command>(new CurrentWindowCmd(&FluxboxWindow::stick)), arguments); | 551 | return new WindowListCmd(FbTk::RefCount<FbTk::Command>(new CurrentWindowCmd(&FluxboxWindow::stick)), arguments); |
546 | else if (command == "toggledecor") | 552 | else if (command == "toggledecor") |