From 764489e73760534d49760af123cae46109564e86 Mon Sep 17 00:00:00 2001
From: Drew DeVault <sir@cmpwn.com>
Date: Fri, 6 Apr 2018 15:03:05 -0400
Subject: Break everything^W^WUse wlr_box for sway_container

---
 sway/commands/layout.c | 2 +-
 sway/commands/move.c   | 7 ++++---
 sway/commands/resize.c | 8 ++++----
 3 files changed, 9 insertions(+), 8 deletions(-)

(limited to 'sway/commands')

diff --git a/sway/commands/layout.c b/sway/commands/layout.c
index 4c49a627..162173c5 100644
--- a/sway/commands/layout.c
+++ b/sway/commands/layout.c
@@ -49,7 +49,7 @@ struct cmd_results *cmd_layout(int argc, char **argv) {
 		}
 	}
 
-	arrange_windows(parent, parent->width, parent->height);
+	arrange_windows(parent, parent->box.width, parent->box.height);
 
 	return cmd_results_new(CMD_SUCCESS, NULL, NULL);
 }
diff --git a/sway/commands/move.c b/sway/commands/move.c
index c954ab94..e8668ce7 100644
--- a/sway/commands/move.c
+++ b/sway/commands/move.c
@@ -95,7 +95,8 @@ static struct cmd_results *cmd_move_container(struct sway_container *current,
 		}
 		struct sway_container *source = container_parent(current, C_OUTPUT);
 		struct sway_container *destination = output_in_direction(argv[3],
-				source->sway_output->wlr_output, current->x, current->y);
+				source->sway_output->wlr_output,
+				current->box.x, current->box.y);
 		if (!destination) {
 			return cmd_results_new(CMD_FAILURE, "move workspace",
 				"Can't find output with name/direction '%s'", argv[3]);
@@ -124,8 +125,8 @@ static struct cmd_results *cmd_move_workspace(struct sway_container *current,
 		return cmd_results_new(CMD_INVALID, "move", expected_syntax);
 	}
 	struct sway_container *source = container_parent(current, C_OUTPUT);
-	int center_x = current->width / 2 + current->x,
-		center_y = current->height / 2 + current->y;
+	int center_x = current->box.width / 2 + current->box.x,
+		center_y = current->box.height / 2 + current->box.y;
 	struct sway_container *destination = output_in_direction(argv[3],
 			source->sway_output->wlr_output, center_x, center_y);
 	if (!destination) {
diff --git a/sway/commands/resize.c b/sway/commands/resize.c
index 93c1fe7d..8e295f65 100644
--- a/sway/commands/resize.c
+++ b/sway/commands/resize.c
@@ -48,11 +48,11 @@ static enum resize_axis parse_resize_axis(const char *axis) {
 }
 
 static int parallel_coord(struct sway_container *c, enum resize_axis a) {
-	return a == RESIZE_AXIS_HORIZONTAL ? c->x : c->y;
+	return a == RESIZE_AXIS_HORIZONTAL ? c->box.x : c->box.y;
 }
 
 static int parallel_size(struct sway_container *c, enum resize_axis a) {
-	return a == RESIZE_AXIS_HORIZONTAL ? c->width : c->height;
+	return a == RESIZE_AXIS_HORIZONTAL ? c->box.width : c->box.height;
 }
 
 static void resize_tiled(int amount, enum resize_axis axis) {
@@ -196,10 +196,10 @@ static void resize(int amount, enum resize_axis axis, enum resize_unit unit) {
 		float pct = amount / 100.0f;
 		switch (axis) {
 		case RESIZE_AXIS_HORIZONTAL:
-			amount = (float)current->width * pct;
+			amount = (float)current->box.width * pct;
 			break;
 		case RESIZE_AXIS_VERTICAL:
-			amount = (float)current->height * pct;
+			amount = (float)current->box.height * pct;
 			break;
 		default:
 			sway_assert(0, "invalid resize axis");
-- 
cgit v1.2.3