aboutsummaryrefslogtreecommitdiff
path: root/include/sway
diff options
context:
space:
mode:
authorPedro CĂ´rte-Real <pedro@pedrocr.net>2019-07-28 12:19:34 +0100
committerDrew DeVault <sir@cmpwn.com>2020-01-01 10:14:40 -0700
commit79c5f5ba1245a8c3d575770419a6501447e78919 (patch)
tree8062565c8e79253e958037d6a627618d8b8173ce /include/sway
parentbd1fb76e0f47b2320acd6492995c9545e37c4bb8 (diff)
Make all the container dimensions integers
Containers are always fixed to the pixel grid so position and size them with integers instead of doubles. Functionally this should be no different since rounding down is already being done on things like layout. But it makes it clear what the intention is and avoids bugs where fractional pixels are used. The translating and moving code is still using doubles because the cursors can have fractional pixels and thus the code is plumbed that way. But that could also probably be changed easily by doing the integer conversions earlier and plumbing with int.
Diffstat (limited to 'include/sway')
-rw-r--r--include/sway/tree/container.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 62c6556b..b31c6e7c 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -41,8 +41,8 @@ enum wlr_direction;
struct sway_container_state {
// Container properties
enum sway_container_layout layout;
- double x, y;
- double width, height;
+ int x, y;
+ int width, height;
enum sway_fullscreen_mode fullscreen_mode;
@@ -60,8 +60,8 @@ struct sway_container_state {
bool border_left;
bool border_right;
- double content_x, content_y;
- double content_width, content_height;
+ int content_x, content_y;
+ int content_width, content_height;
};
struct sway_container {
@@ -83,10 +83,10 @@ struct sway_container {
// For C_ROOT, this has no meaning
// For other types, this is the position in layout coordinates
// Includes borders
- double x, y;
- double width, height;
- double saved_x, saved_y;
- double saved_width, saved_height;
+ int x, y;
+ int width, height;
+ int saved_x, saved_y;
+ int saved_width, saved_height;
// The share of the space of parent container this container occupies
double width_fraction;
@@ -98,14 +98,14 @@ struct sway_container {
double child_total_height;
// These are in layout coordinates.
- double content_x, content_y;
+ int content_x, content_y;
int content_width, content_height;
// In most cases this is the same as the content x and y, but if the view
// refuses to resize to the content dimensions then it can be smaller.
// These are in layout coordinates.
- double surface_x, surface_y;
- double surface_width, surface_height;
+ int surface_x, surface_y;
+ int surface_width, surface_height;
enum sway_fullscreen_mode fullscreen_mode;