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