From a97c876d31d11ee43d0e9f0a68fd7425df8cf8c8 Mon Sep 17 00:00:00 2001 From: batman Date: Thu, 15 Apr 2010 10:40:18 -0700 Subject: [PATCH] added a move mode and command --- src/commands.c | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/src/commands.c b/src/commands.c index b2649bee..0f970e9d 100644 --- a/src/commands.c +++ b/src/commands.c @@ -866,6 +866,35 @@ static void next_previous_workspace(xcb_connection_t *conn, int direction) { } } +static void parse_move_command(xcb_connection_t *conn, Client *last_focused, const char *command) { + int first, second; + resize_orientation_t orientation = O_VERTICAL; + Container *con = last_focused->container; + Workspace *ws = last_focused->workspace; + if (client_is_floating(last_focused)) { + DLOG("Moving a floating client\n"); + if (STARTS_WITH(command, "left")) { + command += strlen("left"); + last_focused->rect.x -= atoi(command); + } else if (STARTS_WITH(command, "right")) { + command += strlen("right"); + last_focused->rect.x += atoi(command); + } else if (STARTS_WITH(command, "top")) { + command += strlen("top"); + last_focused->rect.y -= atoi(command); + } else if (STARTS_WITH(command, "bottom")) { + command += strlen("bottom"); + last_focused->rect.y += atoi(command); + } else { + ELOG("Syntax: move \n"); + return; + } + /* resize_client flushes */ + resize_client(conn, last_focused); + return; + } +} + static void parse_resize_command(xcb_connection_t *conn, Client *last_focused, const char *command) { int first, second; resize_orientation_t orientation = O_VERTICAL; @@ -1030,6 +1059,14 @@ void parse_command(xcb_connection_t *conn, const char *command) { return; } + if (STARTS_WITH(command, "move ")) { + if (last_focused == NULL) + return; + const char *rest = command + strlen("move "); + parse_move_command(conn, last_focused, rest); + return; + } + if (STARTS_WITH(command, "mode ")) { const char *rest = command + strlen("mode "); switch_mode(conn, rest); -- 2.39.5