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
This commit is contained in:
gg-rewrite 2020-03-22 16:50:54 +03:00 committed by GitHub
parent d28bd69671
commit dbfca9da0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 0 deletions

View File

@ -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);

View File

@ -10,6 +10,7 @@
#include <virtual-keyboard-unstable-v1-client-protocol.h>
#define OSK_SPACING 8
static constexpr int32_t ANCHOR_PINNED_BOTTOM = -2;
namespace wf
{