aboutsummaryrefslogtreecommitdiff
path: root/include/rootston
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-12-06 07:30:19 -0500
committerGitHub <noreply@github.com>2018-12-06 07:30:19 -0500
commit8cb4df2a30e26c7d173d740eba36a3cd78a578b1 (patch)
tree27d6b9876735658d3d20e2899e050e2b9f21cb07 /include/rootston
parente539a8b2081f458ea2d272654b3074390920510e (diff)
parent0f3a061f602a1384d7e0778ecd090519e0cb2b30 (diff)
Merge pull request #1416 from kragniz/rootston-use-box
rootston: use box for views position
Diffstat (limited to 'include/rootston')
-rw-r--r--include/rootston/desktop.h4
-rw-r--r--include/rootston/view.h3
2 files changed, 3 insertions, 4 deletions
diff --git a/include/rootston/desktop.h b/include/rootston/desktop.h
index 31338acf..cd85e794 100644
--- a/include/rootston/desktop.h
+++ b/include/rootston/desktop.h
@@ -99,8 +99,8 @@ void view_destroy(struct roots_view *view);
void view_activate(struct roots_view *view, bool activate);
void view_apply_damage(struct roots_view *view);
void view_damage_whole(struct roots_view *view);
-void view_update_position(struct roots_view *view, double x, double y);
-void view_update_size(struct roots_view *view, uint32_t width, uint32_t height);
+void view_update_position(struct roots_view *view, int x, int y);
+void view_update_size(struct roots_view *view, int width, int height);
void view_update_decorated(struct roots_view *view, bool decorated);
void view_initial_focus(struct roots_view *view);
void view_map(struct roots_view *view, struct wlr_surface *surface);
diff --git a/include/rootston/view.h b/include/rootston/view.h
index 0c75737b..e67aaf36 100644
--- a/include/rootston/view.h
+++ b/include/rootston/view.h
@@ -88,8 +88,7 @@ struct roots_view {
struct roots_desktop *desktop;
struct wl_list link; // roots_desktop::views
- double x, y;
- uint32_t width, height;
+ struct wlr_box box;
float rotation;
float alpha;