2018-02-26 09:23:36 +11:00
|
|
|
#include <wayland-server.h>
|
|
|
|
#include <wlr/types/wlr_output_layout.h>
|
2018-03-31 04:18:50 +11:00
|
|
|
#include "log.h"
|
|
|
|
#include "sway/output.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-01-22 01:09:53 +11:00
|
|
|
|
|
|
|
const char *view_get_title(struct sway_view *view) {
|
|
|
|
if (view->iface.get_prop) {
|
|
|
|
return view->iface.get_prop(view, VIEW_PROP_TITLE);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *view_get_app_id(struct sway_view *view) {
|
|
|
|
if (view->iface.get_prop) {
|
|
|
|
return view->iface.get_prop(view, VIEW_PROP_APP_ID);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *view_get_class(struct sway_view *view) {
|
|
|
|
if (view->iface.get_prop) {
|
|
|
|
return view->iface.get_prop(view, VIEW_PROP_CLASS);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *view_get_instance(struct sway_view *view) {
|
|
|
|
if (view->iface.get_prop) {
|
|
|
|
return view->iface.get_prop(view, VIEW_PROP_INSTANCE);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void view_set_size(struct sway_view *view, int width, int height) {
|
|
|
|
if (view->iface.set_size) {
|
2018-02-26 09:23:36 +11:00
|
|
|
struct wlr_box box = {
|
|
|
|
.x = view->swayc->x,
|
|
|
|
.y = view->swayc->y,
|
|
|
|
.width = view->width,
|
|
|
|
.height = view->height,
|
|
|
|
};
|
2018-01-22 01:09:53 +11:00
|
|
|
view->iface.set_size(view, width, height);
|
2018-02-26 09:23:36 +11:00
|
|
|
view_update_outputs(view, &box);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-30 14:41:33 +11:00
|
|
|
// TODO make view coordinates in layout coordinates
|
2018-01-22 01:09:53 +11:00
|
|
|
void view_set_position(struct sway_view *view, double ox, double oy) {
|
|
|
|
if (view->iface.set_position) {
|
2018-02-26 09:23:36 +11:00
|
|
|
struct wlr_box box = {
|
|
|
|
.x = view->swayc->x,
|
|
|
|
.y = view->swayc->y,
|
|
|
|
.width = view->width,
|
|
|
|
.height = view->height,
|
|
|
|
};
|
2018-01-22 01:09:53 +11:00
|
|
|
view->iface.set_position(view, ox, oy);
|
2018-02-26 09:23:36 +11:00
|
|
|
view_update_outputs(view, &box);
|
2018-01-22 01:09:53 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void view_set_activated(struct sway_view *view, bool activated) {
|
|
|
|
if (view->iface.set_activated) {
|
|
|
|
view->iface.set_activated(view, activated);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void view_close(struct sway_view *view) {
|
|
|
|
if (view->iface.close) {
|
|
|
|
view->iface.close(view);
|
|
|
|
}
|
|
|
|
}
|
2018-02-26 09:23:36 +11:00
|
|
|
|
|
|
|
void view_update_outputs(struct sway_view *view, const struct wlr_box *before) {
|
|
|
|
struct wlr_output_layout *output_layout =
|
|
|
|
root_container.sway_root->output_layout;
|
|
|
|
struct wlr_box box = {
|
|
|
|
.x = view->swayc->x,
|
|
|
|
.y = view->swayc->y,
|
|
|
|
.width = view->width,
|
|
|
|
.height = view->height,
|
|
|
|
};
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-31 02:58:17 +11: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);
|
|
|
|
arrange_windows(parent, -1, -1);
|
|
|
|
return parent;
|
|
|
|
}
|
2018-03-31 04:18:50 +11:00
|
|
|
|
|
|
|
void view_damage_whole(struct sway_view *view) {
|
|
|
|
struct sway_container *cont = NULL;
|
|
|
|
for (int i = 0; i < root_container.children->length; ++i) {
|
|
|
|
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);
|
|
|
|
}
|