mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-30 23:30:08 +01:00
Previously, touchpad deltas were converted to 1000-dpi normalized coordinates
and handled from there. This changed in bdd4264d61 (1.6)
when the filter functions started taking device coordinates instead. Since
then, we used to convert the device delta to normalized coordinates, then
(often immediately) convert back to device coordinates, albeit for equal x/y
resolution. This isn't necessary, we can just convert the device coordinates
to x/y-equal resolution device coordinates and pass those on.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
494 lines
12 KiB
C
494 lines
12 KiB
C
/*
|
|
* Copyright © 2014-2015 Red Hat, Inc.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the next
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
* Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <errno.h>
|
|
#include <limits.h>
|
|
#include <math.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include "linux/input.h"
|
|
|
|
#include "evdev-mt-touchpad.h"
|
|
|
|
/* Use a reasonably large threshold until locked into scrolling mode, to
|
|
avoid accidentally locking in scrolling mode when trying to use the entire
|
|
touchpad to move the pointer. The user can wait for the timeout to trigger
|
|
to do a small scroll. */
|
|
#define DEFAULT_SCROLL_THRESHOLD TP_MM_TO_DPI_NORMALIZED(3)
|
|
|
|
enum scroll_event {
|
|
SCROLL_EVENT_TOUCH,
|
|
SCROLL_EVENT_MOTION,
|
|
SCROLL_EVENT_RELEASE,
|
|
SCROLL_EVENT_TIMEOUT,
|
|
SCROLL_EVENT_POSTED,
|
|
};
|
|
|
|
static inline const char*
|
|
edge_state_to_str(enum tp_edge_scroll_touch_state state)
|
|
{
|
|
|
|
switch (state) {
|
|
CASE_RETURN_STRING(EDGE_SCROLL_TOUCH_STATE_NONE);
|
|
CASE_RETURN_STRING(EDGE_SCROLL_TOUCH_STATE_EDGE_NEW);
|
|
CASE_RETURN_STRING(EDGE_SCROLL_TOUCH_STATE_EDGE);
|
|
CASE_RETURN_STRING(EDGE_SCROLL_TOUCH_STATE_AREA);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
static inline const char*
|
|
edge_event_to_str(enum scroll_event event)
|
|
{
|
|
switch (event) {
|
|
CASE_RETURN_STRING(SCROLL_EVENT_TOUCH);
|
|
CASE_RETURN_STRING(SCROLL_EVENT_MOTION);
|
|
CASE_RETURN_STRING(SCROLL_EVENT_RELEASE);
|
|
CASE_RETURN_STRING(SCROLL_EVENT_TIMEOUT);
|
|
CASE_RETURN_STRING(SCROLL_EVENT_POSTED);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
uint32_t
|
|
tp_touch_get_edge(const struct tp_dispatch *tp, const struct tp_touch *t)
|
|
{
|
|
uint32_t edge = EDGE_NONE;
|
|
|
|
if (tp->scroll.method != LIBINPUT_CONFIG_SCROLL_EDGE)
|
|
return EDGE_NONE;
|
|
|
|
if (t->point.x > tp->scroll.right_edge)
|
|
edge |= EDGE_RIGHT;
|
|
|
|
if (t->point.y > tp->scroll.bottom_edge)
|
|
edge |= EDGE_BOTTOM;
|
|
|
|
return edge;
|
|
}
|
|
|
|
static inline void
|
|
tp_edge_scroll_set_timer(struct tp_dispatch *tp,
|
|
struct tp_touch *t)
|
|
{
|
|
const int DEFAULT_SCROLL_LOCK_TIMEOUT = ms2us(300);
|
|
/* if we use software buttons, we disable timeout-based
|
|
* edge scrolling. A finger resting on the button areas is
|
|
* likely there to trigger a button event.
|
|
*/
|
|
if (tp->buttons.click_method ==
|
|
LIBINPUT_CONFIG_CLICK_METHOD_BUTTON_AREAS)
|
|
return;
|
|
|
|
libinput_timer_set(&t->scroll.timer,
|
|
t->time + DEFAULT_SCROLL_LOCK_TIMEOUT);
|
|
}
|
|
|
|
static void
|
|
tp_edge_scroll_set_state(struct tp_dispatch *tp,
|
|
struct tp_touch *t,
|
|
enum tp_edge_scroll_touch_state state)
|
|
{
|
|
libinput_timer_cancel(&t->scroll.timer);
|
|
|
|
t->scroll.edge_state = state;
|
|
|
|
switch (state) {
|
|
case EDGE_SCROLL_TOUCH_STATE_NONE:
|
|
t->scroll.edge = EDGE_NONE;
|
|
break;
|
|
case EDGE_SCROLL_TOUCH_STATE_EDGE_NEW:
|
|
t->scroll.edge = tp_touch_get_edge(tp, t);
|
|
t->scroll.initial = t->point;
|
|
tp_edge_scroll_set_timer(tp, t);
|
|
break;
|
|
case EDGE_SCROLL_TOUCH_STATE_EDGE:
|
|
break;
|
|
case EDGE_SCROLL_TOUCH_STATE_AREA:
|
|
t->scroll.edge = EDGE_NONE;
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
tp_edge_scroll_handle_none(struct tp_dispatch *tp,
|
|
struct tp_touch *t,
|
|
enum scroll_event event)
|
|
{
|
|
switch (event) {
|
|
case SCROLL_EVENT_TOUCH:
|
|
if (tp_touch_get_edge(tp, t)) {
|
|
tp_edge_scroll_set_state(tp, t,
|
|
EDGE_SCROLL_TOUCH_STATE_EDGE_NEW);
|
|
} else {
|
|
tp_edge_scroll_set_state(tp, t,
|
|
EDGE_SCROLL_TOUCH_STATE_AREA);
|
|
}
|
|
break;
|
|
case SCROLL_EVENT_MOTION:
|
|
case SCROLL_EVENT_RELEASE:
|
|
case SCROLL_EVENT_TIMEOUT:
|
|
case SCROLL_EVENT_POSTED:
|
|
evdev_log_bug_libinput(tp->device,
|
|
"unexpected scroll event %d in none state\n",
|
|
event);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
tp_edge_scroll_handle_edge_new(struct tp_dispatch *tp,
|
|
struct tp_touch *t,
|
|
enum scroll_event event)
|
|
{
|
|
switch (event) {
|
|
case SCROLL_EVENT_TOUCH:
|
|
evdev_log_bug_libinput(tp->device,
|
|
"unexpected scroll event %d in edge new state\n",
|
|
event);
|
|
break;
|
|
case SCROLL_EVENT_MOTION:
|
|
t->scroll.edge &= tp_touch_get_edge(tp, t);
|
|
if (!t->scroll.edge)
|
|
tp_edge_scroll_set_state(tp, t,
|
|
EDGE_SCROLL_TOUCH_STATE_AREA);
|
|
break;
|
|
case SCROLL_EVENT_RELEASE:
|
|
tp_edge_scroll_set_state(tp, t, EDGE_SCROLL_TOUCH_STATE_NONE);
|
|
break;
|
|
case SCROLL_EVENT_TIMEOUT:
|
|
case SCROLL_EVENT_POSTED:
|
|
tp_edge_scroll_set_state(tp, t, EDGE_SCROLL_TOUCH_STATE_EDGE);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
tp_edge_scroll_handle_edge(struct tp_dispatch *tp,
|
|
struct tp_touch *t,
|
|
enum scroll_event event)
|
|
{
|
|
switch (event) {
|
|
case SCROLL_EVENT_TOUCH:
|
|
case SCROLL_EVENT_TIMEOUT:
|
|
evdev_log_bug_libinput(tp->device,
|
|
"unexpected scroll event %d in edge state\n",
|
|
event);
|
|
break;
|
|
case SCROLL_EVENT_MOTION:
|
|
/* If started at the bottom right, decide in which dir to scroll */
|
|
if (t->scroll.edge == (EDGE_RIGHT | EDGE_BOTTOM)) {
|
|
t->scroll.edge &= tp_touch_get_edge(tp, t);
|
|
if (!t->scroll.edge)
|
|
tp_edge_scroll_set_state(tp, t,
|
|
EDGE_SCROLL_TOUCH_STATE_AREA);
|
|
}
|
|
break;
|
|
case SCROLL_EVENT_RELEASE:
|
|
tp_edge_scroll_set_state(tp, t, EDGE_SCROLL_TOUCH_STATE_NONE);
|
|
break;
|
|
case SCROLL_EVENT_POSTED:
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
tp_edge_scroll_handle_area(struct tp_dispatch *tp,
|
|
struct tp_touch *t,
|
|
enum scroll_event event)
|
|
{
|
|
switch (event) {
|
|
case SCROLL_EVENT_TOUCH:
|
|
case SCROLL_EVENT_TIMEOUT:
|
|
case SCROLL_EVENT_POSTED:
|
|
evdev_log_bug_libinput(tp->device,
|
|
"unexpected scroll event %d in area state\n",
|
|
event);
|
|
break;
|
|
case SCROLL_EVENT_MOTION:
|
|
break;
|
|
case SCROLL_EVENT_RELEASE:
|
|
tp_edge_scroll_set_state(tp, t, EDGE_SCROLL_TOUCH_STATE_NONE);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
tp_edge_scroll_handle_event(struct tp_dispatch *tp,
|
|
struct tp_touch *t,
|
|
enum scroll_event event)
|
|
{
|
|
enum tp_edge_scroll_touch_state current = t->scroll.edge_state;
|
|
|
|
switch (current) {
|
|
case EDGE_SCROLL_TOUCH_STATE_NONE:
|
|
tp_edge_scroll_handle_none(tp, t, event);
|
|
break;
|
|
case EDGE_SCROLL_TOUCH_STATE_EDGE_NEW:
|
|
tp_edge_scroll_handle_edge_new(tp, t, event);
|
|
break;
|
|
case EDGE_SCROLL_TOUCH_STATE_EDGE:
|
|
tp_edge_scroll_handle_edge(tp, t, event);
|
|
break;
|
|
case EDGE_SCROLL_TOUCH_STATE_AREA:
|
|
tp_edge_scroll_handle_area(tp, t, event);
|
|
break;
|
|
}
|
|
|
|
evdev_log_debug(tp->device,
|
|
"edge state: %s → %s → %s\n",
|
|
edge_state_to_str(current),
|
|
edge_event_to_str(event),
|
|
edge_state_to_str(t->scroll.edge_state));
|
|
}
|
|
|
|
static void
|
|
tp_edge_scroll_handle_timeout(uint64_t now, void *data)
|
|
{
|
|
struct tp_touch *t = data;
|
|
|
|
tp_edge_scroll_handle_event(t->tp, t, SCROLL_EVENT_TIMEOUT);
|
|
}
|
|
|
|
void
|
|
tp_edge_scroll_init(struct tp_dispatch *tp, struct evdev_device *device)
|
|
{
|
|
struct tp_touch *t;
|
|
double width, height;
|
|
bool want_horiz_scroll = true;
|
|
struct device_coords edges;
|
|
struct phys_coords mm = { 0.0, 0.0 };
|
|
int i;
|
|
|
|
evdev_device_get_size(device, &width, &height);
|
|
/* Touchpads smaller than 40mm are not tall enough to have a
|
|
horizontal scroll area, it takes too much space away. But
|
|
clickpads have enough space here anyway because of the
|
|
software button area (and all these tiny clickpads were built
|
|
when software buttons were a thing, e.g. Lenovo *20 series)
|
|
*/
|
|
if (!tp->buttons.is_clickpad)
|
|
want_horiz_scroll = (height >= 40);
|
|
|
|
/* 7mm edge size */
|
|
mm.x = width - 7;
|
|
mm.y = height - 7;
|
|
edges = evdev_device_mm_to_units(device, &mm);
|
|
|
|
tp->scroll.right_edge = edges.x;
|
|
if (want_horiz_scroll)
|
|
tp->scroll.bottom_edge = edges.y;
|
|
else
|
|
tp->scroll.bottom_edge = INT_MAX;
|
|
|
|
i = 0;
|
|
tp_for_each_touch(tp, t) {
|
|
char timer_name[64];
|
|
|
|
snprintf(timer_name,
|
|
sizeof(timer_name),
|
|
"%s (%d) edgescroll",
|
|
evdev_device_get_sysname(device),
|
|
i);
|
|
t->scroll.direction = -1;
|
|
libinput_timer_init(&t->scroll.timer,
|
|
tp_libinput_context(tp),
|
|
timer_name,
|
|
tp_edge_scroll_handle_timeout, t);
|
|
}
|
|
}
|
|
|
|
void
|
|
tp_remove_edge_scroll(struct tp_dispatch *tp)
|
|
{
|
|
struct tp_touch *t;
|
|
|
|
tp_for_each_touch(tp, t) {
|
|
libinput_timer_cancel(&t->scroll.timer);
|
|
libinput_timer_destroy(&t->scroll.timer);
|
|
}
|
|
}
|
|
|
|
void
|
|
tp_edge_scroll_handle_state(struct tp_dispatch *tp, uint64_t time)
|
|
{
|
|
struct tp_touch *t;
|
|
|
|
if (tp->scroll.method != LIBINPUT_CONFIG_SCROLL_EDGE) {
|
|
tp_for_each_touch(tp, t) {
|
|
if (t->state == TOUCH_BEGIN)
|
|
t->scroll.edge_state =
|
|
EDGE_SCROLL_TOUCH_STATE_AREA;
|
|
else if (t->state == TOUCH_END)
|
|
t->scroll.edge_state =
|
|
EDGE_SCROLL_TOUCH_STATE_NONE;
|
|
}
|
|
return;
|
|
}
|
|
|
|
tp_for_each_touch(tp, t) {
|
|
if (!t->dirty)
|
|
continue;
|
|
|
|
switch (t->state) {
|
|
case TOUCH_NONE:
|
|
case TOUCH_HOVERING:
|
|
break;
|
|
case TOUCH_BEGIN:
|
|
tp_edge_scroll_handle_event(tp, t, SCROLL_EVENT_TOUCH);
|
|
break;
|
|
case TOUCH_UPDATE:
|
|
tp_edge_scroll_handle_event(tp, t, SCROLL_EVENT_MOTION);
|
|
break;
|
|
case TOUCH_END:
|
|
tp_edge_scroll_handle_event(tp, t, SCROLL_EVENT_RELEASE);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
int
|
|
tp_edge_scroll_post_events(struct tp_dispatch *tp, uint64_t time)
|
|
{
|
|
struct evdev_device *device = tp->device;
|
|
struct tp_touch *t;
|
|
enum libinput_pointer_axis axis;
|
|
double *delta;
|
|
struct device_coords raw;
|
|
struct device_float_coords fraw;
|
|
struct normalized_coords normalized, tmp;
|
|
const struct normalized_coords zero = { 0.0, 0.0 };
|
|
const struct discrete_coords zero_discrete = { 0.0, 0.0 };
|
|
|
|
tp_for_each_touch(tp, t) {
|
|
if (!t->dirty)
|
|
continue;
|
|
|
|
if (t->palm.state != PALM_NONE ||
|
|
t->thumb.state == THUMB_STATE_YES)
|
|
continue;
|
|
|
|
/* only scroll with the finger in the previous edge */
|
|
if (t->scroll.edge &&
|
|
(tp_touch_get_edge(tp, t) & t->scroll.edge) == 0)
|
|
continue;
|
|
|
|
switch (t->scroll.edge) {
|
|
case EDGE_NONE:
|
|
if (t->scroll.direction != -1) {
|
|
/* Send stop scroll event */
|
|
evdev_notify_axis(device, time,
|
|
AS_MASK(t->scroll.direction),
|
|
LIBINPUT_POINTER_AXIS_SOURCE_FINGER,
|
|
&zero,
|
|
&zero_discrete);
|
|
t->scroll.direction = -1;
|
|
}
|
|
continue;
|
|
case EDGE_RIGHT:
|
|
axis = LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL;
|
|
delta = &normalized.y;
|
|
break;
|
|
case EDGE_BOTTOM:
|
|
axis = LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL;
|
|
delta = &normalized.x;
|
|
break;
|
|
default: /* EDGE_RIGHT | EDGE_BOTTOM */
|
|
continue; /* Don't know direction yet, skip */
|
|
}
|
|
|
|
raw = tp_get_delta(t);
|
|
fraw.x = raw.x;
|
|
fraw.y = raw.y;
|
|
/* scroll is not accelerated */
|
|
normalized = tp_filter_motion_unaccelerated(tp, &fraw, time);
|
|
|
|
switch (t->scroll.edge_state) {
|
|
case EDGE_SCROLL_TOUCH_STATE_NONE:
|
|
case EDGE_SCROLL_TOUCH_STATE_AREA:
|
|
evdev_log_bug_libinput(device,
|
|
"unexpected scroll state %d\n",
|
|
t->scroll.edge_state);
|
|
break;
|
|
case EDGE_SCROLL_TOUCH_STATE_EDGE_NEW:
|
|
tmp = normalized;
|
|
normalized = tp_normalize_delta(tp,
|
|
device_delta(t->point,
|
|
t->scroll.initial));
|
|
if (fabs(*delta) < DEFAULT_SCROLL_THRESHOLD)
|
|
normalized = zero;
|
|
else
|
|
normalized = tmp;
|
|
break;
|
|
case EDGE_SCROLL_TOUCH_STATE_EDGE:
|
|
break;
|
|
}
|
|
|
|
if (*delta == 0.0)
|
|
continue;
|
|
|
|
evdev_notify_axis(device, time,
|
|
AS_MASK(axis),
|
|
LIBINPUT_POINTER_AXIS_SOURCE_FINGER,
|
|
&normalized,
|
|
&zero_discrete);
|
|
t->scroll.direction = axis;
|
|
|
|
tp_edge_scroll_handle_event(tp, t, SCROLL_EVENT_POSTED);
|
|
}
|
|
|
|
return 0; /* Edge touches are suppressed by edge_scroll_touch_active */
|
|
}
|
|
|
|
void
|
|
tp_edge_scroll_stop_events(struct tp_dispatch *tp, uint64_t time)
|
|
{
|
|
struct evdev_device *device = tp->device;
|
|
struct tp_touch *t;
|
|
const struct normalized_coords zero = { 0.0, 0.0 };
|
|
const struct discrete_coords zero_discrete = { 0.0, 0.0 };
|
|
|
|
tp_for_each_touch(tp, t) {
|
|
if (t->scroll.direction != -1) {
|
|
evdev_notify_axis(device, time,
|
|
AS_MASK(t->scroll.direction),
|
|
LIBINPUT_POINTER_AXIS_SOURCE_FINGER,
|
|
&zero,
|
|
&zero_discrete);
|
|
t->scroll.direction = -1;
|
|
/* reset touch to area state, avoids loading the
|
|
* state machine with special case handling */
|
|
t->scroll.edge = EDGE_NONE;
|
|
t->scroll.edge_state = EDGE_SCROLL_TOUCH_STATE_AREA;
|
|
}
|
|
}
|
|
}
|
|
|
|
int
|
|
tp_edge_scroll_touch_active(const struct tp_dispatch *tp,
|
|
const struct tp_touch *t)
|
|
{
|
|
return t->scroll.edge_state == EDGE_SCROLL_TOUCH_STATE_AREA;
|
|
}
|