Re: libinput: Disable tap-and-drag

2016-01-03 Thread Peter Hutterer
On Sat, Jan 02, 2016 at 04:02:29AM +, Caibin Chen wrote: > Hi, > > I've been working on disabling tap-and-drag feature in libinput because I'm > not used to it. The code is on my Github branch: > https://github.com/tigersoldier/libinput/tree/wip/disable-tap-to-drag > > The basic idea is addin

Re: [RFC v2] Add Primary Selection Protocol Version 1

2016-01-03 Thread Peter Hutterer
On Sun, Jan 03, 2016 at 10:17:12PM -0800, Bill Spitzak wrote: > On 01/03/2016 09:05 PM, Peter Hutterer wrote: > >On Fri, Dec 18, 2015 at 12:03:46PM -0500, Lyude wrote: > >>+This event is sent whenever the client receives a middle click, > >>and will > >>+be received by the client b

Re: [PATCH libinput] tablet: invert tilt axes when left-handed is enabled

2016-01-03 Thread Peter Hutterer
On Mon, Dec 21, 2015 at 02:44:03PM -0800, Bill Spitzak wrote: > On Mon, Dec 21, 2015 at 1:24 PM, Peter Hutterer > wrote: > > > On Mon, Dec 21, 2015 at 10:12:24AM -0800, Bill Spitzak wrote: > > > I find it hard to believe this is what client programs will want. A > > > painting program wants the

Re: [RFC v2] Add Primary Selection Protocol Version 1

2016-01-03 Thread Peter Hutterer
On Fri, Dec 18, 2015 at 12:03:46PM -0500, Lyude wrote: > Signed-off-by: Lyude > --- > Changes > * Add new interfaces to replace reuse of wl_data_(source|offer) > * Get rid of the selection changed event since we now have our own version > of wl_data_(source|offe

Regarding running Android on top of wayland

2016-01-03 Thread 유재용
Title: Samsung Enterprise Portal mySingle Hello wayland developers,   I'm trying to run wayland-Ubuntu and Android at the same time by using Linux container. Here goes more detailed configuration.  - I'm running Ubuntu on wayland (enlightenment) as host OS.  - I installed LXC package to th

Re: [PATCH wayland-protocols v2 2/2] Introduce pointer locking and confinement protocol

2016-01-03 Thread Peter Hutterer
On Fri, Jan 01, 2016 at 04:54:14PM +, Daniel Stone wrote: > Hi, > A couple of (belated) comments ... > > On 3 December 2015 at 07:28, Jonas Ådahl wrote: > > + > > + > > + The lock_pointer request lets the client request to disable > > movements of > > + the virtual poin

Re: [PATCH wayland-protocols 1/2] Introduce wp_relative_pointer interface

2016-01-03 Thread Peter Hutterer
On Fri, Jan 01, 2016 at 04:00:33PM +, Daniel Stone wrote: > Hi Jonas, > > On 17 November 2015 at 10:09, Jonas Ådahl wrote: > > + > > + > > + [...] > > + > > + Relative motions are not coupled to wl_pointer.motion events, and > > can be > > + sent in combination wi

[RFC libinput] Add a "switch" interface for parts of the SW_* range

2016-01-03 Thread Peter Hutterer
This is a first draft to gather some comments, it's not hooked up to anything yet and really just to get the main intention across. Things up for comments and discussion: Unlike buttons, we only expose switches we understand, hence enum libinput_switch rather than just forwarding uint32_t devices.

[PATCH libinput] evdev: only reject devices with missing MT x/y if they're MT devices

2016-01-03 Thread Peter Hutterer
A fake MT device may have ABS_MT_POSITION_X but not Y. In this case we don't care, because we don't handle those axes anyway. http://bugs.freedesktop.org/show_bug.cgi?id=93474 Signed-off-by: Peter Hutterer --- src/evdev.c | 11 +- test/Makefile.am |