all repos — fluxbox @ 7c76910844e8b6f13fe4b8eda1a37cb636e0e8c4

custom fork of the fluxbox windowmanager

added movetableft and movetabright commands
fluxgen fluxgen
commit

7c76910844e8b6f13fe4b8eda1a37cb636e0e8c4

parent

0ec62e41d2cf5e7f60b57a7f89058e83b237dff5

1 files changed, 7 insertions(+), 1 deletions(-)

jump to
M src/FbCommandFactory.ccsrc/FbCommandFactory.cc

@@ -20,7 +20,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: FbCommandFactory.cc,v 1.10 2003/07/26 13:44:00 rathnor Exp $ +// $Id: FbCommandFactory.cc,v 1.11 2003/07/28 12:05:27 fluxgen Exp $ #include "FbCommandFactory.hh"

@@ -70,6 +70,8 @@ "sendtoworkspace",

"killwindow", "nexttab", "prevtab", + "movetableft", + "movetabright", "detachclient", "nextworkspace", "rightworkspace",

@@ -151,6 +153,10 @@ else if (command == "nexttab")

return new CurrentWindowCmd(&FluxboxWindow::nextClient); else if (command == "prevtab") return new CurrentWindowCmd(&FluxboxWindow::prevClient); + else if (command == "movetableft") + return new CurrentWindowCmd(&FluxboxWindow::moveClientLeft); + else if (command == "movetabright") + return new CurrentWindowCmd(&FluxboxWindow::moveClientRight); else if (command == "detachclient") return new CurrentWindowCmd(&FluxboxWindow::detachCurrentClient); //