mirror of
https://github.com/WayfireWM/wf-osk.git
synced 2025-04-05 12:56:45 +02:00
port to gtk-layer-shell
This commit is contained in:
parent
8c04cce285
commit
5451317111
@ -16,6 +16,7 @@ project(
|
||||
gtkmm = dependency('gtkmm-3.0')
|
||||
wayland_client = dependency('wayland-client')
|
||||
wayland_protos = dependency('wayland-protocols')
|
||||
gtkls = dependency('gtk-layer-shell-0')
|
||||
|
||||
add_project_link_arguments(['-rdynamic'], language:'cpp')
|
||||
add_project_arguments(['-Wno-unused-parameter'], language: 'cpp')
|
||||
|
@ -15,9 +15,7 @@ wayland_scanner_client = generator(
|
||||
)
|
||||
|
||||
client_protocols = [
|
||||
[wl_protocol_dir, 'stable/xdg-shell/xdg-shell.xml'],
|
||||
['wayfire-shell.xml'],
|
||||
['wlr-layer-shell-unstable-v1.xml'],
|
||||
['wayfire-shell-unstable-v2.xml'],
|
||||
['virtual-keyboard-unstable-v1.xml']
|
||||
]
|
||||
|
||||
|
@ -1,172 +0,0 @@
|
||||
<protocol name="wayfire_shell">
|
||||
<interface name="zwf_shell_manager_v1" version="1">
|
||||
<description summary="DE integration">
|
||||
IMPORTANT: most of wayfire-shell is going to be deprecated. Try to
|
||||
use layer-shell instead.
|
||||
|
||||
The purpose of this protocol is to enable the creation of different
|
||||
desktop-interface windows like panels, backgrounds, docks,
|
||||
lockscreens, etc. It also aims to allow the creation of full-blown
|
||||
DEs using Wayfire.
|
||||
|
||||
Note that in contrast to some other efforts to create a similar
|
||||
protocol, such as wlr-layer-shell, this isn't a new "shell" for
|
||||
giving a role to wl_surfaces. This protocol can be used with any
|
||||
type of toplevel surface (xdg_toplevel, xdg_toplevel_v6, etc.)
|
||||
to give them to the corresponding WM role.
|
||||
</description>
|
||||
|
||||
<request name="get_wf_output">
|
||||
<description summary="Create a wf_output from the given output"/>
|
||||
<arg name="output" type="object" interface="wl_output"/>
|
||||
<arg name="id" type="new_id" interface="zwf_output_v1"/>
|
||||
</request>
|
||||
|
||||
<request name="get_wm_surface">
|
||||
<description summary="Assign a role">
|
||||
Assign the given role to the given surface and add it to the
|
||||
given output. A client can specify a null output, in which case
|
||||
the compositor will assign the surface to the focused output,
|
||||
if any such output.
|
||||
|
||||
The role cannot be changed later, and neither can the surface be
|
||||
moved to a different output, except by the compositor.
|
||||
</description>
|
||||
|
||||
<arg name="surface" type="object" interface="wl_surface"/>
|
||||
<arg name="role" type="uint" enum="zwf_wm_surface_v1.role"/>
|
||||
<arg name="output" type="object" interface="wl_output" allow-null="true"/>
|
||||
<arg name="id" type="new_id" interface="zwf_wm_surface_v1"/>
|
||||
</request>
|
||||
</interface>
|
||||
|
||||
<interface name="zwf_output_v1" version="1">
|
||||
<description summary="A wrapper for wl_output">
|
||||
Represents a single output.
|
||||
Each output is managed independently from the others.
|
||||
</description>
|
||||
<event name="output_hide_panels">
|
||||
<description summary="Autohide/Show signal">
|
||||
Panels are always rendered on top, even above fullscreen windows.
|
||||
If autohide is 1, the event indicates that the panels should hide
|
||||
itself, by for example unmapping or sliding outside of the output.
|
||||
If autohide is 0, this means that the reason for the last request
|
||||
with autohide == 1 is no longer valid, i.e the panels can show
|
||||
themselves.
|
||||
|
||||
The output_hide_panels can be called multiple times with
|
||||
autohide = 1, and the panel should show itself only when
|
||||
it has received a matching number of events with autohide = 0
|
||||
</description>
|
||||
|
||||
<arg name="autohide" type="uint"/>
|
||||
</event>
|
||||
|
||||
<request name="inhibit_output">
|
||||
<description summary="Don't render the output">
|
||||
Request the compositor to not render the output, so
|
||||
the output usually is cleared to black color.
|
||||
To enable output rendering again, call inhibit_output_done
|
||||
</description>
|
||||
</request>
|
||||
|
||||
<request name="inhibit_output_done">
|
||||
<description summary="Render the output">
|
||||
Stop inhibiting the output. This must be called as many times
|
||||
as inhibit_output was called to actually uninhibit rendering.
|
||||
|
||||
The inhibit/inhibit_done requests can be called multiple times,
|
||||
even from different apps, so don't assume that a call to
|
||||
inhibit_done would always mean actually starting the rendering process.
|
||||
</description>
|
||||
</request>
|
||||
</interface>
|
||||
|
||||
<interface name="zwf_wm_surface_v1" version="1">
|
||||
<description summary="Surface with a WM role">
|
||||
Represents a surface with a specific WM role.
|
||||
It belongs to the output which it was created for.
|
||||
</description>
|
||||
|
||||
<enum name="role">
|
||||
<entry name="background" value="1"/>
|
||||
<entry name="bottom" value="2"/>
|
||||
<entry name="panel" value="3"/>
|
||||
<entry name="overlay" value="4"/>
|
||||
<entry name="desktop_widget" value="5"/>
|
||||
</enum>
|
||||
|
||||
<request name="configure">
|
||||
<description summary="Move the surface to the given output-local coordinates."/>
|
||||
|
||||
<arg name="x" type="int"/>
|
||||
<arg name="y" type="int"/>
|
||||
</request>
|
||||
|
||||
<enum name="anchor_edge">
|
||||
<entry name="top" value="1"/>
|
||||
<entry name="bottom" value="2"/>
|
||||
<entry name="left" value="4"/>
|
||||
<entry name="right" value="8"/>
|
||||
</enum>
|
||||
|
||||
<request name="set_anchor">
|
||||
<description summary="set anchor position">
|
||||
Sets the position on the screen where the compositor should
|
||||
position the view. Can be reset by specifying anchor 0. If not
|
||||
set, the compositor will assume manual positioning via the
|
||||
configure request.
|
||||
|
||||
If one anchor edge is provided, the wm surface is "stuck" to
|
||||
that edge.
|
||||
If two anchor edges are provided, the wm surface is considered
|
||||
anchored to the corner of the screen between them.
|
||||
|
||||
Any other anchor edge configuration is considered invalid.
|
||||
</description>
|
||||
<arg name="anchors" type="uint"/>
|
||||
</request>
|
||||
|
||||
<request name="set_margin">
|
||||
<description summary="set margin respective to anchored edges">
|
||||
Set the offset from the anchored edges to the wm surface. This
|
||||
is an alternative to the configure request. Using both will
|
||||
result in undefined results.
|
||||
|
||||
Margin has effect only for edges the wm surface is anchored to.
|
||||
</description>
|
||||
|
||||
<arg name="top" type="int"/>
|
||||
<arg name="bottom" type="int"/>
|
||||
<arg name="left" type="int"/>
|
||||
<arg name="right" type="int"/>
|
||||
</request>
|
||||
|
||||
<enum name="keyboard_focus_mode">
|
||||
<entry name="no_focus" value="0"/>
|
||||
<entry name="click_to_focus" value="1"/>
|
||||
<entry name="exclusive_focus" value="2"/>
|
||||
</enum>
|
||||
|
||||
<request name="set_keyboard_mode">
|
||||
<description summary="Set keyboard focus mode">
|
||||
Sets how the wm surface will interact with keyboard focus.
|
||||
Setting no_focus means that the surface will never receive
|
||||
keyboard focus, click_to_focus means normal focus semantics (i.e
|
||||
what you expect from "normal" windows), and exclusive focus means
|
||||
that no other window can get keyboard focus.
|
||||
</description>
|
||||
<arg name="mode" type="uint" enum="keyboard_focus_mode"/>
|
||||
</request>
|
||||
|
||||
<request name="set_exclusive_zone">
|
||||
<description summary="Reserve pixels">
|
||||
Request the compositor to reserve the given amount of pixels
|
||||
for the wm surface(like STRUTS in X11). This has effect only
|
||||
if the surface is anchored to a single edge. Margin doesn't
|
||||
affect exclusive zone in any way.
|
||||
</description>
|
||||
<arg name="size" type="uint"/>
|
||||
</request>
|
||||
</interface>
|
||||
</protocol>
|
@ -1,285 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<protocol name="wlr_layer_shell_unstable_v1">
|
||||
<copyright>
|
||||
Copyright © 2017 Drew DeVault
|
||||
|
||||
Permission to use, copy, modify, distribute, and sell this
|
||||
software and its documentation for any purpose is hereby granted
|
||||
without fee, provided that the above copyright notice appear in
|
||||
all copies and that both that copyright notice and this permission
|
||||
notice appear in supporting documentation, and that the name of
|
||||
the copyright holders not be used in advertising or publicity
|
||||
pertaining to distribution of the software without specific,
|
||||
written prior permission. The copyright holders make no
|
||||
representations about the suitability of this software for any
|
||||
purpose. It is provided "as is" without express or implied
|
||||
warranty.
|
||||
|
||||
THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
|
||||
SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
|
||||
AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
||||
THIS SOFTWARE.
|
||||
</copyright>
|
||||
|
||||
<interface name="zwlr_layer_shell_v1" version="1">
|
||||
<description summary="create surfaces that are layers of the desktop">
|
||||
Clients can use this interface to assign the surface_layer role to
|
||||
wl_surfaces. Such surfaces are assigned to a "layer" of the output and
|
||||
rendered with a defined z-depth respective to each other. They may also be
|
||||
anchored to the edges and corners of a screen and specify input handling
|
||||
semantics. This interface should be suitable for the implementation of
|
||||
many desktop shell components, and a broad number of other applications
|
||||
that interact with the desktop.
|
||||
</description>
|
||||
|
||||
<request name="get_layer_surface">
|
||||
<description summary="create a layer_surface from a surface">
|
||||
Create a layer surface for an existing surface. This assigns the role of
|
||||
layer_surface, or raises a protocol error if another role is already
|
||||
assigned.
|
||||
|
||||
Creating a layer surface from a wl_surface which has a buffer attached
|
||||
or committed is a client error, and any attempts by a client to attach
|
||||
or manipulate a buffer prior to the first layer_surface.configure call
|
||||
must also be treated as errors.
|
||||
|
||||
You may pass NULL for output to allow the compositor to decide which
|
||||
output to use. Generally this will be the one that the user most
|
||||
recently interacted with.
|
||||
|
||||
Clients can specify a namespace that defines the purpose of the layer
|
||||
surface.
|
||||
</description>
|
||||
<arg name="id" type="new_id" interface="zwlr_layer_surface_v1"/>
|
||||
<arg name="surface" type="object" interface="wl_surface"/>
|
||||
<arg name="output" type="object" interface="wl_output" allow-null="true"/>
|
||||
<arg name="layer" type="uint" enum="layer" summary="layer to add this surface to"/>
|
||||
<arg name="np" type="string" summary="namespace for the layer surface"/>
|
||||
</request>
|
||||
|
||||
<enum name="error">
|
||||
<entry name="role" value="0" summary="wl_surface has another role"/>
|
||||
<entry name="invalid_layer" value="1" summary="layer value is invalid"/>
|
||||
<entry name="already_constructed" value="2" summary="wl_surface has a buffer attached or committed"/>
|
||||
</enum>
|
||||
|
||||
<enum name="layer">
|
||||
<description summary="available layers for surfaces">
|
||||
These values indicate which layers a surface can be rendered in. They
|
||||
are ordered by z depth, bottom-most first. Traditional shell surfaces
|
||||
will typically be rendered between the bottom and top layers.
|
||||
Fullscreen shell surfaces are typically rendered at the top layer.
|
||||
Multiple surfaces can share a single layer, and ordering within a
|
||||
single layer is undefined.
|
||||
</description>
|
||||
|
||||
<entry name="background" value="0"/>
|
||||
<entry name="bottom" value="1"/>
|
||||
<entry name="top" value="2"/>
|
||||
<entry name="overlay" value="3"/>
|
||||
</enum>
|
||||
</interface>
|
||||
|
||||
<interface name="zwlr_layer_surface_v1" version="1">
|
||||
<description summary="layer metadata interface">
|
||||
An interface that may be implemented by a wl_surface, for surfaces that
|
||||
are designed to be rendered as a layer of a stacked desktop-like
|
||||
environment.
|
||||
|
||||
Layer surface state (size, anchor, exclusive zone, margin, interactivity)
|
||||
is double-buffered, and will be applied at the time wl_surface.commit of
|
||||
the corresponding wl_surface is called.
|
||||
</description>
|
||||
|
||||
<request name="set_size">
|
||||
<description summary="sets the size of the surface">
|
||||
Sets the size of the surface in surface-local coordinates. The
|
||||
compositor will display the surface centered with respect to its
|
||||
anchors.
|
||||
|
||||
If you pass 0 for either value, the compositor will assign it and
|
||||
inform you of the assignment in the configure event. You must set your
|
||||
anchor to opposite edges in the dimensions you omit; not doing so is a
|
||||
protocol error. Both values are 0 by default.
|
||||
|
||||
Size is double-buffered, see wl_surface.commit.
|
||||
</description>
|
||||
<arg name="width" type="uint"/>
|
||||
<arg name="height" type="uint"/>
|
||||
</request>
|
||||
|
||||
<request name="set_anchor">
|
||||
<description summary="configures the anchor point of the surface">
|
||||
Requests that the compositor anchor the surface to the specified edges
|
||||
and corners. If two orthoginal edges are specified (e.g. 'top' and
|
||||
'left'), then the anchor point will be the intersection of the edges
|
||||
(e.g. the top left corner of the output); otherwise the anchor point
|
||||
will be centered on that edge, or in the center if none is specified.
|
||||
|
||||
Anchor is double-buffered, see wl_surface.commit.
|
||||
</description>
|
||||
<arg name="anchor" type="uint" enum="anchor"/>
|
||||
</request>
|
||||
|
||||
<request name="set_exclusive_zone">
|
||||
<description summary="configures the exclusive geometry of this surface">
|
||||
Requests that the compositor avoids occluding an area of the surface
|
||||
with other surfaces. The compositor's use of this information is
|
||||
implementation-dependent - do not assume that this region will not
|
||||
actually be occluded.
|
||||
|
||||
A positive value is only meaningful if the surface is anchored to an
|
||||
edge, rather than a corner. The zone is the number of surface-local
|
||||
coordinates from the edge that are considered exclusive.
|
||||
|
||||
Surfaces that do not wish to have an exclusive zone may instead specify
|
||||
how they should interact with surfaces that do. If set to zero, the
|
||||
surface indicates that it would like to be moved to avoid occluding
|
||||
surfaces with a positive excluzive zone. If set to -1, the surface
|
||||
indicates that it would not like to be moved to accomodate for other
|
||||
surfaces, and the compositor should extend it all the way to the edges
|
||||
it is anchored to.
|
||||
|
||||
For example, a panel might set its exclusive zone to 10, so that
|
||||
maximized shell surfaces are not shown on top of it. A notification
|
||||
might set its exclusive zone to 0, so that it is moved to avoid
|
||||
occluding the panel, but shell surfaces are shown underneath it. A
|
||||
wallpaper or lock screen might set their exclusive zone to -1, so that
|
||||
they stretch below or over the panel.
|
||||
|
||||
The default value is 0.
|
||||
|
||||
Exclusive zone is double-buffered, see wl_surface.commit.
|
||||
</description>
|
||||
<arg name="zone" type="int"/>
|
||||
</request>
|
||||
|
||||
<request name="set_margin">
|
||||
<description summary="sets a margin from the anchor point">
|
||||
Requests that the surface be placed some distance away from the anchor
|
||||
point on the output, in surface-local coordinates. Setting this value
|
||||
for edges you are not anchored to has no effect.
|
||||
|
||||
The exclusive zone includes the margin.
|
||||
|
||||
Margin is double-buffered, see wl_surface.commit.
|
||||
</description>
|
||||
<arg name="top" type="int"/>
|
||||
<arg name="right" type="int"/>
|
||||
<arg name="bottom" type="int"/>
|
||||
<arg name="left" type="int"/>
|
||||
</request>
|
||||
|
||||
<request name="set_keyboard_interactivity">
|
||||
<description summary="requests keyboard events">
|
||||
Set to 1 to request that the seat send keyboard events to this layer
|
||||
surface. For layers below the shell surface layer, the seat will use
|
||||
normal focus semantics. For layers above the shell surface layers, the
|
||||
seat will always give exclusive keyboard focus to the top-most layer
|
||||
which has keyboard interactivity set to true.
|
||||
|
||||
Layer surfaces receive pointer, touch, and tablet events normally. If
|
||||
you do not want to receive them, set the input region on your surface
|
||||
to an empty region.
|
||||
|
||||
Events is double-buffered, see wl_surface.commit.
|
||||
</description>
|
||||
<arg name="keyboard_interactivity" type="uint"/>
|
||||
</request>
|
||||
|
||||
<request name="get_popup">
|
||||
<description summary="assign this layer_surface as an xdg_popup parent">
|
||||
This assigns an xdg_popup's parent to this layer_surface. This popup
|
||||
should have been created via xdg_surface::get_popup with the parent set
|
||||
to NULL, and this request must be invoked before committing the popup's
|
||||
initial state.
|
||||
|
||||
See the documentation of xdg_popup for more details about what an
|
||||
xdg_popup is and how it is used.
|
||||
</description>
|
||||
<arg name="popup" type="object" interface="xdg_popup"/>
|
||||
</request>
|
||||
|
||||
<request name="ack_configure">
|
||||
<description summary="ack a configure event">
|
||||
When a configure event is received, if a client commits the
|
||||
surface in response to the configure event, then the client
|
||||
must make an ack_configure request sometime before the commit
|
||||
request, passing along the serial of the configure event.
|
||||
|
||||
If the client receives multiple configure events before it
|
||||
can respond to one, it only has to ack the last configure event.
|
||||
|
||||
A client is not required to commit immediately after sending
|
||||
an ack_configure request - it may even ack_configure several times
|
||||
before its next surface commit.
|
||||
|
||||
A client may send multiple ack_configure requests before committing, but
|
||||
only the last request sent before a commit indicates which configure
|
||||
event the client really is responding to.
|
||||
</description>
|
||||
<arg name="serial" type="uint" summary="the serial from the configure event"/>
|
||||
</request>
|
||||
|
||||
<request name="destroy" type="destructor">
|
||||
<description summary="destroy the layer_surface">
|
||||
This request destroys the layer surface.
|
||||
</description>
|
||||
</request>
|
||||
|
||||
<event name="configure">
|
||||
<description summary="suggest a surface change">
|
||||
The configure event asks the client to resize its surface.
|
||||
|
||||
Clients should arrange their surface for the new states, and then send
|
||||
an ack_configure request with the serial sent in this configure event at
|
||||
some point before committing the new surface.
|
||||
|
||||
The client is free to dismiss all but the last configure event it
|
||||
received.
|
||||
|
||||
The width and height arguments specify the size of the window in
|
||||
surface-local coordinates.
|
||||
|
||||
The size is a hint, in the sense that the client is free to ignore it if
|
||||
it doesn't resize, pick a smaller size (to satisfy aspect ratio or
|
||||
resize in steps of NxM pixels). If the client picks a smaller size and
|
||||
is anchored to two opposite anchors (e.g. 'top' and 'bottom'), the
|
||||
surface will be centered on this axis.
|
||||
|
||||
If the width or height arguments are zero, it means the client should
|
||||
decide its own window dimension.
|
||||
</description>
|
||||
<arg name="serial" type="uint"/>
|
||||
<arg name="width" type="uint"/>
|
||||
<arg name="height" type="uint"/>
|
||||
</event>
|
||||
|
||||
<event name="closed">
|
||||
<description summary="surface should be closed">
|
||||
The closed event is sent by the compositor when the surface will no
|
||||
longer be shown. The output may have been destroyed or the user may
|
||||
have asked for it to be removed. Further changes to the surface will be
|
||||
ignored. The client should destroy the resource after receiving this
|
||||
event, and create a new surface if they so choose.
|
||||
</description>
|
||||
</event>
|
||||
|
||||
<enum name="error">
|
||||
<entry name="invalid_surface_state" value="0" summary="provided surface state is invalid"/>
|
||||
<entry name="invalid_size" value="1" summary="size is invalid"/>
|
||||
<entry name="invalid_anchor" value="2" summary="anchor bitfield is invalid"/>
|
||||
</enum>
|
||||
|
||||
<enum name="anchor" bitfield="true">
|
||||
<entry name="top" value="1" summary="the top edge of the anchor rectangle"/>
|
||||
<entry name="bottom" value="2" summary="the bottom edge of the anchor rectangle"/>
|
||||
<entry name="left" value="4" summary="the left edge of the anchor rectangle"/>
|
||||
<entry name="right" value="8" summary="the right edge of the anchor rectangle"/>
|
||||
</enum>
|
||||
</interface>
|
||||
</protocol>
|
@ -17,8 +17,6 @@ namespace wf
|
||||
namespace osk
|
||||
{
|
||||
int spacing = 8;
|
||||
int default_x = 100;
|
||||
int default_y = 100;
|
||||
int default_width = 800;
|
||||
int default_height = 400;
|
||||
std::string anchor;
|
||||
@ -125,7 +123,7 @@ namespace wf
|
||||
Keyboard::Keyboard()
|
||||
{
|
||||
window = std::make_unique<WaylandWindow>
|
||||
(default_x, default_y, default_width, default_height, anchor);
|
||||
(default_width, default_height, anchor);
|
||||
vk = std::make_unique<VirtualKeyboardDevice> ();
|
||||
|
||||
init_layouts();
|
||||
@ -181,10 +179,6 @@ int main(int argc, char **argv)
|
||||
bool show_help = false;
|
||||
|
||||
auto cli = clara::detail::Help(show_help) |
|
||||
clara::detail::Opt(wf::osk::default_x, "int")["-x"]
|
||||
("x position (wf-shell only)") |
|
||||
clara::detail::Opt(wf::osk::default_y, "int")["-y"]
|
||||
("y position (wf-shell only)") |
|
||||
clara::detail::Opt(wf::osk::default_width, "int")["-w"]["--width"]
|
||||
("keyboard width") |
|
||||
clara::detail::Opt(wf::osk::default_height, "int")["-h"]["--height"]
|
||||
|
@ -1,3 +1,3 @@
|
||||
executable('wf-osk', ['main.cpp', 'wayland-window.cpp', 'virtual-keyboard.cpp', 'shared/os-compatibility.c'],
|
||||
dependencies: [gtkmm, wf_protos],
|
||||
dependencies: [gtkmm, wf_protos, gtkls],
|
||||
install: true)
|
||||
|
@ -7,14 +7,18 @@
|
||||
#include <time.h>
|
||||
#include <iostream>
|
||||
|
||||
#include <gdkmm/display.h>
|
||||
#include <gdkmm/seat.h>
|
||||
#include <gdk/gdkwayland.h>
|
||||
|
||||
namespace wf
|
||||
{
|
||||
VirtualKeyboardDevice::VirtualKeyboardDevice()
|
||||
{
|
||||
auto& display = WaylandDisplay::get();
|
||||
|
||||
auto seat = Gdk::Display::get_default()->get_default_seat();
|
||||
vk = zwp_virtual_keyboard_manager_v1_create_virtual_keyboard(
|
||||
display.vk_manager, display.seat);
|
||||
display.vk_manager, gdk_wayland_seat_get_wl_seat(seat->gobj()));
|
||||
|
||||
this->send_keymap();
|
||||
}
|
||||
|
@ -3,33 +3,21 @@
|
||||
#include <algorithm>
|
||||
#include <gdk/gdkwayland.h>
|
||||
#include <wayland-client.h>
|
||||
#include <gtk-layer-shell.h>
|
||||
|
||||
namespace wf
|
||||
{
|
||||
// listeners
|
||||
static void registry_add_object(void *data, struct wl_registry *registry, uint32_t name,
|
||||
const char *interface, uint32_t version)
|
||||
static void registry_add_object(void *data, struct wl_registry *registry,
|
||||
uint32_t name, const char *interface, uint32_t version)
|
||||
{
|
||||
auto display = static_cast<WaylandDisplay*> (data);
|
||||
|
||||
if (strcmp(interface, wl_seat_interface.name) == 0 && !display->seat)
|
||||
if (strcmp(interface, zwf_shell_manager_v2_interface.name) == 0)
|
||||
{
|
||||
display->seat = (wl_seat*) wl_registry_bind(registry, name,
|
||||
&wl_seat_interface, std::min(version, 1u));
|
||||
}
|
||||
|
||||
if (strcmp(interface, zwf_shell_manager_v1_interface.name) == 0)
|
||||
{
|
||||
display->wf_manager =
|
||||
(zwf_shell_manager_v1*) wl_registry_bind(registry, name,
|
||||
&zwf_shell_manager_v1_interface, std::min(version, 1u));
|
||||
}
|
||||
|
||||
if (strcmp(interface, zwlr_layer_shell_v1_interface.name) == 0)
|
||||
{
|
||||
display->layer_shell =
|
||||
(zwlr_layer_shell_v1*) wl_registry_bind(registry, name,
|
||||
&zwlr_layer_shell_v1_interface, std::min(version, 1u));
|
||||
display->zwf_manager =
|
||||
(zwf_shell_manager_v2*) wl_registry_bind(registry, name,
|
||||
&zwf_shell_manager_v2_interface, std::min(version, 1u));
|
||||
}
|
||||
|
||||
if (strcmp(interface, zwp_virtual_keyboard_manager_v1_interface.name) == 0)
|
||||
@ -51,28 +39,6 @@ namespace wf
|
||||
®istry_remove_object
|
||||
};
|
||||
|
||||
static void layer_shell_handle_configure(void *data,
|
||||
struct zwlr_layer_surface_v1 *zwlr_layer_surface, uint32_t serial,
|
||||
uint32_t width, uint32_t height)
|
||||
{
|
||||
zwlr_layer_surface_v1_ack_configure(zwlr_layer_surface, serial);
|
||||
}
|
||||
|
||||
static void layer_shell_handle_close(void *data,
|
||||
struct zwlr_layer_surface_v1 *surface)
|
||||
{
|
||||
zwlr_layer_surface_v1_destroy(surface);
|
||||
|
||||
Gtk::Application *app = (Gtk::Application *) data;
|
||||
app->quit();
|
||||
}
|
||||
|
||||
static struct zwlr_layer_surface_v1_listener layer_surface_listener =
|
||||
{
|
||||
&layer_shell_handle_configure,
|
||||
&layer_shell_handle_close
|
||||
};
|
||||
|
||||
WaylandDisplay::WaylandDisplay()
|
||||
{
|
||||
auto gdk_display = gdk_display_get_default();
|
||||
@ -90,10 +56,10 @@ namespace wf
|
||||
wl_display_dispatch(display);
|
||||
wl_display_roundtrip(display);
|
||||
|
||||
if (!vk_manager || !seat || (!wf_manager && !layer_shell))
|
||||
if (!vk_manager)
|
||||
{
|
||||
std::cerr << "Compositor doesn't support the virtual-keyboard-v1 "
|
||||
<< "and/or the wayfire-shell protocols, exiting" << std::endl;
|
||||
<< "protocol, exiting" << std::endl;
|
||||
std::exit(-1);
|
||||
}
|
||||
}
|
||||
@ -104,151 +70,56 @@ namespace wf
|
||||
return instance;
|
||||
}
|
||||
|
||||
uint32_t WaylandWindow::check_anchor_for_wayfire_shell(int width,
|
||||
int height, std::string anchor)
|
||||
int32_t WaylandWindow::check_anchor(std::string anchor)
|
||||
{
|
||||
if (anchor.empty())
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
std::transform(anchor.begin(), anchor.end(), anchor.begin(), ::tolower);
|
||||
|
||||
uint32_t parsed_anchor = 0;
|
||||
int32_t parsed_anchor = -1;
|
||||
if (anchor.compare("top") == 0)
|
||||
{
|
||||
parsed_anchor = ZWF_WM_SURFACE_V1_ANCHOR_EDGE_TOP;
|
||||
parsed_anchor = GTK_LAYER_SHELL_EDGE_TOP;
|
||||
} else if (anchor.compare("bottom") == 0)
|
||||
{
|
||||
parsed_anchor = ZWF_WM_SURFACE_V1_ANCHOR_EDGE_BOTTOM;
|
||||
parsed_anchor = GTK_LAYER_SHELL_EDGE_BOTTOM;
|
||||
} else if (anchor.compare("left") == 0)
|
||||
{
|
||||
parsed_anchor = ZWF_WM_SURFACE_V1_ANCHOR_EDGE_LEFT;
|
||||
parsed_anchor = GTK_LAYER_SHELL_EDGE_LEFT;
|
||||
} else if (anchor.compare("right") == 0)
|
||||
{
|
||||
parsed_anchor = ZWF_WM_SURFACE_V1_ANCHOR_EDGE_RIGHT;
|
||||
parsed_anchor = GTK_LAYER_SHELL_EDGE_RIGHT;
|
||||
}
|
||||
|
||||
return parsed_anchor;
|
||||
}
|
||||
|
||||
uint32_t WaylandWindow::check_anchor_for_layer_shell(int width, int height,
|
||||
std::string anchor)
|
||||
void WaylandWindow::init(int width, int height, std::string anchor)
|
||||
{
|
||||
if (anchor.empty())
|
||||
gtk_layer_init_for_window(this->gobj());
|
||||
gtk_layer_set_layer(this->gobj(), GTK_LAYER_SHELL_LAYER_TOP);
|
||||
auto layer_anchor = check_anchor(anchor);
|
||||
if (layer_anchor > -1)
|
||||
{
|
||||
return 0;
|
||||
gtk_layer_set_anchor(this->gobj(),
|
||||
(GtkLayerShellEdge)layer_anchor, true);
|
||||
}
|
||||
|
||||
std::transform(anchor.begin(), anchor.end(), anchor.begin(), ::tolower);
|
||||
|
||||
uint32_t parsed_anchor = 0;
|
||||
if (anchor.compare("top") == 0)
|
||||
{
|
||||
parsed_anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP;
|
||||
} else if (anchor.compare("bottom") == 0)
|
||||
{
|
||||
parsed_anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM;
|
||||
} else if (anchor.compare("left") == 0)
|
||||
{
|
||||
parsed_anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT;
|
||||
} else if (anchor.compare("right") == 0)
|
||||
{
|
||||
parsed_anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT;
|
||||
}
|
||||
|
||||
return parsed_anchor;
|
||||
}
|
||||
|
||||
void WaylandWindow::init_wayfire_shell(WaylandDisplay display, int x, int y,
|
||||
int width, int height, std::string anchor)
|
||||
{
|
||||
this->set_size_request(width, height);
|
||||
this->show_all();
|
||||
auto gdk_window = this->get_window()->gobj();
|
||||
auto surface = gdk_wayland_window_get_wl_surface(gdk_window);
|
||||
|
||||
if (!surface)
|
||||
if (surface && WaylandDisplay::get().zwf_manager)
|
||||
{
|
||||
std::cerr << "Error: created window was not a wayland surface" << std::endl;
|
||||
std::exit(-1);
|
||||
this->wf_surface = zwf_shell_manager_v2_get_wf_surface(
|
||||
WaylandDisplay::get().zwf_manager, surface);
|
||||
}
|
||||
|
||||
wf_surface = zwf_shell_manager_v1_get_wm_surface(display.wf_manager,
|
||||
surface, ZWF_WM_SURFACE_V1_ROLE_DESKTOP_WIDGET, nullptr);
|
||||
zwf_wm_surface_v1_set_keyboard_mode(wf_surface,
|
||||
ZWF_WM_SURFACE_V1_KEYBOARD_FOCUS_MODE_NO_FOCUS);
|
||||
|
||||
uint32_t parsed_anchor = check_anchor_for_wayfire_shell(width,
|
||||
height, anchor);
|
||||
zwf_wm_surface_v1_set_anchor(wf_surface, parsed_anchor);
|
||||
zwf_wm_surface_v1_configure(wf_surface, x, y);
|
||||
|
||||
}
|
||||
|
||||
void WaylandWindow::init_layer_shell(WaylandDisplay display, int width,
|
||||
int height, std::string anchor)
|
||||
{
|
||||
auto gtk_window = this->gobj();
|
||||
auto gtk_widget = GTK_WIDGET(gtk_window);
|
||||
gtk_widget_realize(gtk_widget);
|
||||
|
||||
auto gdk_window = this->get_window()->gobj();
|
||||
gdk_wayland_window_set_use_custom_surface(gdk_window);
|
||||
auto surface = gdk_wayland_window_get_wl_surface(gdk_window);
|
||||
|
||||
if (!surface)
|
||||
{
|
||||
std::cerr << "Error: created window was not a wayland surface" << std::endl;
|
||||
std::exit(-1);
|
||||
}
|
||||
|
||||
uint32_t layer = ZWLR_LAYER_SHELL_V1_LAYER_TOP;
|
||||
layer_surface = zwlr_layer_shell_v1_get_layer_surface(
|
||||
display.layer_shell, surface, NULL, layer, "wf-osk");
|
||||
if (!layer_surface)
|
||||
{
|
||||
std::cerr << "Error: could not create layer surface" << std::endl;
|
||||
std::exit(-1);
|
||||
}
|
||||
|
||||
Gtk::Application *data = this->get_application().get();
|
||||
zwlr_layer_surface_v1_add_listener(layer_surface,
|
||||
&layer_surface_listener, data);
|
||||
zwlr_layer_surface_v1_set_keyboard_interactivity(layer_surface, 0);
|
||||
zwlr_layer_surface_v1_set_size(layer_surface, width, height);
|
||||
|
||||
uint32_t parsed_anchor = check_anchor_for_layer_shell(width,
|
||||
height, anchor);
|
||||
zwlr_layer_surface_v1_set_anchor(layer_surface, parsed_anchor);
|
||||
|
||||
wl_surface_commit(surface);
|
||||
auto gdk_display = gdk_display_get_default();
|
||||
auto wl_display = gdk_wayland_display_get_wl_display(gdk_display);
|
||||
wl_display_roundtrip(wl_display);
|
||||
|
||||
this->show_all();
|
||||
}
|
||||
|
||||
WaylandWindow::WaylandWindow(int x, int y, int width, int height,
|
||||
std::string anchor)
|
||||
WaylandWindow::WaylandWindow(int width, int height, std::string anchor)
|
||||
: Gtk::Window()
|
||||
{
|
||||
auto display = WaylandDisplay::get();
|
||||
|
||||
/* Trick: first show the window, get frame size, then subtract it again */
|
||||
this->set_size_request(width, height);
|
||||
this->set_default_size(width, height);
|
||||
this->set_type_hint(Gdk::WINDOW_TYPE_HINT_DOCK);
|
||||
|
||||
if (display.wf_manager)
|
||||
{
|
||||
init_wayfire_shell(display, x, y, width, height, anchor);
|
||||
} else if (display.layer_shell)
|
||||
{
|
||||
init_layer_shell(display, width, height, anchor);
|
||||
} else {
|
||||
std::cerr << "Error: cannot find any supported shell protocol" << std::endl;
|
||||
std::exit(-1);
|
||||
}
|
||||
init(width, height, anchor);
|
||||
}
|
||||
}
|
||||
|
@ -1,8 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <gtkmm/window.h>
|
||||
#include <wayfire-shell-client-protocol.h>
|
||||
#include <wlr-layer-shell-unstable-v1-client-protocol.h>
|
||||
#include <wayfire-shell-unstable-v2-client-protocol.h>
|
||||
#include <virtual-keyboard-unstable-v1-client-protocol.h>
|
||||
|
||||
namespace wf
|
||||
@ -14,28 +13,18 @@ namespace wf
|
||||
public:
|
||||
static WaylandDisplay& get();
|
||||
|
||||
wl_seat *seat = nullptr;
|
||||
zwf_shell_manager_v1 *wf_manager = nullptr;
|
||||
zwlr_layer_shell_v1 *layer_shell = nullptr;
|
||||
zwf_shell_manager_v2 *zwf_manager = nullptr;
|
||||
zwp_virtual_keyboard_manager_v1 *vk_manager = nullptr;
|
||||
};
|
||||
|
||||
class WaylandWindow : public Gtk::Window
|
||||
{
|
||||
zwf_wm_surface_v1 *wf_surface;
|
||||
zwlr_layer_surface_v1 *layer_surface;
|
||||
zwf_surface_v2 *wf_surface;
|
||||
|
||||
uint32_t check_anchor_for_wayfire_shell(int width, int height,
|
||||
std::string anchor);
|
||||
uint32_t check_anchor_for_layer_shell(int width, int height,
|
||||
std::string anchor);
|
||||
|
||||
void init_wayfire_shell(WaylandDisplay display, int x, int y,
|
||||
int width, int height, std::string anchor);
|
||||
void init_layer_shell(WaylandDisplay display, int width, int height,
|
||||
std::string anchor);
|
||||
int32_t check_anchor(std::string anchor);
|
||||
void init(int width, int height, std::string anchor);
|
||||
|
||||
public:
|
||||
WaylandWindow(int x, int y, int width, int height, std::string anchor);
|
||||
WaylandWindow(int width, int height, std::string anchor);
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user