mirror of
https://github.com/WayfireWM/wf-osk.git
synced 2025-04-05 21:06:45 +02:00
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:
parent
d28bd69671
commit
dbfca9da0f
@ -95,6 +95,9 @@ namespace wf
|
|||||||
} else if (anchor.compare("right") == 0)
|
} else if (anchor.compare("right") == 0)
|
||||||
{
|
{
|
||||||
parsed_anchor = GTK_LAYER_SHELL_EDGE_RIGHT;
|
parsed_anchor = GTK_LAYER_SHELL_EDGE_RIGHT;
|
||||||
|
} else if (anchor.compare("pinned") == 0)
|
||||||
|
{
|
||||||
|
parsed_anchor = ANCHOR_PINNED_BOTTOM;
|
||||||
}
|
}
|
||||||
|
|
||||||
return parsed_anchor;
|
return parsed_anchor;
|
||||||
@ -110,6 +113,15 @@ namespace wf
|
|||||||
{
|
{
|
||||||
gtk_layer_set_anchor(this->gobj(),
|
gtk_layer_set_anchor(this->gobj(),
|
||||||
(GtkLayerShellEdge)layer_anchor, true);
|
(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);
|
this->set_size_request(width, height);
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
#include <virtual-keyboard-unstable-v1-client-protocol.h>
|
#include <virtual-keyboard-unstable-v1-client-protocol.h>
|
||||||
|
|
||||||
#define OSK_SPACING 8
|
#define OSK_SPACING 8
|
||||||
|
static constexpr int32_t ANCHOR_PINNED_BOTTOM = -2;
|
||||||
|
|
||||||
namespace wf
|
namespace wf
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user