From dbfca9da0f0b28e94a759122d9c13a4356a6913d Mon Sep 17 00:00:00 2001 From: gg-rewrite Date: Sun, 22 Mar 2020 16:50:54 +0300 Subject: [PATCH] added a special 'pinned' anchor. (#3) * added a special 'pinned' anchor to be able to push windows from under the keyboard * defined the magic constant for the pinned mode * fixed formatting * fixed formatting --- src/wayland-window.cpp | 12 ++++++++++++ src/wayland-window.hpp | 1 + 2 files changed, 13 insertions(+) diff --git a/src/wayland-window.cpp b/src/wayland-window.cpp index a6e04d1..8b8fa25 100644 --- a/src/wayland-window.cpp +++ b/src/wayland-window.cpp @@ -95,6 +95,9 @@ namespace wf } else if (anchor.compare("right") == 0) { parsed_anchor = GTK_LAYER_SHELL_EDGE_RIGHT; + } else if (anchor.compare("pinned") == 0) + { + parsed_anchor = ANCHOR_PINNED_BOTTOM; } return parsed_anchor; @@ -110,6 +113,15 @@ namespace wf { gtk_layer_set_anchor(this->gobj(), (GtkLayerShellEdge)layer_anchor, true); + } else if (layer_anchor == ANCHOR_PINNED_BOTTOM) + { + gtk_layer_set_anchor(this->gobj(), + GTK_LAYER_SHELL_EDGE_BOTTOM, true); + gtk_layer_set_anchor(this->gobj(), + GTK_LAYER_SHELL_EDGE_LEFT, true); + gtk_layer_set_anchor(this->gobj(), + GTK_LAYER_SHELL_EDGE_RIGHT, true); + gtk_layer_auto_exclusive_zone_enable(this->gobj()); } this->set_size_request(width, height); diff --git a/src/wayland-window.hpp b/src/wayland-window.hpp index fa64509..821560d 100644 --- a/src/wayland-window.hpp +++ b/src/wayland-window.hpp @@ -10,6 +10,7 @@ #include #define OSK_SPACING 8 +static constexpr int32_t ANCHOR_PINNED_BOTTOM = -2; namespace wf {