2020-06-29 19:27:59 +01:00
|
|
|
/*
|
2021-03-21 20:54:55 +00:00
|
|
|
* Helpers for view server side decorations
|
2020-06-29 19:27:59 +01:00
|
|
|
*
|
2021-07-16 17:07:00 +01:00
|
|
|
* Copyright (C) Johan Malm 2020-2021
|
2020-06-29 19:27:59 +01:00
|
|
|
*/
|
|
|
|
|
|
2020-09-28 20:53:59 +01:00
|
|
|
#include <assert.h>
|
2020-09-28 20:41:41 +01:00
|
|
|
#include "config/rcxml.h"
|
2020-05-04 22:21:30 +01:00
|
|
|
#include "labwc.h"
|
2021-03-21 21:46:16 +00:00
|
|
|
#include "theme.h"
|
2021-03-21 20:54:55 +00:00
|
|
|
#include "ssd.h"
|
2020-07-06 21:58:51 +01:00
|
|
|
|
2021-07-26 20:06:52 +01:00
|
|
|
#define INVISIBLE_MARGIN (16)
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
struct border
|
2021-03-20 14:41:39 +00:00
|
|
|
ssd_thickness(struct view *view)
|
2020-05-04 22:21:30 +01:00
|
|
|
{
|
2021-03-27 21:09:45 +00:00
|
|
|
struct theme *theme = view->server->theme;
|
2020-09-15 20:41:01 +01:00
|
|
|
struct border border = {
|
2021-04-15 20:13:49 +01:00
|
|
|
.top = theme->title_height + theme->border_width,
|
2021-03-27 21:09:45 +00:00
|
|
|
.bottom = theme->border_width,
|
|
|
|
|
.left = theme->border_width,
|
|
|
|
|
.right = theme->border_width,
|
2020-05-04 22:21:30 +01:00
|
|
|
};
|
2020-09-15 20:41:01 +01:00
|
|
|
return border;
|
2020-05-04 22:21:30 +01:00
|
|
|
}
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
struct wlr_box
|
2021-03-20 14:41:39 +00:00
|
|
|
ssd_max_extents(struct view *view)
|
2020-09-17 21:11:54 +01:00
|
|
|
{
|
2021-03-20 14:41:39 +00:00
|
|
|
struct border border = ssd_thickness(view);
|
2020-09-17 21:11:54 +01:00
|
|
|
struct wlr_box box = {
|
|
|
|
|
.x = view->x - border.left,
|
|
|
|
|
.y = view->y - border.top,
|
|
|
|
|
.width = view->w + border.left + border.right,
|
|
|
|
|
.height = view->h + border.top + border.bottom,
|
|
|
|
|
};
|
|
|
|
|
return box;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-26 20:06:52 +01:00
|
|
|
static struct wlr_box
|
|
|
|
|
ssd_interactive_box(struct view *view, enum ssd_part_type type)
|
2020-05-04 22:21:30 +01:00
|
|
|
{
|
2021-03-27 21:09:45 +00:00
|
|
|
struct theme *theme = view->server->theme;
|
2021-02-15 17:58:04 +00:00
|
|
|
struct wlr_box box = { 0 };
|
2021-04-15 20:13:49 +01:00
|
|
|
int corner_square = theme->title_height + theme->border_width;
|
2021-03-21 21:46:16 +00:00
|
|
|
switch (type) {
|
2021-03-20 14:41:39 +00:00
|
|
|
case LAB_SSD_BUTTON_CLOSE:
|
2021-04-15 20:13:49 +01:00
|
|
|
box.x = view->x + view->w - theme->title_height;
|
|
|
|
|
box.y = view->y - theme->title_height;
|
|
|
|
|
box.width = theme->title_height;
|
|
|
|
|
box.height = theme->title_height;
|
2021-03-27 21:04:12 +00:00
|
|
|
break;
|
|
|
|
|
case LAB_SSD_BUTTON_MAXIMIZE:
|
2021-04-15 20:13:49 +01:00
|
|
|
box.x = view->x + view->w - theme->title_height * 2;
|
|
|
|
|
box.y = view->y - theme->title_height;
|
|
|
|
|
box.width = theme->title_height;
|
|
|
|
|
box.height = theme->title_height;
|
2021-03-27 21:04:12 +00:00
|
|
|
break;
|
|
|
|
|
case LAB_SSD_BUTTON_ICONIFY:
|
2021-04-15 20:13:49 +01:00
|
|
|
box.x = view->x + view->w - theme->title_height * 3;
|
|
|
|
|
box.y = view->y - theme->title_height;
|
|
|
|
|
box.width = theme->title_height;
|
|
|
|
|
box.height = theme->title_height;
|
2020-06-29 19:27:59 +01:00
|
|
|
break;
|
2021-03-20 14:41:39 +00:00
|
|
|
case LAB_SSD_PART_TITLE:
|
2021-07-26 20:06:52 +01:00
|
|
|
box.x = view->x;
|
2021-04-15 20:13:49 +01:00
|
|
|
box.y = view->y - theme->title_height;
|
2021-07-26 20:06:52 +01:00
|
|
|
box.width = view->w;
|
2021-04-15 20:13:49 +01:00
|
|
|
box.height = theme->title_height;
|
2020-05-30 21:28:17 +01:00
|
|
|
break;
|
2021-07-26 20:37:36 +01:00
|
|
|
case LAB_SSD_PART_CORNER_TOP_LEFT:
|
|
|
|
|
box.x = view->x - theme->border_width - INVISIBLE_MARGIN;
|
|
|
|
|
box.y = view->y - corner_square - INVISIBLE_MARGIN;
|
|
|
|
|
box.width = corner_square + INVISIBLE_MARGIN;
|
|
|
|
|
box.height = corner_square + INVISIBLE_MARGIN;
|
|
|
|
|
break;
|
|
|
|
|
case LAB_SSD_PART_CORNER_TOP_RIGHT:
|
|
|
|
|
box.x = view->x + view->w - theme->title_height;
|
|
|
|
|
box.y = view->y - corner_square - INVISIBLE_MARGIN;
|
|
|
|
|
box.width = corner_square + INVISIBLE_MARGIN;
|
|
|
|
|
box.height = corner_square + INVISIBLE_MARGIN;
|
|
|
|
|
break;
|
|
|
|
|
case LAB_SSD_PART_CORNER_BOTTOM_RIGHT:
|
|
|
|
|
box.x = view->x + view->w - corner_square;
|
|
|
|
|
box.y = view->y + view->h - corner_square;
|
|
|
|
|
box.width = corner_square + INVISIBLE_MARGIN;
|
|
|
|
|
box.height = corner_square + INVISIBLE_MARGIN;
|
|
|
|
|
break;
|
|
|
|
|
case LAB_SSD_PART_CORNER_BOTTOM_LEFT:
|
|
|
|
|
box.x = view->x - theme->border_width - INVISIBLE_MARGIN;
|
|
|
|
|
box.y = view->y + view->h - corner_square;
|
|
|
|
|
box.width = corner_square + INVISIBLE_MARGIN;
|
|
|
|
|
box.height = corner_square + INVISIBLE_MARGIN;
|
|
|
|
|
break;
|
2021-03-20 14:41:39 +00:00
|
|
|
case LAB_SSD_PART_TOP:
|
2021-04-15 20:13:49 +01:00
|
|
|
box.x = view->x + theme->title_height;
|
2021-07-26 20:06:52 +01:00
|
|
|
box.y = view->y - corner_square - INVISIBLE_MARGIN;
|
2021-04-15 20:13:49 +01:00
|
|
|
box.width = view->w - 2 * theme->title_height;
|
2021-07-26 20:06:52 +01:00
|
|
|
box.height = theme->border_width + INVISIBLE_MARGIN;
|
2020-05-30 21:28:17 +01:00
|
|
|
break;
|
2021-03-20 14:41:39 +00:00
|
|
|
case LAB_SSD_PART_RIGHT:
|
2020-08-31 08:12:44 +01:00
|
|
|
box.x = view->x + view->w;
|
2021-03-27 21:04:12 +00:00
|
|
|
box.y = view->y;
|
2021-07-26 20:06:52 +01:00
|
|
|
box.width = theme->border_width + INVISIBLE_MARGIN;
|
2021-03-27 21:04:12 +00:00
|
|
|
box.height = view->h;
|
2020-05-30 21:28:17 +01:00
|
|
|
break;
|
2021-03-20 14:41:39 +00:00
|
|
|
case LAB_SSD_PART_BOTTOM:
|
2021-03-27 21:09:45 +00:00
|
|
|
box.x = view->x - theme->border_width;
|
2020-08-31 08:12:44 +01:00
|
|
|
box.y = view->y + view->h;
|
2021-03-27 21:09:45 +00:00
|
|
|
box.width = view->w + 2 * theme->border_width;
|
2021-07-26 20:06:52 +01:00
|
|
|
box.height = +theme->border_width + INVISIBLE_MARGIN;
|
2020-05-04 22:21:30 +01:00
|
|
|
break;
|
2021-03-20 14:41:39 +00:00
|
|
|
case LAB_SSD_PART_LEFT:
|
2021-07-26 20:06:52 +01:00
|
|
|
box.x = view->x - theme->border_width - INVISIBLE_MARGIN;
|
2021-03-27 21:04:12 +00:00
|
|
|
box.y = view->y;
|
2021-07-26 20:06:52 +01:00
|
|
|
box.width = theme->border_width + INVISIBLE_MARGIN;
|
2021-03-27 21:04:12 +00:00
|
|
|
box.height = view->h;
|
|
|
|
|
break;
|
2021-07-26 20:06:52 +01:00
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct wlr_box
|
|
|
|
|
ssd_box(struct view *view, enum ssd_part_type type)
|
|
|
|
|
{
|
|
|
|
|
struct theme *theme = view->server->theme;
|
|
|
|
|
struct wlr_box box = { 0 };
|
|
|
|
|
switch (type) {
|
|
|
|
|
case LAB_SSD_BUTTON_CLOSE:
|
|
|
|
|
box = ssd_interactive_box(view, type);
|
|
|
|
|
break;
|
|
|
|
|
case LAB_SSD_BUTTON_MAXIMIZE:
|
|
|
|
|
box = ssd_interactive_box(view, type);
|
|
|
|
|
break;
|
|
|
|
|
case LAB_SSD_BUTTON_ICONIFY:
|
|
|
|
|
box = ssd_interactive_box(view, type);
|
|
|
|
|
break;
|
|
|
|
|
case LAB_SSD_PART_TITLE:
|
|
|
|
|
box = ssd_interactive_box(view, type);
|
|
|
|
|
box.x += theme->title_height;
|
|
|
|
|
box.width -= 2 * theme->title_height;
|
|
|
|
|
break;
|
2021-07-26 20:37:36 +01:00
|
|
|
case LAB_SSD_PART_CORNER_TOP_LEFT:
|
2021-07-26 20:06:52 +01:00
|
|
|
box = ssd_interactive_box(view, type);
|
2021-07-26 20:37:36 +01:00
|
|
|
box.x += INVISIBLE_MARGIN;
|
2021-07-26 20:06:52 +01:00
|
|
|
box.y += INVISIBLE_MARGIN;
|
2021-07-26 20:37:36 +01:00
|
|
|
box.width -= INVISIBLE_MARGIN;
|
2021-07-26 20:06:52 +01:00
|
|
|
box.height -= INVISIBLE_MARGIN;
|
|
|
|
|
break;
|
2021-07-26 20:37:36 +01:00
|
|
|
case LAB_SSD_PART_CORNER_TOP_RIGHT:
|
2021-07-26 20:06:52 +01:00
|
|
|
box = ssd_interactive_box(view, type);
|
2021-07-26 20:37:36 +01:00
|
|
|
box.y += INVISIBLE_MARGIN;
|
2021-07-26 20:06:52 +01:00
|
|
|
box.width -= INVISIBLE_MARGIN;
|
2021-07-26 20:37:36 +01:00
|
|
|
box.height -= INVISIBLE_MARGIN;
|
2021-07-26 20:06:52 +01:00
|
|
|
break;
|
2021-07-26 20:37:36 +01:00
|
|
|
case LAB_SSD_PART_TOP:
|
2021-07-26 20:06:52 +01:00
|
|
|
box = ssd_interactive_box(view, type);
|
2021-07-26 20:37:36 +01:00
|
|
|
box.y += INVISIBLE_MARGIN;
|
2021-07-26 20:06:52 +01:00
|
|
|
box.height -= INVISIBLE_MARGIN;
|
|
|
|
|
break;
|
2021-07-26 20:37:36 +01:00
|
|
|
case LAB_SSD_PART_RIGHT:
|
2021-07-26 20:06:52 +01:00
|
|
|
box = ssd_interactive_box(view, type);
|
|
|
|
|
box.width -= INVISIBLE_MARGIN;
|
|
|
|
|
break;
|
2021-07-26 20:37:36 +01:00
|
|
|
case LAB_SSD_PART_BOTTOM:
|
2021-07-26 20:06:52 +01:00
|
|
|
box = ssd_interactive_box(view, type);
|
|
|
|
|
box.height -= INVISIBLE_MARGIN;
|
|
|
|
|
break;
|
2021-07-26 20:37:36 +01:00
|
|
|
case LAB_SSD_PART_LEFT:
|
2021-07-26 20:06:52 +01:00
|
|
|
box = ssd_interactive_box(view, type);
|
2021-07-26 20:37:36 +01:00
|
|
|
box.x += INVISIBLE_MARGIN;
|
2021-07-26 20:06:52 +01:00
|
|
|
box.width -= INVISIBLE_MARGIN;
|
2020-05-12 22:24:18 +01:00
|
|
|
break;
|
2021-07-26 20:37:36 +01:00
|
|
|
case LAB_SSD_PART_CORNER_BOTTOM_RIGHT:
|
|
|
|
|
case LAB_SSD_PART_CORNER_BOTTOM_LEFT:
|
2020-05-12 21:00:33 +01:00
|
|
|
default:
|
|
|
|
|
break;
|
2020-05-04 22:21:30 +01:00
|
|
|
}
|
|
|
|
|
return box;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-21 21:46:16 +00:00
|
|
|
enum ssd_part_type
|
2021-03-20 14:41:39 +00:00
|
|
|
ssd_at(struct view *view, double lx, double ly)
|
2020-05-04 22:21:30 +01:00
|
|
|
{
|
2021-03-21 21:46:16 +00:00
|
|
|
enum ssd_part_type type;
|
|
|
|
|
for (type = 0; type < LAB_SSD_END_MARKER; ++type) {
|
2021-07-26 20:06:52 +01:00
|
|
|
struct wlr_box box = ssd_interactive_box(view, type);
|
2020-09-28 20:41:41 +01:00
|
|
|
if (wlr_box_contains_point(&box, lx, ly)) {
|
2021-03-21 21:46:16 +00:00
|
|
|
return type;
|
2020-09-28 20:41:41 +01:00
|
|
|
}
|
2020-05-25 13:42:40 +01:00
|
|
|
}
|
2021-03-20 14:41:39 +00:00
|
|
|
return LAB_SSD_NONE;
|
2020-05-04 22:21:30 +01:00
|
|
|
}
|
2021-03-21 20:54:55 +00:00
|
|
|
|
2021-07-26 20:06:52 +01:00
|
|
|
uint32_t
|
|
|
|
|
ssd_resize_edges(enum ssd_part_type type)
|
|
|
|
|
{
|
2021-07-26 20:37:36 +01:00
|
|
|
switch (type) {
|
|
|
|
|
case LAB_SSD_PART_TOP:
|
|
|
|
|
return WLR_EDGE_TOP;
|
|
|
|
|
case LAB_SSD_PART_RIGHT:
|
|
|
|
|
return WLR_EDGE_RIGHT;
|
|
|
|
|
case LAB_SSD_PART_BOTTOM:
|
|
|
|
|
return WLR_EDGE_BOTTOM;
|
|
|
|
|
case LAB_SSD_PART_LEFT:
|
|
|
|
|
return WLR_EDGE_LEFT;
|
|
|
|
|
case LAB_SSD_PART_CORNER_TOP_LEFT:
|
|
|
|
|
return WLR_EDGE_TOP | WLR_EDGE_LEFT;
|
|
|
|
|
case LAB_SSD_PART_CORNER_TOP_RIGHT:
|
|
|
|
|
return WLR_EDGE_RIGHT | WLR_EDGE_TOP;
|
|
|
|
|
case LAB_SSD_PART_CORNER_BOTTOM_RIGHT:
|
|
|
|
|
return WLR_EDGE_BOTTOM | WLR_EDGE_RIGHT;
|
|
|
|
|
case LAB_SSD_PART_CORNER_BOTTOM_LEFT:
|
|
|
|
|
return WLR_EDGE_BOTTOM | WLR_EDGE_LEFT;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2021-07-26 20:06:52 +01:00
|
|
|
}
|
2021-07-26 20:37:36 +01:00
|
|
|
return 0;
|
2021-07-26 20:06:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-03-21 21:46:16 +00:00
|
|
|
static struct ssd_part *
|
|
|
|
|
add_part(struct view *view, enum ssd_part_type type)
|
|
|
|
|
{
|
|
|
|
|
struct ssd_part *part = calloc(1, sizeof(struct ssd_part));
|
|
|
|
|
part->type = type;
|
|
|
|
|
wl_list_insert(&view->ssd.parts, &part->link);
|
|
|
|
|
return part;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ssd_create(struct view *view)
|
|
|
|
|
{
|
|
|
|
|
struct theme *theme = view->server->theme;
|
|
|
|
|
struct ssd_part *part;
|
|
|
|
|
|
|
|
|
|
view->ssd.box.x = view->x;
|
|
|
|
|
view->ssd.box.y = view->y;
|
|
|
|
|
view->ssd.box.width = view->w;
|
|
|
|
|
view->ssd.box.height = view->h;
|
|
|
|
|
|
|
|
|
|
/* border */
|
|
|
|
|
enum ssd_part_type border[4] = {
|
|
|
|
|
LAB_SSD_PART_TOP,
|
|
|
|
|
LAB_SSD_PART_RIGHT,
|
|
|
|
|
LAB_SSD_PART_BOTTOM,
|
|
|
|
|
LAB_SSD_PART_LEFT,
|
|
|
|
|
};
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
|
part = add_part(view, border[i]);
|
|
|
|
|
part->box = ssd_box(view, border[i]);
|
2021-04-10 18:40:43 +01:00
|
|
|
part->color.active = theme->window_active_border_color;
|
2021-04-10 19:11:29 +01:00
|
|
|
part->color.inactive = theme->window_inactive_border_color;
|
2021-03-21 21:46:16 +00:00
|
|
|
}
|
2021-03-27 21:04:12 +00:00
|
|
|
|
|
|
|
|
/* titlebar */
|
|
|
|
|
part = add_part(view, LAB_SSD_PART_TITLE);
|
|
|
|
|
part->box = ssd_box(view, LAB_SSD_PART_TITLE);
|
|
|
|
|
part->color.active = theme->window_active_title_bg_color;
|
|
|
|
|
part->color.inactive = theme->window_inactive_title_bg_color;
|
|
|
|
|
|
2021-07-16 17:07:00 +01:00
|
|
|
/* titlebar top-left corner */
|
2021-03-27 21:04:12 +00:00
|
|
|
part = add_part(view, LAB_SSD_PART_CORNER_TOP_LEFT);
|
|
|
|
|
part->box = ssd_box(view, part->type);
|
2021-07-16 17:07:00 +01:00
|
|
|
part->texture.active = &theme->corner_top_left_active_normal;
|
|
|
|
|
part->texture.inactive = &theme->corner_top_left_inactive_normal;
|
2021-03-27 21:04:12 +00:00
|
|
|
|
2021-07-16 17:07:00 +01:00
|
|
|
/* titlebar top-right corner */
|
2021-03-27 21:04:12 +00:00
|
|
|
part = add_part(view, LAB_SSD_PART_CORNER_TOP_RIGHT);
|
|
|
|
|
part->box = ssd_box(view, part->type);
|
2021-07-16 17:07:00 +01:00
|
|
|
part->texture.active = &theme->corner_top_right_active_normal;
|
|
|
|
|
part->texture.inactive = &theme->corner_top_right_inactive_normal;
|
2021-03-21 21:46:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ssd_destroy(struct view *view)
|
|
|
|
|
{
|
|
|
|
|
struct ssd_part *part, *next;
|
|
|
|
|
wl_list_for_each_safe(part, next, &view->ssd.parts, link) {
|
|
|
|
|
wl_list_remove(&part->link);
|
|
|
|
|
free(part);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool
|
|
|
|
|
geometry_changed(struct view *view)
|
|
|
|
|
{
|
|
|
|
|
return view->x != view->ssd.box.x || view->y != view->ssd.box.y ||
|
|
|
|
|
view->w != view->ssd.box.width ||
|
|
|
|
|
view->h != view->ssd.box.height;
|
|
|
|
|
}
|
2021-03-21 20:54:55 +00:00
|
|
|
|
2021-03-21 21:46:16 +00:00
|
|
|
void
|
|
|
|
|
ssd_update_geometry(struct view *view)
|
|
|
|
|
{
|
|
|
|
|
if (!geometry_changed(view)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
struct ssd_part *part;
|
|
|
|
|
wl_list_for_each(part, &view->ssd.parts, link) {
|
|
|
|
|
part->box = ssd_box(view, part->type);
|
|
|
|
|
}
|
|
|
|
|
view->ssd.box.x = view->x;
|
|
|
|
|
view->ssd.box.y = view->y;
|
|
|
|
|
view->ssd.box.width = view->w;
|
|
|
|
|
view->ssd.box.height = view->h;
|
|
|
|
|
damage_all_outputs(view->server);
|
|
|
|
|
}
|