Re: [PATCH weston] libinput-device: use the discrete axis value for wheel events

2015-01-13 Thread Jonas Ådahl
On Wed, Jan 14, 2015 at 04:02:47PM +1000, Peter Hutterer wrote: > libinput < 0.8 sent wheel click events with value 10. Since 0.8 > the value is the angle of the click in degrees but it now provides > the click count as separate value. To keep backwards-compat with > existing clients, we just send

Re: [PATCH v2 libinput] Add libinput_event_pointer_get_axis_value_discrete() to count wheel clicks

2015-01-13 Thread Jonas Ådahl
On Wed, Jan 14, 2015 at 01:30:36PM +1000, Peter Hutterer wrote: > The recent normalization of wheel events means we get the angle in degrees but > we don't know how this corresponds to clicks. The M325 has a 20 degree click > angle, most other mice have 15 degrees. So an angle of 60 can be 3 or 4 c

[PATCH v4 libinput] touchpad: add a TOUCH_HOVERING state

2015-01-13 Thread Peter Hutterer
Some touchpads provide touch information while the finger hovers over the touchpad, i.e. before BTN_TOUCH. Add a touch state for those touchpads so we can ignore the touches until they actually start. The approach is now: instead of BEGIN we mark a new touch as HOVERING. Use the BTN_TOOL_FINGER, B

[PATCH weston] libinput-device: use the discrete axis value for wheel events

2015-01-13 Thread Peter Hutterer
libinput < 0.8 sent wheel click events with value 10. Since 0.8 the value is the angle of the click in degrees but it now provides the click count as separate value. To keep backwards-compat with existing clients, we just send multiples of the click count. Signed-off-by: Peter Hutterer --- Use th

Re: Timelines for Wayland/Weston 1.7 and 1.6.1

2015-01-13 Thread nerdopolis
On Tuesday, January 13, 2015 03:43:28 PM Bryce Harrington wrote: > Hi all, > > I've volunteered to help handle the 1.7 and 1.6.1 releases, including > alphas and pre-releases. This email outlines the plan; for those who've > been through a release before there should be no surprises here. > > >

[PATCH v2 libinput] Add libinput_event_pointer_get_axis_value_discrete() to count wheel clicks

2015-01-13 Thread Peter Hutterer
The recent normalization of wheel events means we get the angle in degrees but we don't know how this corresponds to clicks. The M325 has a 20 degree click angle, most other mice have 15 degrees. So an angle of 60 can be 3 or 4 click events. Most clients care more about the click count than the an

Timelines for Wayland/Weston 1.7 and 1.6.1

2015-01-13 Thread Bryce Harrington
Hi all, I've volunteered to help handle the 1.7 and 1.6.1 releases, including alphas and pre-releases. This email outlines the plan; for those who've been through a release before there should be no surprises here. == Wayland/Weston 1.7.0 == The last release announcement outlines the schedule

Re: FOSDEM15: Graphics DevRoom: call for speakers.

2015-01-13 Thread Luc Verhaegen
On Tue, Jan 13, 2015 at 01:14:17PM +0100, Thierry Reding wrote: > On Tue, Dec 09, 2014 at 03:39:26PM +0100, Luc Verhaegen wrote: > > On Thu, Oct 02, 2014 at 07:44:57PM +0200, Luc Verhaegen wrote: > > > Hi, > > > > > > At FOSDEM on the 31st of january and the 1st of February 2015, there > > > will

Re: FOSDEM15: Graphics DevRoom: call for speakers.

2015-01-13 Thread Thierry Reding
On Tue, Dec 09, 2014 at 03:39:26PM +0100, Luc Verhaegen wrote: > On Thu, Oct 02, 2014 at 07:44:57PM +0200, Luc Verhaegen wrote: > > Hi, > > > > At FOSDEM on the 31st of january and the 1st of February 2015, there > > will be another graphics DevRoom. URL: https://fosdem.org/2015/ > > > Slots wil

Re: [PATCH (diff only) libinput] touchpad: track touch sequences that ended

2015-01-13 Thread Hans de Goede
Hi, On 13-01-15 02:38, Peter Hutterer wrote: Note: this patch is just for easier review, see below for the real patch (with this one squashed in) http://lists.freedesktop.org/archives/wayland-devel/2015-January/019352.html A "touch" in the touchpad code refers to one on the touchpad. When we ho

Re: [PATCH libinput] Add libinput_event_pointer_get_axis_click_count() to count wheel clicks

2015-01-13 Thread Jonas Ådahl
On Tue, Jan 13, 2015 at 06:01:52PM +1000, Peter Hutterer wrote: > On Tue, Jan 13, 2015 at 03:12:24PM +0800, Jonas Ådahl wrote: > > On Tue, Jan 13, 2015 at 03:21:24PM +1000, Peter Hutterer wrote: > > > The recent normalization of wheel events means we get the angle in > > > degrees but > > > we don

Re: wl_test / accessibility

2015-01-13 Thread Pekka Paalanen
On Mon, 12 Jan 2015 13:03:24 -0600 Derek Foreman wrote: > On 11/01/15 04:37 PM, Mike Gorse wrote: > > Hi, > > > > I was curious whether wl_test (from weston) is intended to eventually be > > moved into wayland. I'm asking because it contains functionality (such > > as being able to track and mov

Re: [PATCH libinput] Add libinput_event_pointer_get_axis_click_count() to count wheel clicks

2015-01-13 Thread Peter Hutterer
On Tue, Jan 13, 2015 at 03:12:24PM +0800, Jonas Ådahl wrote: > On Tue, Jan 13, 2015 at 03:21:24PM +1000, Peter Hutterer wrote: > > The recent normalization of wheel events means we get the angle in degrees > > but > > we don't know how this corresponds to clicks. The M325 has a 20 degree click > >