aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/view.h
diff options
context:
space:
mode:
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