freebsd-dev/share/man/man4/sysmouse.4

474 lines
12 KiB
Groff
Raw Normal View History

1997-02-22 21:19:55 +00:00
.\" Copyright (c) 1997
.\" John-Mark Gurney. All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. Neither the name of the author nor the names of any co-contributors
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY John-Mark Gurney AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
1999-08-28 00:22:10 +00:00
.\" $FreeBSD$
1997-02-22 21:19:55 +00:00
.\"
1997-12-07 08:46:56 +00:00
.Dd December 3, 1997
.Dt SYSMOUSE 4
.Os
1997-02-22 21:19:55 +00:00
.Sh NAME
.Nm sysmouse
1997-12-07 08:46:56 +00:00
.\" .Nd supplies mouse data from syscons for other applications
.Nd virtualized mouse driver
1997-02-22 21:19:55 +00:00
.Sh SYNOPSIS
.Fd #include <sys/mouse.h>
.Fd #include <sys/consio.h>
1997-02-22 21:19:55 +00:00
.Sh DESCRIPTION
1997-12-07 08:46:56 +00:00
The console driver, in conjunction with the mouse daemon
.Xr moused 8 ,
supplies mouse data to the user process in the standardized way via the
.Nm
driver.
This arrangement makes it possible for the console and the user process
(such as the
.Tn X\ Window System )
1997-12-07 08:46:56 +00:00
to share the mouse.
.Pp
The user process which wants to utilize mouse operation simply opens
1997-12-07 08:46:56 +00:00
.Pa /dev/sysmouse
with a
.Xr open 2
call and reads
mouse data from the device via
.Xr read 2 .
Make sure that
.Xr moused 8
is running, otherwise the user process won't see any data coming from
the mouse.
.Pp
.Ss Operation Levels
1997-02-22 21:19:55 +00:00
The
1997-12-07 08:46:56 +00:00
.Nm
driver has two levels of operation.
1997-12-07 08:46:56 +00:00
The current operation level can be referred to and changed via ioctl calls.
.Pp
The level zero, the basic level, is the lowest level at which the driver
offers the basic service to user programs.
1997-12-07 08:46:56 +00:00
The
.Nm
driver
provides horizontal and vertical movement of the mouse
and state of up to three buttons in the
.Tn MouseSystems
1997-12-07 08:46:56 +00:00
format as follows.
.Pp
.Bl -tag -width Byte_1 -compact
.It Byte 1
1997-12-07 08:46:56 +00:00
.Bl -tag -width bit_7 -compact
.It bit 7
Always one.
.It bit 6..3
Always zero.
.It bit 2
Left button status; cleared if pressed, otherwise set.
.It bit 1
Middle button status; cleared if pressed, otherwise set.
Always one,
1997-12-07 08:46:56 +00:00
if the device does not have the middle button.
.It bit 0
Right button status; cleared if pressed, otherwise set.
.El
.It Byte 2
The first half of horizontal movement count in two's complement;
1997-12-07 08:46:56 +00:00
-128 through 127.
.It Byte 3
The first half of vertical movement count in two's complement;
1997-12-07 08:46:56 +00:00
-128 through 127.
.It Byte 4
The second half of the horizontal movement count in two's complement;
1997-12-07 08:46:56 +00:00
-128 through 127. To obtain the full horizontal movement count, add
the byte 2 and 4.
.It Byte 5
The second half of the vertical movement count in two's complement;
1997-12-07 08:46:56 +00:00
-128 through 127. To obtain the full vertical movement count, add
the byte 3 and 5.
.El
.Pp
At the level one, the extended level, mouse data is encoded
in the standard format
.Dv MOUSE_PROTO_SYSMOUSE
as defined in
1997-12-07 08:46:56 +00:00
.Xr mouse 4 .
.\" .Ss Acceleration
.\" The
.\" .Nm
.\" driver can somewhat `accelerate' the movement of the pointing device.
.\" The faster you move the device, the further the pointer
.\" travels on the screen.
.\" The driver has an internal variable which governs the effect of
.\" the acceleration. Its value can be modified via the driver flag
1997-12-07 08:46:56 +00:00
.\" or via an ioctl call.
.Sh IOCTLS
This section describes two classes of
1997-12-07 08:46:56 +00:00
.Xr ioctl 2
commands:
1997-12-07 08:46:56 +00:00
commands for the
.Nm
driver itself, and commands for the console and the console control drivers.
.Ss Sysmouse Ioctls
There are a few commands for mouse drivers.
General description of the commands is given in
.Xr mouse 4 .
Following are the features specific to the
1997-12-07 08:46:56 +00:00
.Nm
driver.
.Pp
.Bl -tag -width MOUSE -compact
.It Dv MOUSE_GETLEVEL Ar int *level
.It Dv MOUSE_SETLEVEL Ar int *level
These commands manipulate the operation level of the mouse driver.
.Pp
.It Dv MOUSE_GETHWINFO Ar mousehw_t *hw
Returns the hardware information of the attached device in the following
1997-12-07 08:46:56 +00:00
structure. Only the
.Dv iftype
field is guaranteed to be filled with the correct value in the current
version of the
.Nm
driver.
.Bd -literal
typedef struct mousehw {
int buttons; /* number of buttons */
int iftype; /* I/F type */
int type; /* mouse/track ball/pad... */
int model; /* I/F dependent model ID */
int hwid; /* I/F dependent hardware ID */
} mousehw_t;
.Ed
.Pp
The
.Dv buttons
field holds the number of buttons detected by the driver.
.Pp
The
.Dv iftype
is always
.Dv MOUSE_IF_SYSMOUSE .
1997-12-07 08:46:56 +00:00
.Pp
The
.Dv type
tells the device type:
.Dv MOUSE_MOUSE ,
.Dv MOUSE_TRACKBALL ,
.Dv MOUSE_STICK ,
.Dv MOUSE_PAD ,
or
.Dv MOUSE_UNKNOWN .
.Pp
The
.Dv model
is always
1997-12-07 08:46:56 +00:00
.Dv MOUSE_MODEL_GENERIC
at the operation level 0.
It may be
1997-12-07 08:46:56 +00:00
.Dv MOUSE_MODEL_GENERIC
or one of
1997-12-07 08:46:56 +00:00
.Dv MOUSE_MODEL_XXX
constants at higher operation levels.
.Pp
The
.Dv hwid
is always zero.
.Pp
.It Dv MOUSE_GETMODE Ar mousemode_t *mode
The command gets the current operation parameters of the mouse
driver.
.Bd -literal
typedef struct mousemode {
int protocol; /* MOUSE_PROTO_XXX */
int rate; /* report rate (per sec) */
int resolution; /* MOUSE_RES_XXX, -1 if unknown */
int accelfactor; /* acceleration factor */
int level; /* driver operation level */
int packetsize; /* the length of the data packet */
unsigned char syncmask[2]; /* sync. bits */
} mousemode_t;
.Ed
.Pp
The
.Dv protocol
field tells the format in which the device status is returned
1997-12-07 08:46:56 +00:00
when the mouse data is read by the user program.
It is
.Dv MOUSE_PROTO_MSC
at the operation level zero.
.Dv MOUSE_PROTO_SYSMOUSE
at the operation level one.
.Pp
The
.Dv rate
is always set to -1.
.Pp
The
.Dv resolution
is always set to -1.
.Pp
The
.Dv accelfactor
is always 0.
.Pp
The
.Dv packetsize
field specifies the length of the data packet.
It depends on the
1997-12-07 08:46:56 +00:00
operation level.
.Pp
.Bl -tag -width level_0__ -compact
.It Em level 0
5 bytes
.It Em level 1
8 bytes
.El
.Pp
The array
.Dv syncmask
holds a bit mask and pattern to detect the first byte of the
data packet.
.Dv syncmask[0]
is the bit mask to be ANDed with a byte.
If the result is equal to
1997-12-07 08:46:56 +00:00
.Dv syncmask[1] ,
the byte is likely to be the first byte of the data packet.
Note that this method of detecting the first byte is not 100% reliable;
thus, it should be taken only as an advisory measure.
1997-12-07 08:46:56 +00:00
.Pp
.It Dv MOUSE_SETMODE Ar mousemode_t *mode
The command changes the current operation parameters of the mouse driver
as specified in
.Ar mode .
Only
.Dv level
may be modifiable.
Setting values in the other field does not generate
1997-12-07 08:46:56 +00:00
error and has no effect.
.\" .Pp
.\" .It Dv MOUSE_GETVARS Ar mousevar_t *vars
.\" .It Dv MOUSE_SETVARS Ar mousevar_t *vars
.\" These commands are not supported by the
.\" .Nm
.\" driver.
.Pp
.It Dv MOUSE_READDATA Ar mousedata_t *data
.It Dv MOUSE_READSTATE Ar mousedata_t *state
These commands are not supported by the
.Nm
driver.
.Pp
.It Dv MOUSE_GETSTATUS Ar mousestatus_t *status
The command returns the current state of buttons and
1997-12-07 08:46:56 +00:00
movement counts in the structure as defined in
.Xr mouse 4 .
.El
.Ss Console and Consolectl Ioctls
The user process issues console
1997-02-22 21:19:55 +00:00
.Fn ioctl
1997-12-07 08:46:56 +00:00
calls to the current virtual console in order to control
the mouse pointer.
The console
.Fn ioctl
1997-12-07 08:46:56 +00:00
also provides a method for the user process to receive a
1997-02-22 21:19:55 +00:00
.Xr signal 3
when a button is pressed.
.Pp
1997-12-07 08:46:56 +00:00
The mouse daemon
1997-02-22 21:19:55 +00:00
.Xr moused 8
uses
1997-02-22 21:19:55 +00:00
.Fn ioctl
1997-12-07 08:46:56 +00:00
calls to the console control device
.Pa /dev/consolectl
to inform the console of mouse actions including mouse movement
and button status.
1997-02-22 21:19:55 +00:00
.Pp
Both classes of
1997-12-07 08:46:56 +00:00
.Fn ioctl
commands are defined as
.Dv CONS_MOUSECTL
which takes the following argument.
.Bd -literal
1997-02-22 21:19:55 +00:00
struct mouse_info {
1997-12-07 08:46:56 +00:00
int operation;
union {
struct mouse_data data;
struct mouse_mode mode;
struct mouse_event event;
} u;
1997-02-22 21:19:55 +00:00
};
.Ed
1997-12-07 08:46:56 +00:00
.Pp
.Bl -tag -width operation -compact
1997-02-22 21:19:55 +00:00
.It Dv operation
This can be one of
1997-12-07 08:46:56 +00:00
.Pp
.Bl -tag -width MOUSE_MOVEABS -compact
1997-02-22 21:19:55 +00:00
.It Dv MOUSE_SHOW
Enables and displays mouse cursor.
.It Dv MOUSE_HIDE
Disables and hides mouse cursor.
.It Dv MOUSE_MOVEABS
Moves mouse cursor to position supplied in
.Dv u.data .
.It Dv MOUSE_MOVEREL
1997-12-07 08:46:56 +00:00
Adds position supplied in
1997-02-22 21:19:55 +00:00
.Dv u.data
to current position.
.It Dv MOUSE_GETINFO
Returns current mouse position in the current virtual console
1997-12-07 08:46:56 +00:00
and button status in
1997-02-22 21:19:55 +00:00
.Dv u.data .
.It Dv MOUSE_MODE
This sets the
.Xr signal 3
to be delivered to the current process when a button is pressed.
The signal to be delivered is set in
.Dv u.mode .
1997-12-07 08:46:56 +00:00
.El
.Pp
The above operations are for virtual consoles.
The operations defined
below are for the console control device and are used by
1997-12-07 08:46:56 +00:00
.Xr moused 8
to pass mouse data to the console driver.
.Pp
.Bl -tag -width MOUSE_MOVEABS -compact
1997-02-22 21:19:55 +00:00
.It Dv MOUSE_ACTION
1997-12-07 08:46:56 +00:00
.It Dv MOUSE_MOTIONEVENT
These operations take the information in
1997-02-22 21:19:55 +00:00
.Dv u.data
1997-12-07 08:46:56 +00:00
and act upon it. Mouse data will be sent to the
.Nm
driver if it is open.
.Dv MOUSE_ACTION
also processes button press actions and sends signal to the process if
requested or performs cut and paste operations
if the current console is a text interface.
1997-12-07 08:46:56 +00:00
.It Dv MOUSE_BUTTONEVENT
.Dv u.data
specifies a button and its click count.
The console driver will
use this information for signal delivery if requested or
1997-12-07 08:46:56 +00:00
for cut and paste operations if the console is in text mode.
1997-02-22 21:19:55 +00:00
.El
1997-12-07 08:46:56 +00:00
.Pp
.Dv MOUSE_MOTIONEVENT
and
1997-12-07 08:46:56 +00:00
.Dv MOUSE_BUTTONEVENT
are newer interface and are designed to be used together.
They are intended to replace functions performed by
.Dv MOUSE_ACTION
alone.
.Pp
1997-02-22 21:19:55 +00:00
.It Dv u
This union is one of
1997-12-07 08:46:56 +00:00
.Pp
.Bl -tag -width data -compact
1997-02-22 21:19:55 +00:00
.It Dv data
1997-12-07 08:46:56 +00:00
.Bd -literal
1997-02-22 21:19:55 +00:00
struct mouse_data {
1997-12-07 08:46:56 +00:00
int x;
int y;
int z;
int buttons;
1997-02-22 21:19:55 +00:00
};
.Ed
1997-12-07 08:46:56 +00:00
.Pp
.Dv x ,
.Dv y
1997-12-07 08:46:56 +00:00
and
.Dv z
represent movement of the mouse along respective directions.
.Dv buttons
tells the state of buttons.
It encodes up to 31 buttons in the bit 0 though
the bit 30. If a button is held down, the corresponding bit is set.
1997-12-07 08:46:56 +00:00
.Pp
1997-02-22 21:19:55 +00:00
.It Dv mode
1997-12-07 08:46:56 +00:00
.Bd -literal
1997-02-22 21:19:55 +00:00
struct mouse_mode {
1997-12-07 08:46:56 +00:00
int mode;
int signal;
1997-02-22 21:19:55 +00:00
};
.Ed
1997-12-07 08:46:56 +00:00
.Pp
The
.Dv signal
field specifies the signal to be delivered to the process.
It must be
1997-12-07 08:46:56 +00:00
one of the values defined in
.Ao Pa signal.h Ac .
The
.Dv mode
field is currently unused.
.Pp
.It Dv event
.Bd -literal
struct mouse_event {
int id;
int value;
};
.Ed
.Pp
The
.Dv id
field specifies a button number as in
1997-12-07 08:46:56 +00:00
.Dv u.data.buttons .
Only one bit/button is set.
The
.Dv value
field
holds the click count: the number of times the user has clicked the button
successively.
.Pp
1997-02-22 21:19:55 +00:00
.El
.El
.Sh FILES
.Bl -tag -width /dev/consolectl -compact
.It Pa /dev/consolectl
device to control the console
.It Pa /dev/sysmouse
1997-12-07 08:46:56 +00:00
virtualized mouse driver
.It Pa /dev/ttyv%d
virtual consoles
1997-02-22 21:19:55 +00:00
.El
.Sh SEE ALSO
.Xr vidcontrol 1 ,
1997-12-07 08:46:56 +00:00
.Xr ioctl 2 ,
1997-02-22 21:19:55 +00:00
.Xr signal 3 ,
1997-12-07 08:46:56 +00:00
.Xr mouse 4 ,
1997-02-22 21:19:55 +00:00
.Xr moused 8
.Sh HISTORY
The
.Nm
manual page example first appeared in
.Fx 2.2 .
.Sh AUTHORS
.An -nosplit
1997-02-22 21:19:55 +00:00
This
1997-12-07 08:46:56 +00:00
manual page was written by
.An John-Mark Gurney Aq gurney_j@efn.org
and
.An Kazutaka Yokota Aq yokota@FreeBSD.org .