2021-02-27 17:10:53 -05:00
|
|
|
#include <stdio.h>
|
2021-07-20 19:54:57 +01:00
|
|
|
#include <strings.h>
|
2021-03-20 14:36:40 +00:00
|
|
|
#include "labwc.h"
|
2021-03-21 20:54:55 +00:00
|
|
|
#include "ssd.h"
|
2021-03-02 20:37:23 +00:00
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
void
|
2020-12-22 20:35:06 +00:00
|
|
|
view_move_resize(struct view *view, struct wlr_box geo)
|
2020-05-26 12:56:33 +01:00
|
|
|
{
|
2020-12-22 20:35:06 +00:00
|
|
|
view->impl->configure(view, geo);
|
2020-05-26 12:56:33 +01:00
|
|
|
}
|
|
|
|
|
|
2020-12-23 18:52:46 +00:00
|
|
|
void
|
|
|
|
|
view_move(struct view *view, double x, double y)
|
|
|
|
|
{
|
|
|
|
|
view->impl->move(view, x, y);
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
void
|
|
|
|
|
view_minimize(struct view *view)
|
2020-09-08 20:51:33 +01:00
|
|
|
{
|
2020-09-28 20:41:41 +01:00
|
|
|
if (view->minimized == true) {
|
2020-09-08 20:51:33 +01:00
|
|
|
return;
|
2020-09-28 20:41:41 +01:00
|
|
|
}
|
2020-09-08 20:51:33 +01:00
|
|
|
view->minimized = true;
|
|
|
|
|
view->impl->unmap(view);
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-28 20:41:41 +01:00
|
|
|
void
|
|
|
|
|
view_unminimize(struct view *view)
|
2020-09-08 20:51:33 +01:00
|
|
|
{
|
2020-09-28 20:41:41 +01:00
|
|
|
if (view->minimized == false) {
|
2020-09-08 20:51:33 +01:00
|
|
|
return;
|
2020-09-28 20:41:41 +01:00
|
|
|
}
|
2020-09-08 20:51:33 +01:00
|
|
|
view->minimized = false;
|
|
|
|
|
view->impl->map(view);
|
|
|
|
|
}
|
2020-09-29 20:48:50 +01:00
|
|
|
|
2021-03-20 14:36:40 +00:00
|
|
|
/*
|
2021-07-20 19:40:37 +01:00
|
|
|
* view_wlr_output - return the output that a view is mostly on
|
2021-03-20 14:36:40 +00:00
|
|
|
*/
|
|
|
|
|
static struct wlr_output *
|
2021-07-20 19:40:37 +01:00
|
|
|
view_wlr_output(struct view *view)
|
2021-03-20 14:36:40 +00:00
|
|
|
{
|
|
|
|
|
struct wlr_output_layout *layout = view->server->output_layout;
|
|
|
|
|
struct wlr_output *output;
|
|
|
|
|
|
|
|
|
|
/* TODO: make this a bit more sophisticated */
|
|
|
|
|
output = wlr_output_layout_output_at(layout, view->x + view->w / 2,
|
|
|
|
|
view->y + view->h / 2);
|
|
|
|
|
return output;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-20 19:40:37 +01:00
|
|
|
static struct output *
|
|
|
|
|
view_output(struct view *view)
|
|
|
|
|
{
|
|
|
|
|
struct wlr_output *wlr_output = view_wlr_output(view);
|
|
|
|
|
return output_from_wlr_output(view->server, wlr_output);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-09 21:39:20 +01:00
|
|
|
void
|
|
|
|
|
view_center(struct view *view)
|
|
|
|
|
{
|
2021-07-20 19:40:37 +01:00
|
|
|
struct wlr_output *wlr_output = view_wlr_output(view);
|
|
|
|
|
if (!wlr_output) {
|
2021-07-09 21:39:20 +01:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct wlr_output_layout *layout = view->server->output_layout;
|
|
|
|
|
struct wlr_output_layout_output* ol_output =
|
2021-07-20 19:40:37 +01:00
|
|
|
wlr_output_layout_get(layout, wlr_output);
|
|
|
|
|
int center_x = ol_output->x + wlr_output->width / 2;
|
|
|
|
|
int center_y = ol_output->y + wlr_output->height / 2;
|
2021-07-09 21:39:20 +01:00
|
|
|
view_move(view, center_x - view->w / 2, center_y - view->h / 2);
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-27 17:10:53 -05:00
|
|
|
void
|
|
|
|
|
view_maximize(struct view *view, bool maximize)
|
|
|
|
|
{
|
2021-03-12 21:27:17 +00:00
|
|
|
if (view->maximized == maximize) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
view->impl->maximize(view, maximize);
|
|
|
|
|
if (maximize) {
|
2021-02-28 18:12:10 +00:00
|
|
|
view->unmaximized_geometry.x = view->x;
|
|
|
|
|
view->unmaximized_geometry.y = view->y;
|
|
|
|
|
view->unmaximized_geometry.width = view->w;
|
|
|
|
|
view->unmaximized_geometry.height = view->h;
|
|
|
|
|
|
2021-07-20 19:40:37 +01:00
|
|
|
struct output *output = view_output(view);
|
2021-07-12 21:39:09 +01:00
|
|
|
struct wlr_box box;
|
|
|
|
|
memcpy(&box, &output->usable_area, sizeof(struct wlr_box));
|
|
|
|
|
|
|
|
|
|
double ox = 0, oy = 0;
|
|
|
|
|
wlr_output_layout_output_coords(view->server->output_layout,
|
2021-07-20 19:40:37 +01:00
|
|
|
output->wlr_output, &ox, &oy);
|
2021-07-12 21:39:09 +01:00
|
|
|
box.x -= ox;
|
|
|
|
|
box.y -= oy;
|
|
|
|
|
|
2021-03-21 21:46:16 +00:00
|
|
|
if (view->ssd.enabled) {
|
2021-03-20 14:41:39 +00:00
|
|
|
struct border border = ssd_thickness(view);
|
2021-03-01 18:15:02 +00:00
|
|
|
box.x += border.left;
|
|
|
|
|
box.y += border.top;
|
|
|
|
|
box.width -= border.right + border.left;
|
|
|
|
|
box.height -= border.top + border.bottom;
|
|
|
|
|
}
|
2021-07-20 19:40:37 +01:00
|
|
|
box.width /= output->wlr_output->scale;
|
|
|
|
|
box.height /= output->wlr_output->scale;
|
2021-02-27 17:10:53 -05:00
|
|
|
view_move_resize(view, box);
|
|
|
|
|
view->maximized = true;
|
2021-02-28 18:12:10 +00:00
|
|
|
} else {
|
|
|
|
|
/* unmaximize */
|
|
|
|
|
view_move_resize(view, view->unmaximized_geometry);
|
2021-02-27 17:10:53 -05:00
|
|
|
view->maximized = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-29 20:48:50 +01:00
|
|
|
void
|
|
|
|
|
view_for_each_surface(struct view *view, wlr_surface_iterator_func_t iterator,
|
|
|
|
|
void *user_data)
|
|
|
|
|
{
|
|
|
|
|
view->impl->for_each_surface(view, iterator, user_data);
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-09 22:51:20 +00:00
|
|
|
void
|
2021-03-13 21:07:11 +00:00
|
|
|
view_for_each_popup_surface(struct view *view, wlr_surface_iterator_func_t iterator,
|
2021-01-09 22:51:20 +00:00
|
|
|
void *data)
|
|
|
|
|
{
|
2021-03-13 21:07:11 +00:00
|
|
|
if (!view->impl->for_each_popup_surface) {
|
2021-01-09 22:51:20 +00:00
|
|
|
return;
|
|
|
|
|
}
|
2021-03-13 21:07:11 +00:00
|
|
|
view->impl->for_each_popup_surface(view, iterator, data);
|
2021-01-09 22:51:20 +00:00
|
|
|
}
|
|
|
|
|
|
2021-07-20 19:54:57 +01:00
|
|
|
static struct border
|
|
|
|
|
view_border(struct view *view)
|
|
|
|
|
{
|
|
|
|
|
struct border border = {
|
|
|
|
|
.left = view->margin.left - view->padding.left,
|
|
|
|
|
.top = view->margin.top - view->padding.top,
|
|
|
|
|
.right = view->margin.right + view->padding.right,
|
|
|
|
|
.bottom = view->margin.bottom + view->padding.bottom,
|
|
|
|
|
};
|
|
|
|
|
return border;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define GAP (3)
|
|
|
|
|
void
|
|
|
|
|
view_move_to_edge(struct view *view, char *direction)
|
|
|
|
|
{
|
|
|
|
|
if (!view) {
|
|
|
|
|
wlr_log(WLR_ERROR, "no view");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
struct output *output = view_output(view);
|
|
|
|
|
struct border border = view_border(view);
|
|
|
|
|
struct wlr_box usable;
|
|
|
|
|
memcpy(&usable, &output->usable_area, sizeof(struct wlr_box));
|
|
|
|
|
|
|
|
|
|
double ox = 0, oy = 0;
|
|
|
|
|
wlr_output_layout_output_coords(view->server->output_layout,
|
|
|
|
|
output->wlr_output, &ox, &oy);
|
|
|
|
|
usable.x -= ox;
|
|
|
|
|
usable.y -= oy;
|
|
|
|
|
|
|
|
|
|
int x, y;
|
|
|
|
|
if (!strcasecmp(direction, "left")) {
|
|
|
|
|
x = usable.x + border.left + GAP;
|
|
|
|
|
y = view->y;
|
|
|
|
|
} else if (!strcasecmp(direction, "up")) {
|
|
|
|
|
x = view->x;
|
|
|
|
|
y = usable.y + border.top + GAP;
|
|
|
|
|
} else if (!strcasecmp(direction, "right")) {
|
|
|
|
|
x = usable.x + usable.width - view->w - border.right - GAP;
|
|
|
|
|
y = view->y;
|
|
|
|
|
} else if (!strcasecmp(direction, "down")) {
|
|
|
|
|
x = view->x;
|
|
|
|
|
y = usable.y + usable.height - view->h - border.bottom - GAP;
|
|
|
|
|
}
|
|
|
|
|
view_move(view, x, y);
|
|
|
|
|
}
|