diff options
author | markt <markt> | 2007-12-09 20:47:41 (GMT) |
---|---|---|
committer | markt <markt> | 2007-12-09 20:47:41 (GMT) |
commit | 95f9c2d6806cf110597a992be45b17a3b13accd7 (patch) | |
tree | 21c6d41985a0c2f86f01701efcd6f5c1878948b2 /src/FbCommandFactory.cc | |
parent | 0b416600779f9e3560eab178e3e4abfb09793d30 (diff) | |
download | fluxbox-95f9c2d6806cf110597a992be45b17a3b13accd7.zip fluxbox-95f9c2d6806cf110597a992be45b17a3b13accd7.tar.bz2 |
added OnTitlebar modifier to keys file
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") |