2 .\" John-Mark Gurney. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the author nor the names of any co-contributors
13 .\" may be used to endorse or promote products derived from this software
14 .\" without specific prior written permission.
16 .\" THIS SOFTWARE IS PROVIDED BY John-Mark Gurney AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 .\" .Nd supplies mouse data from syscons for other applications
36 .Nd virtualized mouse driver
41 The console driver, in conjunction with the mouse daemon
43 supplies mouse data to the user process in the standardized way via the
46 This arrangement makes it possible for the console and the user process
48 .Tn X\ Window System )
51 The user process which wants to utilize mouse operation simply opens
56 mouse data from the device via
60 is running, otherwise the user process will not see any data coming from
66 driver has two levels of operation.
67 The current operation level can be referred to and changed via ioctl calls.
69 The level zero, the basic level, is the lowest level at which the driver
70 offers the basic service to user programs.
74 provides horizontal and vertical movement of the mouse
75 and state of up to three buttons in the
79 .Bl -tag -width Byte_1 -compact
81 .Bl -tag -width bit_7 -compact
87 Left button status; cleared if pressed, otherwise set.
89 Middle button status; cleared if pressed, otherwise set.
91 if the device does not have the middle button.
93 Right button status; cleared if pressed, otherwise set.
96 The first half of horizontal movement count in two's complement;
99 The first half of vertical movement count in two's complement;
102 The second half of the horizontal movement count in two's complement;
104 To obtain the full horizontal movement count, add
107 The second half of the vertical movement count in two's complement;
109 To obtain the full vertical movement count, add
113 At the level one, the extended level, mouse data is encoded
114 in the standard format
115 .Dv MOUSE_PROTO_SYSMOUSE
121 .\" driver can somewhat `accelerate' the movement of the pointing device.
122 .\" The faster you move the device, the further the pointer
123 .\" travels on the screen.
124 .\" The driver has an internal variable which governs the effect of
125 .\" the acceleration. Its value can be modified via the driver flag
126 .\" or via an ioctl call.
128 This section describes two classes of
133 driver itself, and commands for the console and the console control drivers.
135 There are a few commands for mouse drivers.
136 General description of the commands is given in
138 Following are the features specific to the
142 .Bl -tag -width MOUSE -compact
143 .It Dv MOUSE_GETLEVEL Ar int *level
144 .It Dv MOUSE_SETLEVEL Ar int *level
145 These commands manipulate the operation level of the mouse driver.
147 .It Dv MOUSE_GETHWINFO Ar mousehw_t *hw
148 Returns the hardware information of the attached device in the following
152 field is guaranteed to be filled with the correct value in the current
157 typedef struct mousehw {
158 int buttons; /* number of buttons */
159 int iftype; /* I/F type */
160 int type; /* mouse/track ball/pad... */
161 int model; /* I/F dependent model ID */
162 int hwid; /* I/F dependent hardware ID */
168 field holds the number of buttons detected by the driver.
173 .Dv MOUSE_IF_SYSMOUSE .
177 tells the device type:
179 .Dv MOUSE_TRACKBALL ,
188 .Dv MOUSE_MODEL_GENERIC
189 at the operation level 0.
191 .Dv MOUSE_MODEL_GENERIC
194 constants at higher operation levels.
200 .It Dv MOUSE_GETMODE Ar mousemode_t *mode
201 The command gets the current operation parameters of the mouse
204 typedef struct mousemode {
205 int protocol; /* MOUSE_PROTO_XXX */
206 int rate; /* report rate (per sec) */
207 int resolution; /* MOUSE_RES_XXX, -1 if unknown */
208 int accelfactor; /* acceleration factor */
209 int level; /* driver operation level */
210 int packetsize; /* the length of the data packet */
211 unsigned char syncmask[2]; /* sync. bits */
217 field tells the format in which the device status is returned
218 when the mouse data is read by the user program.
221 at the operation level zero.
222 .Dv MOUSE_PROTO_SYSMOUSE
223 at the operation level one.
239 field specifies the length of the data packet.
243 .Bl -tag -width level_0__ -compact
252 holds a bit mask and pattern to detect the first byte of the
255 is the bit mask to be ANDed with a byte.
256 If the result is equal to
258 the byte is likely to be the first byte of the data packet.
259 Note that this method of detecting the first byte is not 100% reliable;
260 thus, it should be taken only as an advisory measure.
262 .It Dv MOUSE_SETMODE Ar mousemode_t *mode
263 The command changes the current operation parameters of the mouse driver
269 Setting values in the other field does not generate
270 error and has no effect.
272 .\" .It Dv MOUSE_GETVARS Ar mousevar_t *vars
273 .\" .It Dv MOUSE_SETVARS Ar mousevar_t *vars
274 .\" These commands are not supported by the
278 .It Dv MOUSE_READDATA Ar mousedata_t *data
279 .It Dv MOUSE_READSTATE Ar mousedata_t *state
280 These commands are not supported by the
284 .It Dv MOUSE_GETSTATUS Ar mousestatus_t *status
285 The command returns the current state of buttons and
286 movement counts in the structure as defined in
289 .Ss Console and Consolectl Ioctls
290 The user process issues console
292 calls to the current virtual console in order to control
296 also provides a method for the user process to receive a
298 when a button is pressed.
304 calls to the console control device
306 to inform the console of mouse actions including mouse movement
311 commands are defined as
313 which takes the following argument.
318 struct mouse_data data;
319 struct mouse_mode mode;
320 struct mouse_event event;
325 .Bl -tag -width operation -compact
329 .Bl -tag -width MOUSE_MOVEABS -compact
331 Enables and displays mouse cursor.
333 Disables and hides mouse cursor.
335 Moves mouse cursor to position supplied in
338 Adds position supplied in
342 Returns current mouse position in the current virtual console
348 to be delivered to the current process when a button is pressed.
349 The signal to be delivered is set in
353 The above operations are for virtual consoles.
354 The operations defined
355 below are for the console control device and are used by
357 to pass mouse data to the console driver.
359 .Bl -tag -width MOUSE_MOVEABS -compact
361 .It Dv MOUSE_MOTION_EVENT
362 These operations take the information in
365 Mouse data will be sent to the
367 driver if it is open.
369 also processes button press actions and sends signal to the process if
370 requested or performs cut and paste operations
371 if the current console is a text interface.
372 .It Dv MOUSE_BUTTON_EVENT
374 specifies a button and its click count.
375 The console driver will
376 use this information for signal delivery if requested or
377 for cut and paste operations if the console is in text mode.
380 .Dv MOUSE_MOTION_EVENT
382 .Dv MOUSE_BUTTON_EVENT
383 are newer interface and are designed to be used together.
384 They are intended to replace functions performed by
391 .Bl -tag -width data -compact
406 represent movement of the mouse along respective directions.
408 tells the state of buttons.
409 It encodes up to 31 buttons in the bit 0 though
411 If a button is held down, the corresponding bit is set.
423 field specifies the signal to be delivered to the process.
425 one of the values defined in
429 field is currently unused.
441 field specifies a button number as in
443 Only one bit/button is set.
447 holds the click count: the number of times the user has clicked the button
453 .Bl -tag -width /dev/consolectl -compact
454 .It Pa /dev/consolectl
455 device to control the console
457 virtualized mouse driver
470 manual page example first appeared in
475 manual page was written by
476 .An John-Mark Gurney Aq gurney_j@efn.org
478 .An Kazutaka Yokota Aq yokota@FreeBSD.org .