mirror of
https://github.com/X11Libre/xf86-input-evdev.git
synced 2026-04-14 11:44:16 +00:00
Compare commits
6 Commits
xf86-input
...
xf86-input
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e41befa83f | ||
|
|
34619347b7 | ||
|
|
1a031657b9 | ||
|
|
51575b60b1 | ||
|
|
f285567d37 | ||
|
|
af1d085877 |
@@ -23,7 +23,7 @@
|
||||
# Initialize Autoconf
|
||||
AC_PREREQ([2.60])
|
||||
AC_INIT([xf86-input-evdev],
|
||||
[2.9.0],
|
||||
[2.8.3],
|
||||
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
|
||||
[xf86-input-evdev])
|
||||
AC_CONFIG_SRCDIR([Makefile.am])
|
||||
@@ -48,7 +48,6 @@ PKG_CHECK_MODULES(XORG, [xorg-server >= 1.10] xproto inputproto)
|
||||
PKG_CHECK_MODULES(UDEV, libudev)
|
||||
|
||||
PKG_CHECK_MODULES(XI22, [inputproto >= 2.1.99.3] [xorg-server >= 1.11.99.901], HAVE_XI22="yes", HAVE_XI22="no")
|
||||
PKG_CHECK_MODULES(LIBEVDEV, [libevdev >= 0.4])
|
||||
|
||||
if test "x$HAVE_XI22" = xyes; then
|
||||
# Obtain compiler/linker options for mtdev
|
||||
|
||||
@@ -87,8 +87,4 @@
|
||||
*/
|
||||
#define EVDEV_PROP_FUNCTION_KEYS "Evdev Function Keys"
|
||||
|
||||
/* Smooth scroll */
|
||||
/* INT32, 3 values (vertical, horizontal, dial) */
|
||||
#define EVDEV_PROP_SCROLL_DISTANCE "Evdev Scrolling Distance"
|
||||
|
||||
#endif
|
||||
|
||||
@@ -226,18 +226,6 @@ Specify the X Input 1.x type (see XListInputDevices(__libmansuffix__)).
|
||||
There is rarely a need to use this option, evdev will guess the device type
|
||||
based on the device's capabilities. This option is provided for devices that
|
||||
need quirks.
|
||||
.TP 7
|
||||
.BI "Option \*qVertScrollDelta\*q \*q" integer \*q
|
||||
The amount of motion considered one unit of scrolling vertically.
|
||||
Default: "1". Property: "Evdev Scrolling Distance".
|
||||
.TP 7
|
||||
.BI "Option \*qHorizScrollDelta\*q \*q" integer \*q
|
||||
The amount of motion considered one unit of scrolling horizontally.
|
||||
Default: "1". Property: "Evdev Scrolling Distance".
|
||||
.TP 7
|
||||
.BI "Option \*qDialDelta\*q \*q" integer \*q
|
||||
The amount of motion considered one unit of turning the dial. Default: "1".
|
||||
Property: "Evdev Scrolling Distance".
|
||||
|
||||
.SH SUPPORTED PROPERTIES
|
||||
The following properties are provided by the
|
||||
@@ -278,9 +266,6 @@ value.
|
||||
.TP 7
|
||||
.BI "Evdev Wheel Emulation Timeout"
|
||||
1 16-bit positive value.
|
||||
.TP 7
|
||||
.BI "Evdev Scrolling Distance"
|
||||
3 32-bit values: vertical, horizontal and dial.
|
||||
|
||||
.SH AUTHORS
|
||||
Kristian Høgsberg, Peter Hutterer
|
||||
|
||||
@@ -26,11 +26,11 @@
|
||||
# TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc.
|
||||
|
||||
AM_CFLAGS = $(XORG_CFLAGS) $(CWARNFLAGS)
|
||||
AM_CPPFLAGS =-I$(top_srcdir)/include $(LIBEVDEV_CFLAGS)
|
||||
AM_CPPFLAGS =-I$(top_srcdir)/include
|
||||
|
||||
@DRIVER_NAME@_drv_la_LTLIBRARIES = @DRIVER_NAME@_drv.la
|
||||
@DRIVER_NAME@_drv_la_LDFLAGS = -module -avoid-version
|
||||
@DRIVER_NAME@_drv_la_LIBADD = $(MTDEV_LIBS) $(UDEV_LIBS) $(LIBEVDEV_LIBS)
|
||||
@DRIVER_NAME@_drv_la_LIBADD = $(MTDEV_LIBS) $(UDEV_LIBS)
|
||||
@DRIVER_NAME@_drv_ladir = @inputdir@
|
||||
|
||||
@DRIVER_NAME@_drv_la_SOURCES = @DRIVER_NAME@.c \
|
||||
|
||||
@@ -303,8 +303,7 @@ EvdevAppleInitProperty(DeviceIntPtr dev)
|
||||
enum fkeymode fkeymode;
|
||||
|
||||
if (!product_check(apple_keyboard_table,
|
||||
libevdev_get_id_vendor(pEvdev->dev),
|
||||
libevdev_get_id_product(pEvdev->dev)))
|
||||
pEvdev->id_vendor, pEvdev->id_product))
|
||||
return;
|
||||
|
||||
fkeymode = get_fnmode();
|
||||
|
||||
@@ -114,6 +114,7 @@ EvdevWheelEmuFilterMotion(InputInfoPtr pInfo, struct input_event *pEv)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* We don't want to intercept real mouse wheel events */
|
||||
if(pEv->type == EV_ABS) {
|
||||
int axis = pEvdev->abs_axis_map[pEv->code];
|
||||
int oldValue;
|
||||
|
||||
645
src/evdev.c
645
src/evdev.c
File diff suppressed because it is too large
Load Diff
17
src/evdev.h
17
src/evdev.h
@@ -47,8 +47,6 @@
|
||||
#include <mtdev.h>
|
||||
#endif
|
||||
|
||||
#include <libevdev/libevdev.h>
|
||||
|
||||
#ifndef EV_CNT /* linux 2.6.23 kernels and earlier lack _CNT defines */
|
||||
#define EV_CNT (EV_MAX+1)
|
||||
#endif
|
||||
@@ -152,7 +150,8 @@ typedef struct {
|
||||
} EventQueueRec, *EventQueuePtr;
|
||||
|
||||
typedef struct {
|
||||
struct libevdev *dev;
|
||||
unsigned short id_vendor;
|
||||
unsigned short id_product;
|
||||
|
||||
char *device;
|
||||
int grabDevice; /* grab the event device? */
|
||||
@@ -221,11 +220,6 @@ typedef struct {
|
||||
Time expires; /* time of expiry */
|
||||
Time timeout;
|
||||
} emulateWheel;
|
||||
struct {
|
||||
int vert_delta;
|
||||
int horiz_delta;
|
||||
int dial_delta;
|
||||
} smoothScroll;
|
||||
/* run-time calibration */
|
||||
struct {
|
||||
int min_x;
|
||||
@@ -240,6 +234,13 @@ typedef struct {
|
||||
int reopen_left; /* number of attempts left to re-open the device */
|
||||
OsTimerPtr reopen_timer;
|
||||
|
||||
/* Cached info from device. */
|
||||
unsigned long bitmask[NLONGS(EV_CNT)];
|
||||
unsigned long key_bitmask[NLONGS(KEY_CNT)];
|
||||
unsigned long rel_bitmask[NLONGS(REL_CNT)];
|
||||
unsigned long abs_bitmask[NLONGS(ABS_CNT)];
|
||||
struct input_absinfo absinfo[ABS_CNT];
|
||||
|
||||
/* minor/major number */
|
||||
dev_t min_maj;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user