aboutsummaryrefslogtreecommitdiff
path: root/rootston/desktop.c
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2018-01-21 18:46:19 -0500
committerTony Crisci <tony@dubstepdish.com>2018-01-21 18:46:19 -0500
commite8c407d00e9acaff27973af8df4eaf19b6571d88 (patch)
treef4ce520ae67e8274a38abdb1406faf51d10ae8c3 /rootston/desktop.c
parent54776dd19c20b0d0775a9426e811f81004a9a960 (diff)
rename wlr_deco_part to roots_deco_part
Diffstat (limited to 'rootston/desktop.c')
-rw-r--r--rootston/desktop.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/rootston/desktop.c b/rootston/desktop.c
index 2632eebd..5fa27db2 100644
--- a/rootston/desktop.c
+++ b/rootston/desktop.c
@@ -44,9 +44,9 @@ void view_get_deco_box(const struct roots_view *view, struct wlr_box *box) {
box->height += (view->border_width * 2 + view->titlebar_height);
}
-enum wlr_deco_part view_get_deco_part(struct roots_view *view, double sx, double sy) {
+enum roots_deco_part view_get_deco_part(struct roots_view *view, double sx, double sy) {
if (!view->decorated) {
- return WLR_DECO_PART_NONE;
+ return ROOTS_DECO_PART_NONE;
}
int sw = view->wlr_surface->current->width;
@@ -55,24 +55,24 @@ enum wlr_deco_part view_get_deco_part(struct roots_view *view, double sx, double
int titlebar_h = view->titlebar_height;
if (sx > 0 && sx < sw && sy < 0 && sy > -view->titlebar_height) {
- return WLR_DECO_PART_TITLEBAR;
+ return ROOTS_DECO_PART_TITLEBAR;
}
- enum wlr_deco_part parts = 0;
+ enum roots_deco_part parts = 0;
if (sy >= -(titlebar_h + bw) &&
sy <= sh + bw) {
if (sx < 0 && sx > -bw) {
- parts |= WLR_DECO_PART_LEFT_BORDER;
+ parts |= ROOTS_DECO_PART_LEFT_BORDER;
} else if (sx > sw && sx < sw + bw) {
- parts |= WLR_DECO_PART_RIGHT_BORDER;
+ parts |= ROOTS_DECO_PART_RIGHT_BORDER;
}
}
if (sx >= -bw && sx <= sw + bw) {
if (sy > sh && sy <= sh + bw) {
- parts |= WLR_DECO_PART_BOTTOM_BORDER;
+ parts |= ROOTS_DECO_PART_BOTTOM_BORDER;
} else if (sy >= -(titlebar_h + bw) && sy < 0) {
- parts |= WLR_DECO_PART_TOP_BORDER;
+ parts |= ROOTS_DECO_PART_TOP_BORDER;
}
}