Re: Double-checking the correct way to find wayland-scanner

2017-05-18 Thread Jussi Kukkonen
On 18 May 2017 at 15:57, Pekka Paalanen wrote: > On Thu, 18 May 2017 13:59:25 +0300 > Jussi Kukkonen wrote: > > > Hi, > > > > I'd like to fix/standardize how several wayland using projects do > > wayland-scanner lookups (because many of them require patching when > > cross-compiling in Yocto) an

Re: Double-checking the correct way to find wayland-scanner

2017-05-18 Thread Pekka Paalanen
On Thu, 18 May 2017 13:59:25 +0300 Jussi Kukkonen wrote: > Hi, > > I'd like to fix/standardize how several wayland using projects do > wayland-scanner lookups (because many of them require patching when > cross-compiling in Yocto) and wanted to double check that I'm arguing for > the right thing

Re: [PATCH] xwayland: Fix input coordinates of shadowless CSD windows

2017-05-18 Thread Pekka Paalanen
On Tue, 2 May 2017 10:24:17 -0600 Scott Moreau wrote: > This fixes wrong input coordinates when using clients like steam, > that draw their own decorations and have no shadows. > --- > xwayland/window-manager.c | 30 +- > 1 file changed, 17 insertions(+), 13 deletion

Double-checking the correct way to find wayland-scanner

2017-05-18 Thread Jussi Kukkonen
Hi, I'd like to fix/standardize how several wayland using projects do wayland-scanner lookups (because many of them require patching when cross-compiling in Yocto) and wanted to double check that I'm arguing for the right thing... The problem cases for us are like this mesa example: > PKG_CHECK_

Re: [RFC PATCH] xwm: Don't change focus on focus events from grabs

2017-05-18 Thread Daniel Stone
Hi, On 15 May 2017 at 15:39, Pekka Paalanen wrote: > On Mon, 15 May 2017 15:26:45 +0100 Daniel Stone wrote: >> On 15 May 2017 at 12:32, Olivier Fourdan wrote: >> > xwm would not let X clients change the focus behind the compositor's >> > back, reverting focus where it's supposed to be when this

[PATCH v4 0/2] xwayland keyboard grad and shortcut inhibitor v4

2017-05-18 Thread Olivier Fourdan
This is v4 on the two wayland protocol proposals for Xwayland keyboard grab and shortcut inhibitor for Wayland native clients. These two protocols have been previously discussed here: https://lists.freedesktop.org/archives/wayland-devel/2017-March/033526.html https://lists.freedesktop.org/archive

[PATCH 2/2 v4] Add keyboard shortcuts inhibitor

2017-05-18 Thread Olivier Fourdan
This adds a new protocol to let Wayland clients specify that they want all keyboard events to be sent to the client, regardless of the compositor own shortcuts. This protocol can be used for virtual machine and remote connection viewers which require to pass all keyboard shortcuts to the hosted or

[PATCH 1/2 v4] Introduce keyboard grabbing protocol for Xwayland

2017-05-18 Thread Olivier Fourdan
This patch introduces a new protocol for grabbing the keyboard from Xwayland. This is needed for X11 applications that map an override redirect window (thus not focused by the window manager) and issue an active grab on the keyboard to capture all keyboard events. Signed-off-by: Olivier Fourdan