[PATCH libinput 05/19] touchpad: add two-finger average scrolling
Peter Hutterer
peter.hutterer at who-t.net
Sun Feb 16 22:48:24 PST 2014
If two fingers are down and moving, take the average movement of both fingers
and use that for scrolling.
Signed-off-by: Peter Hutterer <peter.hutterer at who-t.net>
---
src/evdev-mt-touchpad.c | 44 +++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 43 insertions(+), 1 deletion(-)
diff --git a/src/evdev-mt-touchpad.c b/src/evdev-mt-touchpad.c
index 1968199..6d1793b 100644
--- a/src/evdev-mt-touchpad.c
+++ b/src/evdev-mt-touchpad.c
@@ -332,13 +332,55 @@ tp_post_process_state(struct tp_dispatch *tp, uint32_t time)
}
static void
+tp_post_twofinger_scroll(struct tp_dispatch *tp, uint32_t time)
+{
+ struct tp_touch *t;
+ int nchanged = 0;
+ double dx = 0, dy =0;
+ double tmpx, tmpy;
+
+ tp_for_each_touch(tp, t) {
+ if (t->dirty) {
+ nchanged++;
+ tp_get_delta(t, &tmpx, &tmpy);
+
+ dx += tmpx;
+ dy += tmpy;
+ }
+ }
+
+ if (nchanged == 0)
+ return;
+
+ dx /= nchanged;
+ dy /= nchanged;
+
+ tp_filter_motion(tp, &dx, &dy, time);
+
+ if (dx != 0.0)
+ pointer_notify_axis(&tp->device->base,
+ time,
+ LIBINPUT_POINTER_AXIS_HORIZONTAL_SCROLL,
+ li_fixed_from_double(dx));
+ if (dy != 0.0)
+ pointer_notify_axis(&tp->device->base,
+ time,
+ LIBINPUT_POINTER_AXIS_VERTICAL_SCROLL,
+ li_fixed_from_double(dy));
+}
+
+static void
tp_post_events(struct tp_dispatch *tp, uint32_t time)
{
struct tp_touch *t = tp_current_touch(tp);
double dx, dy;
- if (tp->nfingers_down != 1)
+ if (tp->nfingers_down > 2) {
return;
+ } else if (tp->nfingers_down == 2) {
+ tp_post_twofinger_scroll(tp, time);
+ return;
+ }
if (t->history.count < 4)
--
1.8.4.2
More information about the wayland-devel
mailing list