]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - share/man/man4/mouse.4
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / share / man / man4 / mouse.4
1 .\"
2 .\" Copyright (c) 1997
3 .\" Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
4 .\" All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer as
11 .\"    the first lines of this file unmodified.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 .\"
27 .\" $FreeBSD$
28 .\"
29 .Dd December 3, 1997
30 .Dt MOUSE 4
31 .Os
32 .Sh NAME
33 .Nm mouse
34 .Nd mouse and pointing device drivers
35 .Sh SYNOPSIS
36 .In sys/mouse.h
37 .Sh DESCRIPTION
38 The mouse drivers
39 .Xr mse 4 ,
40 .Xr psm 4 ,
41 .Xr ums 4
42 and
43 .Xr sysmouse 4
44 provide user programs with movement and button state information of the mouse.
45 Currently there are specific device drivers for bus, InPort, PS/2, and USB mice.
46 The serial mouse is not directly supported by a dedicated driver, but
47 it is accessible via the serial device driver or via
48 .Xr moused 8
49 and
50 .Xr sysmouse 4 .
51 .Pp
52 The user program simply opens a mouse device with a
53 .Xr open 2
54 call and reads
55 mouse data from the device via
56 .Xr read 2 .
57 Movement and button states are usually encoded in fixed-length data packets.
58 Some mouse devices may send data in variable length of packets.
59 Actual protocol (data format) used by each driver differs widely.
60 .Pp
61 The mouse drivers may have ``non-blocking'' attribute which will make
62 the driver return immediately if mouse data is not available.
63 .Pp
64 Mouse device drivers often offer several levels of operation.
65 The current operation level can be examined and changed via
66 .Xr ioctl 2
67 commands.
68 The level zero is the lowest level at which the driver offers the basic
69 service to user programs.
70 Most drivers provide horizontal and vertical movement of the mouse
71 and state of up to three buttons at this level.
72 At the level one, if supported by the driver, mouse data is encoded
73 in the standard format
74 .Dv MOUSE_PROTO_SYSMOUSE
75 as follows:
76 .Pp
77 .Bl -tag -width Byte_1 -compact
78 .It Byte 1
79 .Bl -tag -width bit_7 -compact
80 .It bit 7
81 Always one.
82 .It bit 6..3
83 Always zero.
84 .It bit 2
85 Left button status; cleared if pressed, otherwise set.
86 .It bit 1
87 Middle button status; cleared if pressed, otherwise set.
88 Always one,
89 if the device does not have the middle button.
90 .It bit 0
91 Right button status; cleared if pressed, otherwise set.
92 .El
93 .It Byte 2
94 The first half of horizontal movement count in two's complement;
95 -128 through 127.
96 .It Byte 3
97 The first half of vertical movement count in two's complement;
98 -128 through 127.
99 .It Byte 4
100 The second half of the horizontal movement count in two's complement;
101 -128 through 127.
102 To obtain the full horizontal movement count, add
103 the byte 2 and 4.
104 .It Byte 5
105 The second half of the vertical movement count in two's complement;
106 -128 through 127.
107 To obtain the full vertical movement count, add
108 the byte 3 and 5.
109 .It Byte 6
110 The bit 7 is always zero.
111 The lower 7 bits encode the first half of
112 Z axis movement count in two's complement; -64 through 63.
113 .It Byte 7
114 The bit 7 is always zero.
115 The lower 7 bits encode the second half of
116 the Z axis movement count in two's complement; -64 through 63.
117 To obtain the full Z axis movement count, add the byte 6 and 7.
118 .It Byte 8
119 The bit 7 is always zero.
120 The bits 0 through 6 reflect the state
121 of the buttons 4 through 10.
122 If a button is pressed, the corresponding bit is cleared.
123 Otherwise
124 the bit is set.
125 .El
126 .Pp
127 The first 5 bytes of this format is compatible with the MouseSystems
128 format.
129 The additional 3 bytes have their MSBs always set to zero.
130 Thus, if the user program can interpret the MouseSystems data format and
131 tries to find the first byte of the format by detecting the bit pattern
132 10000xxxb,
133 it will discard the additional bytes, thus, be able to decode x, y
134 and states of 3 buttons correctly.
135 .Pp
136 Device drivers may offer operation levels higher than one.
137 Refer to manual pages of individual drivers for details.
138 .Sh IOCTLS
139 The following
140 .Xr ioctl 2
141 commands are defined for the mouse drivers.
142 The degree of support
143 varies from one driver to another.
144 This section gives general
145 description of the commands.
146 Refer to manual pages of individual drivers for specific details.
147 .Pp
148 .Bl -tag -width MOUSE -compact
149 .It Dv MOUSE_GETLEVEL Ar int *level
150 .It Dv MOUSE_SETLEVEL Ar int *level
151 These commands manipulate the operation level of the mouse driver.
152 .Pp
153 .It Dv MOUSE_GETHWINFO Ar mousehw_t *hw
154 Returns the hardware information of the attached device in the following
155 Except for the
156 .Dv iftype
157 field, the device driver may not always fill the structure with correct
158 values.
159 Consult manual pages of individual drivers for details of support.
160 .Bd -literal
161 typedef struct mousehw {
162     int buttons;    /* number of buttons */
163     int iftype;     /* I/F type */
164     int type;       /* mouse/track ball/pad... */
165     int model;      /* I/F dependent model ID */
166     int hwid;       /* I/F dependent hardware ID */
167 } mousehw_t;
168 .Ed
169 .Pp
170 The
171 .Dv buttons
172 field holds the number of buttons detected by the driver.
173 The driver
174 may put an arbitrary value, such as two, in this field, if it cannot
175 determine the exact number.
176 .Pp
177 The
178 .Dv iftype
179 is the type of interface:
180 .Dv MOUSE_IF_SERIAL ,
181 .Dv MOUSE_IF_BUS ,
182 .Dv MOUSE_IF_INPORT ,
183 .Dv MOUSE_IF_PS2 ,
184 .Dv MOUSE_IF_USB ,
185 .Dv MOUSE_IF_SYSMOUSE
186 or
187 .Dv MOUSE_IF_UNKNOWN .
188 .Pp
189 The
190 .Dv type
191 tells the device type:
192 .Dv MOUSE_MOUSE ,
193 .Dv MOUSE_TRACKBALL ,
194 .Dv MOUSE_STICK ,
195 .Dv MOUSE_PAD ,
196 or
197 .Dv MOUSE_UNKNOWN .
198 .Pp
199 The
200 .Dv model
201 may be
202 .Dv MOUSE_MODEL_GENERIC
203 or one of
204 .Dv MOUSE_MODEL_XXX
205 constants.
206 .Pp
207 The
208 .Dv hwid
209 is the ID value returned by the pointing device.
210 It
211 depend on the interface type; refer to the manual page of
212 specific mouse drivers for possible values.
213 .Pp
214 .It Dv MOUSE_GETMODE Ar mousemode_t *mode
215 The command reports the current operation parameters of the mouse driver.
216 .Bd -literal
217 typedef struct mousemode {
218     int protocol;    /* MOUSE_PROTO_XXX */
219     int rate;        /* report rate (per sec) */
220     int resolution;  /* MOUSE_RES_XXX, -1 if unknown */
221     int accelfactor; /* acceleration factor */
222     int level;       /* driver operation level */
223     int packetsize;  /* the length of the data packet */
224     unsigned char syncmask[2]; /* sync. bits */
225 } mousemode_t;
226 .Ed
227 .Pp
228 The
229 .Dv protocol
230 field tells the format in which the device status is returned
231 when the mouse data is read by the user program.
232 It is one of
233 .Dv MOUSE_PROTO_XXX
234 constants.
235 .Pp
236 The
237 .Dv rate
238 field is the status report rate (reports/sec) at which the device will send
239 movement reports to the host computer.
240 -1 if unknown or not applicable.
241 .Pp
242 The
243 .Dv resolution
244 field holds a value specifying resolution of the pointing device.
245 It is a positive value or one of
246 .Dv MOUSE_RES_XXX
247 constants.
248 .Pp
249 The
250 .Dv accelfactor
251 field holds a value to control acceleration feature.
252 It must be zero or greater.
253 If it is zero, acceleration is disabled.
254 .Pp
255 The
256 .Dv packetsize
257 field tells the length of the fixed-size data packet or the length
258 of the fixed part of the variable-length packet.
259 The size depends on the interface type, the device type and model, the
260 protocol and the operation level of the driver.
261 .Pp
262 The array
263 .Dv syncmask
264 holds a bit mask and pattern to detect the first byte of the
265 data packet.
266 .Dv syncmask[0]
267 is the bit mask to be ANDed with a byte.
268 If the result is equal to
269 .Dv syncmask[1] ,
270 the byte is likely to be the first byte of the data packet.
271 Note that this method of detecting the first byte is not 100% reliable,
272 thus, should be taken only as an advisory measure.
273 .Pp
274 .It Dv MOUSE_SETMODE Ar mousemode_t *mode
275 The command changes the current operation parameters of the mouse driver
276 as specified in
277 .Ar mode .
278 Only
279 .Dv rate ,
280 .Dv resolution ,
281 .Dv level
282 and
283 .Dv accelfactor
284 may be modifiable.
285 Setting values in the other field does not generate
286 error and has no effect.
287 .Pp
288 If you do not want to change the current setting of a field, put -1
289 there.
290 You may also put zero in
291 .Dv resolution
292 and
293 .Dv rate ,
294 and the default value for the fields will be selected.
295 .\" .Pp
296 .\" .It Dv MOUSE_GETVARS Ar mousevar_t *vars
297 .\" Get internal variables of the mouse driver.
298 .\" The variables which can be manipulated through these commands
299 .\" are specific to each driver.
300 .\" This command may not be supported by all drivers.
301 .\" .Bd -literal
302 .\" typedef struct mousevar {
303 .\"     int var[16];    /* internal variables */
304 .\" } mousevar_t;
305 .\" .Ed
306 .\" .Pp
307 .\" If the commands are supported, the first element of the array is
308 .\" filled with a signature value.
309 .\" Apart from the signature data, there is currently no standard concerning
310 .\" the other elements of the buffer.
311 .\" .Pp
312 .\" .It Dv MOUSE_SETVARS Ar mousevar_t *vars
313 .\" Get internal variables of the mouse driver.
314 .\" The first element of the array must be a signature value.
315 .\" This command may not be supported by all drivers.
316 .Pp
317 .It Dv MOUSE_READDATA Ar mousedata_t *data
318 The command reads the raw data from the device.
319 .Bd -literal
320 typedef struct mousedata {
321     int len;        /* # of data in the buffer */
322     int buf[16];    /* data buffer */
323 } mousedata_t;
324 .Ed
325 .Pp
326 The calling process must fill the
327 .Dv len
328 field with the number of bytes to be read into the buffer.
329 This command may not be supported by all drivers.
330 .Pp
331 .It Dv MOUSE_READSTATE Ar mousedata_t *state
332 The command reads the raw state data from the device.
333 It uses the same structure as above.
334 This command may not be supported by all drivers.
335 .Pp
336 .It Dv MOUSE_GETSTATUS Ar mousestatus_t *status
337 The command returns the current state of buttons and
338 movement counts in the following structure.
339 .Bd -literal
340 typedef struct mousestatus {
341     int flags;      /* state change flags */
342     int button;     /* button status */
343     int obutton;    /* previous button status */
344     int dx;         /* x movement */
345     int dy;         /* y movement */
346     int dz;         /* z movement */
347 } mousestatus_t;
348 .Ed
349 .Pp
350 The
351 .Dv button
352 and
353 .Dv obutton
354 fields hold the current and the previous state of the mouse buttons.
355 When a button is pressed, the corresponding bit is set.
356 The mouse drivers may support up to 31 buttons with the bit 0 through 31.
357 Few button bits are defined as
358 .Dv MOUSE_BUTTON1DOWN
359 through
360 .Dv MOUSE_BUTTON8DOWN .
361 The first three buttons correspond to left, middle and right buttons.
362 .Pp
363 If the state of the button has changed since the last
364 .Dv MOUSE_GETSTATUS
365 call, the corresponding bit in the
366 .Dv flags
367 field will be set.
368 If the mouse has moved since the last call, the
369 .Dv MOUSE_POSCHANGED
370 bit in the
371 .Dv flags
372 field will also be set.
373 .Pp
374 The other fields hold movement counts since the last
375 .Dv MOUSE_GETSTATUS
376 call.
377 The internal counters will be reset after every call to this
378 command.
379 .El
380 .Sh FILES
381 .Bl -tag -width /dev/sysmouseXX -compact
382 .It Pa /dev/cuad%d
383 serial ports
384 .It Pa /dev/mse%d
385 bus and InPort mouse device
386 .It Pa /dev/psm%d
387 PS/2 mouse device
388 .It Pa /dev/sysmouse
389 virtual mouse device
390 .It Pa /dev/ums%d
391 USB mouse device
392 .El
393 .Sh SEE ALSO
394 .Xr ioctl 2 ,
395 .Xr mse 4 ,
396 .Xr psm 4 ,
397 .Xr sysmouse 4 ,
398 .Xr ums 4 ,
399 .Xr moused 8
400 .\".Sh HISTORY
401 .Sh AUTHORS
402 This manual page was written by
403 .An Kazutaka Yokota Aq yokota@FreeBSD.org .