Home | History | Annotate | Line # | Download | only in include
      1 /*	$NetBSD: mouse.h,v 1.3 2015/09/07 03:49:45 dholland 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 #include <sys/ioccom.h>
     35 
     36 /*
     37 #define MOUSE_BUTTON_RIGHT  0x10
     38 #define MOUSE_BUTTON_MIDDLE 0x20
     39 #define MOUSE_BUTTON_LEFT   0x40
     40 */
     41 
     42 /* Used in opms.c */
     43 
     44 #define BUTSTATMASK	0x07	/* Any mouse button down if any bit set */
     45 #define BUTCHNGMASK	0x38	/* Any mouse button changed if any bit set */
     46 
     47 #define BUT3STAT	0x01	/* Button 3 down if set */
     48 #define BUT2STAT	0x02	/* Button 2 down if set */
     49 #define BUT1STAT	0x04	/* Button 1 down if set */
     50 #define BUT3CHNG	0x08	/* Button 3 changed if set */
     51 #define BUT2CHNG	0x10	/* Button 2 changed if set */
     52 #define BUT1CHNG	0x20	/* Button 1 changed if set */
     53 #define MOVEMENT	0x40	/* Mouse movement detected */
     54 #define IOC_ACK		0x80	/* Acknowledge an ioctl */
     55 
     56 /* Define user visible mouse structures */
     57 
     58 struct mouseinfo {
     59 	u_int status;
     60 	int xmotion, ymotion;
     61 };
     62 
     63 struct mousebufrec {
     64 	int status;
     65 	int x,y;
     66 	struct timeval event_time;
     67 };
     68 
     69 struct mouse_state {
     70 	signed short x, y;
     71 	int buttons;
     72 };
     73 
     74 struct mouse_boundingbox {
     75 	int x, y, a, b;
     76 };
     77 
     78 struct mouse_origin {
     79 	int x, y;
     80 };
     81 
     82 /* Define mouse ioctls + associated data */
     83 
     84 #define MOUSEIOC_WRITEX		_IO ( 'M', 100 )
     85 #define MOUSEIOC_WRITEY		_IO ( 'M', 101 )
     86 
     87 #define MOUSEIOC_SETSTATE	_IOW ( 'M', 102, struct mouse_state )
     88 #define MOUSEIOC_SETBOUNDS	_IOW ( 'M', 103, struct mouse_boundingbox )
     89 #define MOUSEIOC_SETORIGIN	_IOW ( 'M', 104, struct mouse_origin )
     90 
     91 #define MOUSEIOC_GETSTATE	_IOR ( 'M', 105, struct mouse_state )
     92 #define MOUSEIOC_READ		MOUSEIOC_GETSTATE
     93 #define MOUSEIOC_GETBOUNDS	_IOR ( 'M', 106, struct mouse_boundingbox )
     94 #define MOUSEIOC_GETORIGIN	_IOR ( 'M', 107, struct mouse_origin )
     95 
     96 #define MOUSEIOC_SETMODE	_IO ( 'M', 108 )
     97 #define MOUSEMODE_ABS		0x00
     98 #define MOUSEMODE_REL		0x01
     99 /* End of mouse.h */
    100