aboutsummaryrefslogtreecommitdiff
path: root/sway/desktop
diff options
context:
space:
mode:
authorVlad Pănăzan <vlad@panazan.ro>2020-12-05 18:32:44 +0200
committerSimon Ser <contact@emersion.fr>2020-12-07 12:30:13 +0100
commit71725a8eae6f8196d8e13a1b50af4f8ee4ebe971 (patch)
treece059eb969c1d9f6e5dc27f17ab944acf6c13042 /sway/desktop
parentcc2c0d5966f67189be4cfc350514134d3f4c0f3c (diff)
Add layer shell subsurfaces
Damage subsurfaces created by layer surfaces on map, unmap and commit. This fixes the flicker of Gtk Popovers. Fixes #5617
Diffstat (limited to 'sway/desktop')
-rw-r--r--sway/desktop/layer_shell.c80
1 files changed, 80 insertions, 0 deletions
diff --git a/sway/desktop/layer_shell.c b/sway/desktop/layer_shell.c
index 738b1797..d4ca4fb4 100644
--- a/sway/desktop/layer_shell.c
+++ b/sway/desktop/layer_shell.c
@@ -351,6 +351,7 @@ static void handle_destroy(struct wl_listener *listener, void *data) {
wl_list_remove(&sway_layer->unmap.link);
wl_list_remove(&sway_layer->surface_commit.link);
wl_list_remove(&sway_layer->new_popup.link);
+ wl_list_remove(&sway_layer->new_subsurface.link);
if (sway_layer->layer_surface->output != NULL) {
struct sway_output *output = sway_layer->layer_surface->output->data;
if (output != NULL) {
@@ -380,6 +381,82 @@ static void handle_unmap(struct wl_listener *listener, void *data) {
unmap(sway_layer);
}
+static void subsurface_damage(struct sway_layer_subsurface *subsurface,
+ bool whole) {
+ struct sway_layer_surface *layer = subsurface->layer_surface;
+ struct wlr_output *wlr_output = layer->layer_surface->output;
+ if (!wlr_output) {
+ return;
+ }
+ struct sway_output *output = wlr_output->data;
+ int ox = subsurface->wlr_subsurface->current.x + layer->geo.x;
+ int oy = subsurface->wlr_subsurface->current.y + layer->geo.y;
+ output_damage_surface(
+ output, ox, oy, subsurface->wlr_subsurface->surface, whole);
+}
+
+static void subsurface_handle_unmap(struct wl_listener *listener, void *data) {
+ struct sway_layer_subsurface *subsurface =
+ wl_container_of(listener, subsurface, unmap);
+ subsurface_damage(subsurface, true);
+}
+
+static void subsurface_handle_map(struct wl_listener *listener, void *data) {
+ struct sway_layer_subsurface *subsurface =
+ wl_container_of(listener, subsurface, map);
+ subsurface_damage(subsurface, true);
+}
+
+static void subsurface_handle_commit(struct wl_listener *listener, void *data) {
+ struct sway_layer_subsurface *subsurface =
+ wl_container_of(listener, subsurface, commit);
+ subsurface_damage(subsurface, false);
+}
+
+static void subsurface_handle_destroy(struct wl_listener *listener,
+ void *data) {
+ struct sway_layer_subsurface *subsurface =
+ wl_container_of(listener, subsurface, destroy);
+
+ wl_list_remove(&subsurface->map.link);
+ wl_list_remove(&subsurface->unmap.link);
+ wl_list_remove(&subsurface->destroy.link);
+ wl_list_remove(&subsurface->commit.link);
+ free(subsurface);
+}
+
+static struct sway_layer_subsurface *create_subsurface(
+ struct wlr_subsurface *wlr_subsurface,
+ struct sway_layer_surface *layer_surface) {
+ struct sway_layer_subsurface *subsurface =
+ calloc(1, sizeof(struct sway_layer_surface));
+ if (subsurface == NULL) {
+ return NULL;
+ }
+
+ subsurface->wlr_subsurface = wlr_subsurface;
+ subsurface->layer_surface = layer_surface;
+
+ subsurface->map.notify = subsurface_handle_map;
+ wl_signal_add(&wlr_subsurface->events.map, &subsurface->map);
+ subsurface->unmap.notify = subsurface_handle_unmap;
+ wl_signal_add(&wlr_subsurface->events.unmap, &subsurface->unmap);
+ subsurface->destroy.notify = subsurface_handle_destroy;
+ wl_signal_add(&wlr_subsurface->events.destroy, &subsurface->destroy);
+ subsurface->commit.notify = subsurface_handle_commit;
+ wl_signal_add(&wlr_subsurface->surface->events.commit, &subsurface->commit);
+
+ return subsurface;
+}
+
+static void handle_new_subsurface(struct wl_listener *listener, void *data) {
+ struct sway_layer_surface *sway_layer_surface =
+ wl_container_of(listener, sway_layer_surface, new_subsurface);
+ struct wlr_subsurface *wlr_subsurface = data;
+ create_subsurface(wlr_subsurface, sway_layer_surface);
+}
+
+
static struct sway_layer_surface *popup_get_layer(
struct sway_layer_popup *popup) {
while (popup->parent_type == LAYER_PARENT_POPUP) {
@@ -563,6 +640,9 @@ void handle_layer_shell_surface(struct wl_listener *listener, void *data) {
wl_signal_add(&layer_surface->events.unmap, &sway_layer->unmap);
sway_layer->new_popup.notify = handle_new_popup;
wl_signal_add(&layer_surface->events.new_popup, &sway_layer->new_popup);
+ sway_layer->new_subsurface.notify = handle_new_subsurface;
+ wl_signal_add(&layer_surface->surface->events.new_subsurface,
+ &sway_layer->new_subsurface);
sway_layer->layer_surface = layer_surface;
layer_surface->data = sway_layer;