xref: /netbsd/sys/arch/shark/include/mouse.h (revision bf9ec67e)
1 /*	$NetBSD: mouse.h,v 1.2 2002/04/19 01:43:49 wiz Exp $	*/
2 
3 /*
4  * Copyright (c) Mark Brinicombe 1996 All rights reserved
5  * Copyright (c) Scott Stevens 1995 All rights reserved
6  * Copyright (c) Melvin Tang-Richardson 1995 All rights reserved
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *	This product includes software developed by the RiscBSD team.
19  * 4. The name of the author may not be used to endorse or promote products
20  *    derived from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 /*
35 #define MOUSE_BUTTON_RIGHT  0x10
36 #define MOUSE_BUTTON_MIDDLE 0x20
37 #define MOUSE_BUTTON_LEFT   0x40
38 */
39 
40 /* Used in opms.c */
41 
42 #define BUTSTATMASK	0x07	/* Any mouse button down if any bit set */
43 #define BUTCHNGMASK	0x38	/* Any mouse button changed if any bit set */
44 
45 #define BUT3STAT	0x01	/* Button 3 down if set */
46 #define BUT2STAT	0x02	/* Button 2 down if set */
47 #define BUT1STAT	0x04	/* Button 1 down if set */
48 #define BUT3CHNG	0x08	/* Button 3 changed if set */
49 #define BUT2CHNG	0x10	/* Button 2 changed if set */
50 #define BUT1CHNG	0x20	/* Button 1 changed if set */
51 #define MOVEMENT	0x40	/* Mouse movement detected */
52 #define IOC_ACK		0x80	/* Acknowledge an ioctl */
53 
54 /* Define user visible mouse structures */
55 
56 struct mouseinfo {
57 	u_int status;
58 	int xmotion, ymotion;
59 };
60 
61 struct mousebufrec {
62 	int status;
63 	int x,y;
64 	struct timeval event_time;
65 };
66 
67 struct mouse_state {
68 	signed short x, y;
69 	int buttons;
70 };
71 
72 struct mouse_boundingbox {
73 	int x, y, a, b;
74 };
75 
76 struct mouse_origin {
77 	int x, y;
78 };
79 
80 /* Define mouse ioctls + associated data */
81 
82 #define MOUSEIOC_WRITEX		_IO ( 'M', 100 )
83 #define MOUSEIOC_WRITEY		_IO ( 'M', 101 )
84 
85 #define MOUSEIOC_SETSTATE	_IOW ( 'M', 102, struct mouse_state )
86 #define MOUSEIOC_SETBOUNDS	_IOW ( 'M', 103, struct mouse_boundingbox )
87 #define MOUSEIOC_SETORIGIN	_IOW ( 'M', 104, struct mouse_origin )
88 
89 #define MOUSEIOC_GETSTATE	_IOR ( 'M', 105, struct mouse_state )
90 #define MOUSEIOC_READ		MOUSEIOC_GETSTATE
91 #define MOUSEIOC_GETBOUNDS	_IOR ( 'M', 106, struct mouse_boundingbox )
92 #define MOUSEIOC_GETORIGIN	_IOR ( 'M', 107, struct mouse_origin )
93 
94 #define MOUSEIOC_SETMODE	_IO ( 'M', 108 )
95 #define MOUSEMODE_ABS		0x00
96 #define MOUSEMODE_REL		0x01
97 /* End of mouse.h */
98