From 59056e656c6475816ab45b2798bd4d4466482f6a Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 13 Oct 2009 14:51:49 +1000 Subject: Remove the reopen timer logic. This logic was needed in older kernels that sometimes gave error messages after coming back from resume (2.6.27 release kernels). I haven't seen any log files that needed this reopen timer in a long time, suggesting that need for it is gone. Signed-off-by: Peter Hutterer --- man/evdev.man | 4 ---- 1 file changed, 4 deletions(-) (limited to 'man/evdev.man') diff --git a/man/evdev.man b/man/evdev.man index 9dd7a77..4771167 100644 --- a/man/evdev.man +++ b/man/evdev.man @@ -151,10 +151,6 @@ axes regardless of the presence of other axes. This may trigger buggy behavior and events from this axis are always forwarded. Users are discouraged from setting this option. .TP 7 -.BI "Option \*qReopenAttempts\*q \*q" integer \*q -Number of reopen attempts after a read error occurs on the device (e.g. after -waking up from suspend). In between each attempt is a 100ms wait. Default: 10. -.TP 7 .BI "Option \*qCalibration\*q \*q" "min-x max-x min-y max-y" \*q Calibrates the X and Y axes for devices that need to scale to a different coordinate system than reported to the X server. This feature is required -- cgit v1.2.3 From e81cd935cfff18d3c387eed3e8083977c19c92f0 Mon Sep 17 00:00:00 2001 From: Andrej Gelenberg Date: Tue, 12 Jan 2010 11:22:16 +0100 Subject: Implement XSetDeviceMode request handler Implement XSetDeviceMode request handler for evdev. Devices with absolute axes can be switched in relative mode or absolute mode. Devices with relative axes can be switched only in relative mode. Other devices return BadMatch, cause they have no valuators and don't report motion events. New option "Mode" force devices with absolute axes to work in relative or absolute mode. Need xinputproto. Signed-off-by: Andrej Gelenberg --- man/evdev.man | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'man/evdev.man') diff --git a/man/evdev.man b/man/evdev.man index 4771167..bc2ee97 100644 --- a/man/evdev.man +++ b/man/evdev.man @@ -159,6 +159,11 @@ originally reported by the kernel (e.g. touchscreens). The scaling to the custom coordinate system is done in-driver and the X server is unaware of the transformation. Property: "Evdev Axis Calibration". .TP 7 +.B Option \*qMode\*q \*qRelative\*q\fP|\fP\*qAbsolute\*q +Sets the mode of the device if device has absolute axes. +The default value for touchpads is relative, for other absolute. +This option has no effect on devices without absolute axes. +.TP 7 .BI "Option \*qSwapAxes\*q \*q" Bool \*q Swap x/y axes. Default: off. Property: "Evdev Axes Swap". .TP 7 -- cgit v1.2.3 From 99505011d124bef00acffb6ab07f6b765f5870b7 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 18 Feb 2010 19:01:51 +1000 Subject: man: fix man page formatting for option EmulateWheel. Signed-off-by: Peter Hutterer --- man/evdev.man | 1 + 1 file changed, 1 insertion(+) (limited to 'man/evdev.man') diff --git a/man/evdev.man b/man/evdev.man index bc2ee97..d832a4c 100644 --- a/man/evdev.man +++ b/man/evdev.man @@ -83,6 +83,7 @@ button event is registered. Property: "Evdev Middle Button Emulation". Sets the timeout (in milliseconds) that the driver waits before deciding if two buttons where pressed "simultaneously" when 3 button emulation is enabled. Default: 50. Property: "Evdev Middle Button Timeout". +.TP 7 .BI "Option \*qEmulateWheel\*q \*q" boolean \*q Enable/disable "wheel" emulation. Wheel emulation means emulating button press/release events when the mouse is moved while a specific real button -- cgit v1.2.3 From 801778c3106fc7e409369b4500253a38be6a5795 Mon Sep 17 00:00:00 2001 From: Oliver McFadden Date: Thu, 25 Feb 2010 07:11:21 +0200 Subject: emuMB: default to disabled mouse button emulation for touchscreens. Because touchscreens only use one button (see EvdevProcessKeyEvent()) EvdevMBEmuFilterEvent() never calls EvdevMBEmuEnable(..., FALSE) to disable emulation. This results in touchscreen devices incurring a delay of Emulate3Timeout (typically 50 ms.) Default to MBEMU_DISABLED for touchscreen devices (unless overwritten by Xorg.conf.) Signed-off-by: Oliver McFadden Reviewed-by: Peter Hutterer Signed-off-by: Peter Hutterer --- man/evdev.man | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'man/evdev.man') diff --git a/man/evdev.man b/man/evdev.man index d832a4c..49ab12c 100644 --- a/man/evdev.man +++ b/man/evdev.man @@ -76,8 +76,9 @@ indicating that the next button pressed is to be .BI "Option \*qEmulate3Buttons\*q \*q" boolean \*q Enable/disable the emulation of the third (middle) mouse button for mice which only have two physical buttons. The third button is emulated by -pressing both buttons simultaneously. Default: on, until a middle mouse -button event is registered. Property: "Evdev Middle Button Emulation". +pressing both buttons simultaneously. Default: off for touchscreens, otherwise +on until a middle mouse button event is registered. Property: "Evdev Middle +Button Emulation". .TP 7 .BI "Option \*qEmulate3Timeout\*q \*q" integer \*q Sets the timeout (in milliseconds) that the driver waits before deciding -- cgit v1.2.3