2012-05-17 12:18:17 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2012 Jonas Ådahl
|
2015-05-28 08:23:59 +10:00
|
|
|
* Copyright © 2014-2015 Red Hat, Inc.
|
2012-05-17 12:18:17 +02:00
|
|
|
*
|
2015-06-11 12:09:18 +10:00
|
|
|
* 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:
|
2012-05-17 12:18:17 +02:00
|
|
|
*
|
2015-06-11 12:09:18 +10:00
|
|
|
* 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.
|
2012-05-17 12:18:17 +02:00
|
|
|
*/
|
|
|
|
|
|
2013-11-10 17:55:40 +01:00
|
|
|
#ifndef FILTER_H
|
|
|
|
|
#define FILTER_H
|
2012-05-17 12:18:17 +02:00
|
|
|
|
2013-08-15 01:10:24 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
|
2014-07-03 15:53:56 +10:00
|
|
|
#include <stdbool.h>
|
2014-07-04 10:43:52 +10:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
2015-03-19 11:02:51 +10:00
|
|
|
#include "libinput-private.h"
|
2012-05-17 12:18:17 +02:00
|
|
|
|
2013-11-10 17:55:40 +01:00
|
|
|
struct motion_filter;
|
2012-05-17 12:18:17 +02:00
|
|
|
|
2015-03-19 11:02:51 +10:00
|
|
|
struct normalized_coords
|
2013-11-10 17:55:40 +01:00
|
|
|
filter_dispatch(struct motion_filter *filter,
|
2015-03-19 11:02:51 +10:00
|
|
|
const struct normalized_coords *unaccelerated,
|
2014-04-08 12:29:45 +02:00
|
|
|
void *data, uint64_t time);
|
2015-06-10 09:54:06 +10:00
|
|
|
|
|
|
|
|
void
|
|
|
|
|
filter_restart(struct motion_filter *filter,
|
|
|
|
|
void *data, uint64_t time);
|
|
|
|
|
|
2014-07-04 09:39:05 +10:00
|
|
|
void
|
|
|
|
|
filter_destroy(struct motion_filter *filter);
|
2012-05-17 12:18:17 +02:00
|
|
|
|
2014-07-03 15:53:56 +10:00
|
|
|
bool
|
|
|
|
|
filter_set_speed(struct motion_filter *filter,
|
|
|
|
|
double speed);
|
|
|
|
|
double
|
|
|
|
|
filter_get_speed(struct motion_filter *filter);
|
|
|
|
|
|
2013-11-10 17:55:40 +01:00
|
|
|
typedef double (*accel_profile_func_t)(struct motion_filter *filter,
|
2012-05-17 12:18:17 +02:00
|
|
|
void *data,
|
|
|
|
|
double velocity,
|
2014-04-08 12:29:45 +02:00
|
|
|
uint64_t time);
|
2012-05-17 12:18:17 +02:00
|
|
|
|
2015-07-28 15:06:13 +10:00
|
|
|
/* Pointer acceleration types */
|
|
|
|
|
|
|
|
|
|
struct motion_filter *
|
|
|
|
|
create_pointer_accelerator_filter_linear(int dpi);
|
|
|
|
|
|
|
|
|
|
struct motion_filter *
|
|
|
|
|
create_pointer_accelerator_filter_linear_low_dpi(int dpi);
|
|
|
|
|
|
|
|
|
|
struct motion_filter *
|
|
|
|
|
create_pointer_accelerator_filter_touchpad(int dpi);
|
|
|
|
|
|
2013-11-10 17:55:40 +01:00
|
|
|
struct motion_filter *
|
2015-07-28 15:06:13 +10:00
|
|
|
create_pointer_accelerator_filter_lenovo_x230(int dpi);
|
2012-05-17 12:18:17 +02:00
|
|
|
|
2014-05-18 19:20:39 +02:00
|
|
|
/*
|
|
|
|
|
* Pointer acceleration profiles.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
double
|
2015-06-23 12:45:16 +10:00
|
|
|
pointer_accel_profile_linear_low_dpi(struct motion_filter *filter,
|
|
|
|
|
void *data,
|
|
|
|
|
double speed_in,
|
|
|
|
|
uint64_t time);
|
|
|
|
|
double
|
2014-09-19 11:10:17 +10:00
|
|
|
pointer_accel_profile_linear(struct motion_filter *filter,
|
|
|
|
|
void *data,
|
|
|
|
|
double speed_in,
|
|
|
|
|
uint64_t time);
|
2015-03-13 13:56:14 +10:00
|
|
|
double
|
|
|
|
|
touchpad_accel_profile_linear(struct motion_filter *filter,
|
|
|
|
|
void *data,
|
|
|
|
|
double speed_in,
|
|
|
|
|
uint64_t time);
|
2015-04-23 14:32:40 -04:00
|
|
|
double
|
|
|
|
|
touchpad_lenovo_x230_accel_profile(struct motion_filter *filter,
|
|
|
|
|
void *data,
|
|
|
|
|
double speed_in,
|
|
|
|
|
uint64_t time);
|
2013-11-10 17:55:40 +01:00
|
|
|
#endif /* FILTER_H */
|