aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/view.h
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2018-01-21 18:24:53 -0500
committerTony Crisci <tony@dubstepdish.com>2018-01-21 18:24:53 -0500
commit41832714758c003c557da30193c6b02a2afe54b2 (patch)
tree962cfcd132d57b0a711e3a74364a05d7dbb50ef0 /include/rootston/view.h
parentd13114520acef63f9293ff313b8a549bc81be30c (diff)
make it work with rotation
Diffstat (limited to 'include/rootston/view.h')
-rw-r--r--include/rootston/view.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/include/rootston/view.h b/include/rootston/view.h
index 68ccbef8..77b78852 100644
--- a/include/rootston/view.h
+++ b/include/rootston/view.h
@@ -120,7 +120,6 @@ struct roots_view {
};
void view_get_box(const struct roots_view *view, struct wlr_box *box);
-void view_get_deco_box(const struct roots_view *view, struct wlr_box *box);
void view_activate(struct roots_view *view, bool active);
void view_move(struct roots_view *view, double x, double y);
void view_resize(struct roots_view *view, uint32_t width, uint32_t height);
@@ -134,4 +133,17 @@ bool view_center(struct roots_view *view);
void view_setup(struct roots_view *view);
void view_teardown(struct roots_view *view);
+void view_get_deco_box(const struct roots_view *view, struct wlr_box *box);
+
+enum wlr_deco_part {
+ WLR_DECO_PART_NONE = 0,
+ WLR_DECO_PART_TOP_BORDER = (1 << 0),
+ WLR_DECO_PART_BOTTOM_BORDER = (1 << 1),
+ WLR_DECO_PART_LEFT_BORDER = (1 << 2),
+ WLR_DECO_PART_RIGHT_BORDER = (1 << 3),
+ WLR_DECO_PART_TITLEBAR = (1 << 4),
+};
+
+enum wlr_deco_part view_get_deco_part(struct roots_view *view, double sx, double sy);
+
#endif