2018-04-01 07:49:40 +10:00
|
|
|
#include <stdlib.h>
|
2018-02-26 09:23:36 +11:00
|
|
|
#include <wayland-server.h>
|
2018-04-30 21:24:13 +10:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
2018-02-26 09:23:36 +11:00
|
|
|
#include <wlr/types/wlr_output_layout.h>
|
2018-03-31 04:18:50 +11:00
|
|
|
#include "log.h"
|
2018-04-24 14:59:49 +10:00
|
|
|
#include "sway/criteria.h"
|
|
|
|
#include "sway/commands.h"
|
2018-04-16 20:36:40 +10:00
|
|
|
#include "sway/ipc-server.h"
|
2018-03-31 04:18:50 +11:00
|
|
|
#include "sway/output.h"
|
2018-04-24 14:59:49 +10:00
|
|
|
#include "sway/input/seat.h"
|
2018-04-28 11:26:14 +10:00
|
|
|
#include "sway/tree/arrange.h"
|
2018-03-30 14:41:33 +11:00
|
|
|
#include "sway/tree/container.h"
|
|
|
|
#include "sway/tree/layout.h"
|
|
|
|
#include "sway/tree/view.h"
|
2018-04-17 09:31:34 +10:00
|
|
|
#include "sway/tree/workspace.h"
|
2018-01-22 01:09:53 +11:00
|
|
|
|
2018-04-06 01:38:14 +10:00
|
|
|
void view_init(struct sway_view *view, enum sway_view_type type,
|
2018-04-01 08:07:44 +10:00
|
|
|
const struct sway_view_impl *impl) {
|
2018-04-01 07:49:40 +10:00
|
|
|
view->type = type;
|
2018-04-01 08:07:44 +10:00
|
|
|
view->impl = impl;
|
2018-04-06 04:46:02 +10:00
|
|
|
wl_signal_init(&view->events.unmap);
|
2018-04-01 07:49:40 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
void view_destroy(struct sway_view *view) {
|
|
|
|
if (view == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (view->surface != NULL) {
|
|
|
|
view_unmap(view);
|
|
|
|
}
|
|
|
|
|
2018-04-04 02:25:19 +10:00
|
|
|
container_destroy(view->swayc);
|
2018-04-06 01:38:14 +10:00
|
|
|
|
|
|
|
if (view->impl->destroy) {
|
|
|
|
view->impl->destroy(view);
|
|
|
|
} else {
|
|
|
|
free(view);
|
|
|
|
}
|
2018-04-01 07:49:40 +10:00
|
|
|
}
|
|
|
|
|
2018-01-22 01:09:53 +11:00
|
|
|
const char *view_get_title(struct sway_view *view) {
|
2018-04-01 08:07:44 +10:00
|
|
|
if (view->impl->get_prop) {
|
|
|
|
return view->impl->get_prop(view, VIEW_PROP_TITLE);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *view_get_app_id(struct sway_view *view) {
|
2018-04-01 08:07:44 +10:00
|
|
|
if (view->impl->get_prop) {
|
|
|
|
return view->impl->get_prop(view, VIEW_PROP_APP_ID);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *view_get_class(struct sway_view *view) {
|
2018-04-01 08:07:44 +10:00
|
|
|
if (view->impl->get_prop) {
|
|
|
|
return view->impl->get_prop(view, VIEW_PROP_CLASS);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *view_get_instance(struct sway_view *view) {
|
2018-04-01 08:07:44 +10:00
|
|
|
if (view->impl->get_prop) {
|
|
|
|
return view->impl->get_prop(view, VIEW_PROP_INSTANCE);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-04-03 00:57:45 +10: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-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-30 21:24:13 +10:00
|
|
|
/**
|
|
|
|
* Configure the view's position and size based on the swayc's position and
|
|
|
|
* size, taking borders into consideration.
|
|
|
|
*/
|
|
|
|
void view_autoconfigure(struct sway_view *view) {
|
|
|
|
if (!sway_assert(view->swayc,
|
|
|
|
"Called view_autoconfigure() on a view without a swayc")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (view->is_fullscreen) {
|
|
|
|
struct sway_container *output = container_parent(view->swayc, C_OUTPUT);
|
|
|
|
view_configure(view, 0, 0, output->width, output->height);
|
|
|
|
view->x = view->y = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
double x, y, width, height;
|
|
|
|
switch (view->border) {
|
|
|
|
case B_NONE:
|
|
|
|
x = view->swayc->x;
|
|
|
|
y = view->swayc->y;
|
|
|
|
width = view->swayc->width;
|
|
|
|
height = view->swayc->height;
|
|
|
|
break;
|
|
|
|
case B_PIXEL:
|
|
|
|
x = view->swayc->x + view->border_thickness;
|
|
|
|
y = view->swayc->y + view->border_thickness;
|
|
|
|
width = view->swayc->width - view->border_thickness * 2;
|
|
|
|
height = view->swayc->height - view->border_thickness * 2;
|
|
|
|
break;
|
|
|
|
case B_NORMAL:
|
|
|
|
// TODO: Size the title bar by checking the font
|
|
|
|
x = view->swayc->x + view->border_thickness;
|
|
|
|
y = view->swayc->y + 20;
|
|
|
|
width = view->swayc->width - view->border_thickness * 2;
|
|
|
|
height = view->swayc->height - view->border_thickness - 20;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
view->x = x;
|
|
|
|
view->y = y;
|
|
|
|
view_configure(view, x, y, width, height);
|
|
|
|
}
|
|
|
|
|
2018-01-22 01:09:53 +11:00
|
|
|
void view_set_activated(struct sway_view *view, bool activated) {
|
2018-04-01 08:07:44 +10:00
|
|
|
if (view->impl->set_activated) {
|
|
|
|
view->impl->set_activated(view, activated);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-28 11:26:14 +10:00
|
|
|
// Set fullscreen, but without IPC events or arranging windows.
|
|
|
|
void view_set_fullscreen_raw(struct sway_view *view, bool fullscreen) {
|
2018-04-16 20:36:40 +10:00
|
|
|
if (view->is_fullscreen == fullscreen) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-28 11:26:14 +10:00
|
|
|
struct sway_container *workspace =
|
|
|
|
container_parent(view->swayc, C_WORKSPACE);
|
2018-04-16 20:36:40 +10:00
|
|
|
|
|
|
|
if (view->impl->set_fullscreen) {
|
|
|
|
view->impl->set_fullscreen(view, fullscreen);
|
|
|
|
}
|
|
|
|
|
2018-04-17 08:11:50 +10:00
|
|
|
view->is_fullscreen = fullscreen;
|
|
|
|
|
2018-04-16 20:36:40 +10:00
|
|
|
if (fullscreen) {
|
2018-04-18 00:10:32 +10:00
|
|
|
if (workspace->sway_workspace->fullscreen) {
|
|
|
|
view_set_fullscreen(workspace->sway_workspace->fullscreen, false);
|
|
|
|
}
|
2018-04-17 09:31:34 +10:00
|
|
|
workspace->sway_workspace->fullscreen = view;
|
2018-04-28 11:26:14 +10:00
|
|
|
view->swayc->saved_width = view->swayc->width;
|
|
|
|
view->swayc->saved_height = view->swayc->height;
|
2018-04-18 00:10:32 +10:00
|
|
|
|
|
|
|
struct sway_seat *seat;
|
|
|
|
struct sway_container *focus, *focus_ws;
|
|
|
|
wl_list_for_each(seat, &input_manager->seats, link) {
|
|
|
|
focus = seat_get_focus(seat);
|
|
|
|
focus_ws = focus;
|
|
|
|
if (focus_ws->type != C_WORKSPACE) {
|
|
|
|
focus_ws = container_parent(focus_ws, C_WORKSPACE);
|
|
|
|
}
|
|
|
|
seat_set_focus(seat, view->swayc);
|
|
|
|
if (focus_ws != workspace) {
|
|
|
|
seat_set_focus(seat, focus);
|
|
|
|
}
|
|
|
|
}
|
2018-04-16 20:36:40 +10:00
|
|
|
} else {
|
2018-04-17 09:31:34 +10:00
|
|
|
workspace->sway_workspace->fullscreen = NULL;
|
2018-04-28 11:26:14 +10:00
|
|
|
view->swayc->width = view->swayc->saved_width;
|
|
|
|
view->swayc->height = view->swayc->saved_height;
|
2018-04-16 20:36:40 +10:00
|
|
|
}
|
2018-04-28 11:26:14 +10:00
|
|
|
}
|
2018-04-16 20:36:40 +10:00
|
|
|
|
2018-04-28 11:26:14 +10:00
|
|
|
void view_set_fullscreen(struct sway_view *view, bool fullscreen) {
|
|
|
|
if (view->is_fullscreen == fullscreen) {
|
|
|
|
return;
|
|
|
|
}
|
2018-04-16 20:36:40 +10:00
|
|
|
|
2018-04-28 11:26:14 +10:00
|
|
|
view_set_fullscreen_raw(view, fullscreen);
|
|
|
|
|
|
|
|
struct sway_container *workspace =
|
|
|
|
container_parent(view->swayc, C_WORKSPACE);
|
|
|
|
arrange_workspace(workspace);
|
|
|
|
output_damage_whole(workspace->parent->sway_output);
|
2018-04-16 20:36:40 +10:00
|
|
|
ipc_event_window(view->swayc, "fullscreen_mode");
|
|
|
|
}
|
|
|
|
|
2018-01-22 01:09:53 +11:00
|
|
|
void view_close(struct sway_view *view) {
|
2018-04-01 08:07:44 +10:00
|
|
|
if (view->impl->close) {
|
|
|
|
view->impl->close(view);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
}
|
2018-02-26 09:23:36 +11:00
|
|
|
|
2018-04-07 01:27:40 +10:00
|
|
|
void view_damage(struct sway_view *view, bool whole) {
|
2018-04-03 00:57:45 +10:00
|
|
|
for (int i = 0; i < root_container.children->length; ++i) {
|
|
|
|
struct sway_container *cont = root_container.children->items[i];
|
|
|
|
if (cont->type == C_OUTPUT) {
|
2018-04-07 01:27:40 +10:00
|
|
|
output_damage_view(cont->sway_output, view, whole);
|
2018-04-03 00:57:45 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void view_get_layout_box(struct sway_view *view, struct wlr_box *box) {
|
2018-04-03 04:35:43 +10:00
|
|
|
struct sway_container *output = container_parent(view->swayc, C_OUTPUT);
|
2018-04-03 00:57:45 +10:00
|
|
|
|
2018-04-03 04:35:43 +10:00
|
|
|
box->x = output->x + view->swayc->x;
|
|
|
|
box->y = output->y + view->swayc->y;
|
2018-04-03 00:57:45 +10:00
|
|
|
box->width = view->width;
|
|
|
|
box->height = view->height;
|
|
|
|
}
|
|
|
|
|
2018-04-07 00:26:32 +10:00
|
|
|
void view_for_each_surface(struct sway_view *view,
|
|
|
|
wlr_surface_iterator_func_t iterator, void *user_data) {
|
|
|
|
if (view->impl->for_each_surface) {
|
|
|
|
view->impl->for_each_surface(view, iterator, user_data);
|
|
|
|
} else {
|
|
|
|
wlr_surface_for_each_surface(view->surface, iterator, user_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-06 04:46:02 +10:00
|
|
|
static void view_subsurface_create(struct sway_view *view,
|
|
|
|
struct wlr_subsurface *subsurface);
|
|
|
|
|
|
|
|
static void view_init_subsurfaces(struct sway_view *view,
|
|
|
|
struct wlr_surface *surface);
|
|
|
|
|
|
|
|
static void view_handle_surface_new_subsurface(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_view *view =
|
|
|
|
wl_container_of(listener, view, surface_new_subsurface);
|
|
|
|
struct wlr_subsurface *subsurface = data;
|
|
|
|
view_subsurface_create(view, subsurface);
|
|
|
|
}
|
|
|
|
|
2018-04-07 00:26:32 +10:00
|
|
|
static void surface_send_enter_iterator(struct wlr_surface *surface,
|
|
|
|
int x, int y, void *data) {
|
|
|
|
struct wlr_output *wlr_output = data;
|
|
|
|
wlr_surface_send_enter(surface, wlr_output);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void surface_send_leave_iterator(struct wlr_surface *surface,
|
|
|
|
int x, int y, void *data) {
|
|
|
|
struct wlr_output *wlr_output = data;
|
|
|
|
wlr_surface_send_leave(surface, wlr_output);
|
|
|
|
}
|
|
|
|
|
2018-04-06 13:50:21 +10:00
|
|
|
static void view_handle_container_reparent(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_view *view =
|
|
|
|
wl_container_of(listener, view, container_reparent);
|
|
|
|
struct sway_container *old_parent = data;
|
|
|
|
|
|
|
|
struct sway_container *old_output = old_parent;
|
|
|
|
if (old_output != NULL && old_output->type != C_OUTPUT) {
|
|
|
|
old_output = container_parent(old_output, C_OUTPUT);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sway_container *new_output = view->swayc->parent;
|
|
|
|
if (new_output != NULL && new_output->type != C_OUTPUT) {
|
|
|
|
new_output = container_parent(new_output, C_OUTPUT);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (old_output == new_output) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (old_output != NULL) {
|
2018-04-07 00:26:32 +10:00
|
|
|
view_for_each_surface(view, surface_send_leave_iterator,
|
2018-04-06 13:50:21 +10:00
|
|
|
old_output->sway_output->wlr_output);
|
|
|
|
}
|
|
|
|
if (new_output != NULL) {
|
2018-04-07 00:26:32 +10:00
|
|
|
view_for_each_surface(view, surface_send_enter_iterator,
|
2018-04-06 13:50:21 +10:00
|
|
|
new_output->sway_output->wlr_output);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-24 14:59:49 +10:00
|
|
|
static void view_execute_criteria(struct sway_view *view) {
|
2018-04-24 20:14:22 +10:00
|
|
|
if (!sway_assert(view->swayc, "cannot run criteria for unmapped view")) {
|
2018-04-24 20:06:35 +10:00
|
|
|
return;
|
|
|
|
}
|
2018-04-24 14:59:49 +10:00
|
|
|
struct sway_seat *seat = input_manager_current_seat(input_manager);
|
|
|
|
struct sway_container *prior_workspace =
|
|
|
|
container_parent(view->swayc, C_WORKSPACE);
|
|
|
|
list_t *criteria = criteria_for(view->swayc);
|
|
|
|
for (int i = 0; i < criteria->length; i++) {
|
|
|
|
struct criteria *crit = criteria->items[i];
|
|
|
|
wlr_log(L_DEBUG, "for_window '%s' matches new view %p, cmd: '%s'",
|
|
|
|
crit->crit_raw, view, crit->cmdlist);
|
|
|
|
struct cmd_results *res = execute_command(crit->cmdlist, NULL);
|
|
|
|
if (res->status != CMD_SUCCESS) {
|
|
|
|
wlr_log(L_ERROR, "Command '%s' failed: %s", res->input, res->error);
|
|
|
|
}
|
|
|
|
free_cmd_results(res);
|
|
|
|
// view must be focused for commands to affect it,
|
|
|
|
// so always refocus in-between command lists
|
|
|
|
seat_set_focus(seat, view->swayc);
|
|
|
|
}
|
|
|
|
list_free(criteria);
|
|
|
|
seat_set_focus(seat, seat_get_focus_inactive(seat, prior_workspace));
|
|
|
|
}
|
|
|
|
|
2018-04-01 07:49:40 +10:00
|
|
|
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);
|
2018-04-03 05:30:58 +10:00
|
|
|
struct sway_container *focus = seat_get_focus_inactive(seat,
|
2018-04-01 07:49:40 +10:00
|
|
|
&root_container);
|
|
|
|
struct sway_container *cont = container_view_create(focus, view);
|
|
|
|
|
|
|
|
view->surface = wlr_surface;
|
|
|
|
view->swayc = cont;
|
2018-04-30 21:24:13 +10:00
|
|
|
view->border = config->border;
|
|
|
|
view->border_thickness = config->border_thickness;
|
2018-04-01 07:49:40 +10:00
|
|
|
|
2018-04-06 04:46:02 +10:00
|
|
|
view_init_subsurfaces(view, wlr_surface);
|
|
|
|
wl_signal_add(&wlr_surface->events.new_subsurface,
|
|
|
|
&view->surface_new_subsurface);
|
|
|
|
view->surface_new_subsurface.notify = view_handle_surface_new_subsurface;
|
|
|
|
|
2018-04-06 13:50:21 +10:00
|
|
|
wl_signal_add(&view->swayc->events.reparent, &view->container_reparent);
|
|
|
|
view->container_reparent.notify = view_handle_container_reparent;
|
|
|
|
|
2018-04-28 11:26:14 +10:00
|
|
|
arrange_children_of(cont->parent);
|
2018-04-03 05:30:58 +10:00
|
|
|
input_manager_set_focus(input_manager, cont);
|
2018-04-01 07:49:40 +10:00
|
|
|
|
2018-04-07 01:27:40 +10:00
|
|
|
view_damage(view, true);
|
2018-04-06 13:50:21 +10:00
|
|
|
view_handle_container_reparent(&view->container_reparent, NULL);
|
2018-04-24 14:59:49 +10:00
|
|
|
|
|
|
|
view_execute_criteria(view);
|
2018-04-01 07:49:40 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
void view_unmap(struct sway_view *view) {
|
|
|
|
if (!sway_assert(view->surface != NULL, "cannot unmap unmapped view")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-06 04:46:02 +10:00
|
|
|
wl_signal_emit(&view->events.unmap, view);
|
|
|
|
|
2018-04-17 11:06:03 +10:00
|
|
|
if (view->is_fullscreen) {
|
|
|
|
struct sway_container *ws = container_parent(view->swayc, C_WORKSPACE);
|
|
|
|
ws->sway_workspace->fullscreen = NULL;
|
|
|
|
}
|
|
|
|
|
2018-04-07 01:27:40 +10:00
|
|
|
view_damage(view, true);
|
2018-04-01 07:49:40 +10:00
|
|
|
|
2018-04-06 06:48:11 +10:00
|
|
|
wl_list_remove(&view->surface_new_subsurface.link);
|
2018-04-06 13:50:21 +10:00
|
|
|
wl_list_remove(&view->container_reparent.link);
|
|
|
|
|
|
|
|
struct sway_container *parent = container_destroy(view->swayc);
|
2018-04-06 06:48:11 +10:00
|
|
|
|
2018-04-01 07:49:40 +10:00
|
|
|
view->swayc = NULL;
|
|
|
|
view->surface = NULL;
|
2018-04-03 12:37:21 +10:00
|
|
|
|
2018-04-28 11:26:14 +10:00
|
|
|
arrange_children_of(parent);
|
2018-04-01 07:49:40 +10:00
|
|
|
}
|
|
|
|
|
2018-04-03 00:57:45 +10:00
|
|
|
void view_update_size(struct sway_view *view, int width, int height) {
|
|
|
|
if (view->width == width && view->height == height) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-07 01:27:40 +10:00
|
|
|
view_damage(view, true);
|
2018-04-30 21:24:13 +10:00
|
|
|
// Should we update the swayc width/height here too?
|
2018-04-03 00:57:45 +10:00
|
|
|
view->width = width;
|
|
|
|
view->height = height;
|
2018-04-07 01:27:40 +10:00
|
|
|
view_damage(view, true);
|
2018-03-31 04:18:50 +11:00
|
|
|
}
|
2018-04-06 04:46:02 +10:00
|
|
|
|
|
|
|
|
|
|
|
static void view_subsurface_create(struct sway_view *view,
|
|
|
|
struct wlr_subsurface *subsurface) {
|
|
|
|
struct sway_view_child *child = calloc(1, sizeof(struct sway_view_child));
|
|
|
|
if (child == NULL) {
|
|
|
|
wlr_log(L_ERROR, "Allocation failed");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
view_child_init(child, NULL, view, subsurface->surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void view_child_handle_surface_commit(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_view_child *child =
|
|
|
|
wl_container_of(listener, child, surface_commit);
|
|
|
|
// TODO: only accumulate damage from the child
|
2018-04-07 01:27:40 +10:00
|
|
|
view_damage(child->view, false);
|
2018-04-06 04:46:02 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
static void view_child_handle_surface_new_subsurface(
|
|
|
|
struct wl_listener *listener, void *data) {
|
|
|
|
struct sway_view_child *child =
|
|
|
|
wl_container_of(listener, child, surface_new_subsurface);
|
|
|
|
struct wlr_subsurface *subsurface = data;
|
|
|
|
view_subsurface_create(child->view, subsurface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void view_child_handle_surface_destroy(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_view_child *child =
|
|
|
|
wl_container_of(listener, child, surface_destroy);
|
|
|
|
view_child_destroy(child);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void view_child_handle_view_unmap(struct wl_listener *listener,
|
|
|
|
void *data) {
|
|
|
|
struct sway_view_child *child =
|
|
|
|
wl_container_of(listener, child, view_unmap);
|
|
|
|
view_child_destroy(child);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void view_init_subsurfaces(struct sway_view *view,
|
|
|
|
struct wlr_surface *surface) {
|
|
|
|
struct wlr_subsurface *subsurface;
|
2018-04-22 04:12:49 +10:00
|
|
|
wl_list_for_each(subsurface, &surface->subsurfaces, parent_link) {
|
2018-04-06 04:46:02 +10:00
|
|
|
view_subsurface_create(view, subsurface);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void view_child_init(struct sway_view_child *child,
|
|
|
|
const struct sway_view_child_impl *impl, struct sway_view *view,
|
|
|
|
struct wlr_surface *surface) {
|
|
|
|
child->impl = impl;
|
|
|
|
child->view = view;
|
|
|
|
child->surface = surface;
|
|
|
|
|
|
|
|
wl_signal_add(&surface->events.commit, &child->surface_commit);
|
|
|
|
child->surface_commit.notify = view_child_handle_surface_commit;
|
|
|
|
wl_signal_add(&surface->events.new_subsurface,
|
|
|
|
&child->surface_new_subsurface);
|
|
|
|
child->surface_new_subsurface.notify =
|
|
|
|
view_child_handle_surface_new_subsurface;
|
|
|
|
wl_signal_add(&surface->events.destroy, &child->surface_destroy);
|
|
|
|
child->surface_destroy.notify = view_child_handle_surface_destroy;
|
|
|
|
wl_signal_add(&view->events.unmap, &child->view_unmap);
|
|
|
|
child->view_unmap.notify = view_child_handle_view_unmap;
|
|
|
|
|
2018-04-07 00:26:32 +10:00
|
|
|
struct sway_container *output = child->view->swayc->parent;
|
|
|
|
if (output != NULL) {
|
|
|
|
if (output->type != C_OUTPUT) {
|
|
|
|
output = container_parent(output, C_OUTPUT);
|
|
|
|
}
|
|
|
|
wlr_surface_send_enter(child->surface, output->sway_output->wlr_output);
|
|
|
|
}
|
|
|
|
|
2018-04-06 04:46:02 +10:00
|
|
|
view_init_subsurfaces(child->view, surface);
|
|
|
|
|
|
|
|
// TODO: only damage the whole child
|
2018-04-07 01:27:40 +10:00
|
|
|
view_damage(child->view, true);
|
2018-04-06 04:46:02 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
void view_child_destroy(struct sway_view_child *child) {
|
|
|
|
// TODO: only damage the whole child
|
2018-04-07 01:27:40 +10:00
|
|
|
view_damage(child->view, true);
|
2018-04-06 04:46:02 +10:00
|
|
|
|
|
|
|
wl_list_remove(&child->surface_commit.link);
|
|
|
|
wl_list_remove(&child->surface_destroy.link);
|
|
|
|
wl_list_remove(&child->view_unmap.link);
|
|
|
|
|
|
|
|
if (child->impl && child->impl->destroy) {
|
|
|
|
child->impl->destroy(child);
|
|
|
|
} else {
|
|
|
|
free(child);
|
|
|
|
}
|
|
|
|
}
|