sway/sway/tree/view.c

196 lines
4.8 KiB
C
Raw Normal View History

#include <stdlib.h>
2018-02-25 22:23:36 +00:00
#include <wayland-server.h>
#include <wlr/types/wlr_output_layout.h>
#include "log.h"
#include "sway/output.h"
#include "sway/tree/container.h"
#include "sway/tree/layout.h"
#include "sway/tree/view.h"
2018-01-21 14:09:53 +00:00
2018-03-31 22:07:44 +00:00
struct sway_view *view_create(enum sway_view_type type,
const struct sway_view_impl *impl) {
struct sway_view *view = calloc(1, sizeof(struct sway_view));
if (view == NULL) {
return NULL;
}
view->type = type;
2018-03-31 22:07:44 +00:00
view->impl = impl;
return view;
}
void view_destroy(struct sway_view *view) {
if (view == NULL) {
return;
}
if (view->surface != NULL) {
view_unmap(view);
}
container_view_destroy(view->swayc);
free(view);
}
2018-01-21 14:09:53 +00:00
const char *view_get_title(struct sway_view *view) {
2018-03-31 22:07:44 +00:00
if (view->impl->get_prop) {
return view->impl->get_prop(view, VIEW_PROP_TITLE);
2018-01-21 14:09:53 +00:00
}
return NULL;
}
const char *view_get_app_id(struct sway_view *view) {
2018-03-31 22:07:44 +00:00
if (view->impl->get_prop) {
return view->impl->get_prop(view, VIEW_PROP_APP_ID);
2018-01-21 14:09:53 +00:00
}
return NULL;
}
const char *view_get_class(struct sway_view *view) {
2018-03-31 22:07:44 +00:00
if (view->impl->get_prop) {
return view->impl->get_prop(view, VIEW_PROP_CLASS);
2018-01-21 14:09:53 +00:00
}
return NULL;
}
const char *view_get_instance(struct sway_view *view) {
2018-03-31 22:07:44 +00:00
if (view->impl->get_prop) {
return view->impl->get_prop(view, VIEW_PROP_INSTANCE);
2018-01-21 14:09:53 +00:00
}
return NULL;
}
2018-04-02 14:57:45 +00:00
void view_configure(struct sway_view *view, double ox, double oy, int width,
int height) {
if (view->impl->configure) {
view->impl->configure(view, ox, oy, width, height);
2018-01-21 14:09:53 +00:00
}
}
void view_set_activated(struct sway_view *view, bool activated) {
2018-03-31 22:07:44 +00:00
if (view->impl->set_activated) {
view->impl->set_activated(view, activated);
2018-01-21 14:09:53 +00:00
}
}
void view_close(struct sway_view *view) {
2018-03-31 22:07:44 +00:00
if (view->impl->close) {
view->impl->close(view);
2018-01-21 14:09:53 +00:00
}
}
2018-02-25 22:23:36 +00:00
2018-03-30 15:58:17 +00:00
struct sway_container *container_view_destroy(struct sway_container *view) {
if (!view) {
return NULL;
}
wlr_log(L_DEBUG, "Destroying view '%s'", view->name);
struct sway_container *parent = container_destroy(view);
2018-04-03 01:01:33 +00:00
arrange_windows(&root_container, -1, -1);
2018-03-30 15:58:17 +00:00
return parent;
}
2018-04-02 14:57:45 +00:00
void view_damage_whole(struct sway_view *view) {
for (int i = 0; i < root_container.children->length; ++i) {
struct sway_container *cont = root_container.children->items[i];
if (cont->type == C_OUTPUT) {
output_damage_whole_view(cont->sway_output, view);
}
}
}
void view_damage_from(struct sway_view *view) {
// TODO
view_damage_whole(view);
}
static void view_get_layout_box(struct sway_view *view, struct wlr_box *box) {
struct sway_container *output = container_parent(view->swayc, C_OUTPUT);
2018-04-02 14:57:45 +00:00
box->x = output->x + view->swayc->x;
box->y = output->y + view->swayc->y;
2018-04-02 14:57:45 +00:00
box->width = view->width;
box->height = view->height;
}
static void view_update_outputs(struct sway_view *view,
const struct wlr_box *before) {
struct wlr_box box;
view_get_layout_box(view, &box);
struct wlr_output_layout *output_layout =
root_container.sway_root->output_layout;
struct wlr_output_layout_output *layout_output;
wl_list_for_each(layout_output, &output_layout->outputs, link) {
bool intersected = before != NULL && wlr_output_layout_intersects(
output_layout, layout_output->output, before);
bool intersects = wlr_output_layout_intersects(output_layout,
layout_output->output, &box);
if (intersected && !intersects) {
wlr_surface_send_leave(view->surface, layout_output->output);
}
if (!intersected && intersects) {
wlr_surface_send_enter(view->surface, layout_output->output);
}
}
}
void view_map(struct sway_view *view, struct wlr_surface *wlr_surface) {
if (!sway_assert(view->surface == NULL, "cannot map mapped view")) {
return;
}
struct sway_seat *seat = input_manager_current_seat(input_manager);
struct sway_container *focus = seat_get_focus_inactive(seat,
&root_container);
struct sway_container *cont = container_view_create(focus, view);
view->surface = wlr_surface;
view->swayc = cont;
arrange_windows(cont->parent, -1, -1);
input_manager_set_focus(input_manager, cont);
view_damage_whole(view);
2018-04-02 14:57:45 +00:00
view_update_outputs(view, NULL);
}
void view_unmap(struct sway_view *view) {
if (!sway_assert(view->surface != NULL, "cannot unmap unmapped view")) {
return;
}
view_damage_whole(view);
container_view_destroy(view->swayc);
view->swayc = NULL;
view->surface = NULL;
}
2018-04-02 14:57:45 +00:00
void view_update_position(struct sway_view *view, double ox, double oy) {
if (view->swayc->x == ox && view->swayc->y == oy) {
return;
}
2018-04-02 14:57:45 +00:00
struct wlr_box box;
view_get_layout_box(view, &box);
view_damage_whole(view);
view->swayc->x = ox;
view->swayc->y = oy;
view_update_outputs(view, &box);
view_damage_whole(view);
}
2018-04-02 14:57:45 +00:00
void view_update_size(struct sway_view *view, int width, int height) {
if (view->width == width && view->height == height) {
return;
}
struct wlr_box box;
view_get_layout_box(view, &box);
view_damage_whole(view);
view->width = width;
view->height = height;
view_update_outputs(view, &box);
view_damage_whole(view);
}