Manual Page Result
0
Command: ws | Section: 4 | Source: OpenBSD | File: ws.4
WS(4) Kernel Interfaces Manual WS(4)
NAME
WS - wscons pointer input driver for Xorg on *BSD
SYNOPSIS
Section "InputDevice"
Identifier "name"
Driver "ws"
Option "Buttons" "integer"
Option "Emulate3Buttons" "boolean"
Option "Emulate3Timeout" "integer"
Option "DebugLevel" "integer"
Option "Device" "path"
Option "MinX" "integer"
Option "MaxX" "integer"
Option "MinY" "integer"
Option "MaxY" "integer"
Option "Raw" "boolean"
Option "Rotate" "string"
Option "SwapXY" "boolean"
Option "ZAxisMapping" "N1 N2"
Option "WAxisMapping" "N1 N2"
EndSection
DESCRIPTION
ws is an XFree86/X.Org input driver for pointer devices (mouse, tablet,
touchscreen,...) driven by the wscons console driver on OpenBSD.
SUPPORTED HARDWARE
This driver supports uts(4), USB touchscreens and ums(4), generic USB
mouse devices.
CONFIGURATION DETAILS
Please refer to xorg.conf(5) for general configuration details and for
options that can be used with all input drivers. This section only
covers configuration details specific to this driver.
Option "ButtonMapping" "string"
Sets the button mapping for this device. The mapping is a space-
separated list of button mappings that correspond in order to the
physical buttons on the device (i.e. the first number is the map-
ping for button 1, etc.). The default mapping is "1 2 3 ... 32". A
mapping of 0 deactivates the button. Multiple buttons can have the
same mapping. For example, a left-handed mouse with deactivated
scroll-wheel would use a mapping of "3 2 1 0 0". Invalid mappings
are ignored and the default mapping is used. Buttons not specified
in the user's mapping use the default mapping.
Option "Buttons" "integer"
Specifies the number of mouse buttons. In cases where the number
of buttons cannot be auto-detected, the default value is 3.
Option "Emulate3Buttons" "boolean"
Enable/disable the emulation of the 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 mid-
dle button event is detected.
Option "Emulate3Timeout" "integer"
Sets the timeout (in milliseconds) that the driver waits before de-
ciding if two buttons where pressed "simultaneously" when 3 button
emulation is enabled. Default: 50.
Option "EmulateWheel" "boolean"
Enable/disable "wheel" emulation. Wheel emulation means emulating
button press/release events when the mouse is moved while a spe-
cific real button is pressed. Wheel button events (typically but-
tons 4 and 5) are usually used for scrolling. Wheel emulation is
useful for getting wheel-like behaviour with trackballs. It can
also be useful for mice with 4 or more buttons but no wheel. See
the description of the EmulateWheelButton, EmulateWheelInertia, Em-
ulateWheelTimeout, XAxisMapping, and YAxisMapping options. De-
fault: off.
Option "EmulateWheelButton" "integer"
Specifies which button must be held down to enable wheel emulation
mode. While this button is down, X and/or Y pointer movement will
generate button press/release events as specified for the XAxisMap-
ping and YAxisMapping settings. If the button is 0 and Emulate-
Wheel is on, any motion of the device is converted into wheel
events. Default: 4.
Option "EmulateWheelInertia" "integer"
Specifies how far (in pixels) the pointer must move to generate
button press/release events in wheel emulation mode. Default: 10.
Option "EmulateWheelTimeout" "integer"
Specifies the time in milliseconds the EmulateWheelButton must be
pressed before wheel emulation is started. If the EmulateWheelBut-
ton is released before this timeout, the original button press/re-
lease event is sent. Default: 200.
Option "DebugLevel" "integer"
This option sets the verbosity level of the driver. It defaults to
0, which means no extra debug output.
Option "Device" "path"
sets the path to the special file used by the device, usually
/dev/wsmouse . This option is mandatory.
Option "MinX" "integer"
Option "MaxX" "integer"
Option "MinY" "integer"
Option "MaxY" "integer"
These options represent the coordinate space returned by the de-
vice. They default to the screen dimensions, since the calibration
is handled in the kernel by the uts(4) driver and the xtsscale(1)
utility.
Option "Raw" "boolean"
This option selects the raw (uncalibrated) mode for tablet devices.
It defaults to True. When using raw mode, if no coordinate space
is specified by the above options, the coordinate space will be
read from the kernel calibration data.
Option "Rotate" "CW"
Option "Rotate" "CCW"
Option "Rotate" "UD"
These options rotate the screen coordinates returned by the driver
clockwise, counter-clockwise, or upside-down respectively.
Option "SwapXY" "boolean"
swaps the X and Y axis of the input device if set. Default: false.
Option "XAxisMapping" "N1 N2"
Specifies which buttons are mapped to motion in the X direction in
wheel emulation mode. Button number N1 is mapped to the negative X
axis motion and button number N2 is mapped to the positive X axis
motion. Default: no mapping.
Option "YAxisMapping" "N1 N2"
Specifies which buttons are mapped to motion in the Y direction in
wheel emulation mode. Button number N1 is mapped to the negative Y
axis motion and button number N2 is mapped to the positive Y axis
motion. Default: "4 5".
Option "ZAxisMapping" "N1 N2"
Set the mapping for the Z axis (wheel) motion to buttons. Button
number N1 is mapped to the negative Z axis motion and button N2 is
mapped to the positive Z axis motion. Default: "4 5".
Option "WAxisMapping" "N1 N2"
Set the mapping for the W axis (horizontal wheel) motion to but-
tons. Button number N1 is mapped to the negative W axis motion and
button N2 is mapped to the positive W axis motion. Default: "6 7".
SUPPORTED PROPERTIES
The following properties are provided by the ws driver.
WS Pointer Middle Button Emulation
1 boolean value (8 bit, 0 or 1)
WS Pointer Middle Button Timeout
1 32-bit positive value (unit: milliseconds)
WS Pointer Wheel Emulation
1 boolean value (8 bit, 0 or 1).
WS Pointer Wheel Emulation Axes
4 8-bit values, order X up, X down, Y up, Y down. 0 disables a
value.
WS Pointer Wheel Emulation Button
1 8-bit value, allowed range 0-32, 0 to always scroll.
WS Pointer Wheel Emulation Inertia
1 16-bit positive value.
WS Pointer Wheel Emulation Timeout
1 32-bit positive value (unit: milliseconds).
WS Pointer Axis Calibration
4 32 bits values, in the order min-x, max-x, min-y, max-y. This
property is present only for devices with absolute coordinates
(ie tablets and touchscreens).
WS Pointer Axes Swap
1 boolean value (8 bits, 0 or 1). 1 swaps x/y axes. This prop-
erty is present only for devices with absolute coordinates (ie
tablets and touchscreens).
SEE ALSO
Xorg(1), xinput(1), xorg.conf(5), ums(4), uts(4), sysctl(8), xtss-
cale(1).
X Version 11 xf86-input-ws 1.3.0 WS(4)