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