aboutsummaryrefslogtreecommitdiff
path: root/src/FbCommandFactory.cc
diff options
context:
space:
mode:
authormarkt <markt>2007-03-21 22:10:22 (GMT)
committermarkt <markt>2007-03-21 22:10:22 (GMT)
commit53fff0d24b996f01d7426e44420c158500a4d311 (patch)
tree3bee2182e4458e89dba2732594fbc2f71add1331 /src/FbCommandFactory.cc
parent51bcee666516ffdbe205b0e74ca209f82fcb1f31 (diff)
downloadfluxbox-53fff0d24b996f01d7426e44420c158500a4d311.zip
fluxbox-53fff0d24b996f01d7426e44420c158500a4d311.tar.bz2
added TypeAheadFocus command
Diffstat (limited to 'src/FbCommandFactory.cc')
-rw-r--r--src/FbCommandFactory.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/FbCommandFactory.cc b/src/FbCommandFactory.cc
index c02365a..bd20c39 100644
--- a/src/FbCommandFactory.cc
+++ b/src/FbCommandFactory.cc
@@ -145,6 +145,7 @@ FbCommandFactory::FbCommandFactory() {
145 "taketoprevworkspace", 145 "taketoprevworkspace",
146 "togglecmd", 146 "togglecmd",
147 "toggledecor", 147 "toggledecor",
148 "typeaheadfocus",
148 "windowmenu", 149 "windowmenu",
149 "workspace", 150 "workspace",
150 /* NOTE: The following are DEPRECATED and subject to removal */ 151 /* NOTE: The following are DEPRECATED and subject to removal */
@@ -419,6 +420,8 @@ FbTk::Command *FbCommandFactory::stringToCommand(const std::string &command,
419 return new NextWindowCmd(atoi(arguments.c_str())); 420 return new NextWindowCmd(atoi(arguments.c_str()));
420 else if (command == "prevwindow") 421 else if (command == "prevwindow")
421 return new PrevWindowCmd(atoi(arguments.c_str())); 422 return new PrevWindowCmd(atoi(arguments.c_str()));
423 else if (command == "typeaheadfocus")
424 return new TypeAheadFocusCmd(atoi(arguments.c_str()));
422 else if (command == "focusup") 425 else if (command == "focusup")
423 return new DirFocusCmd(FocusControl::FOCUSUP); 426 return new DirFocusCmd(FocusControl::FOCUSUP);
424 else if (command == "focusdown") 427 else if (command == "focusdown")