1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /*
- * This file is part of the UCB release of Plan 9. It is subject to the license
- * terms in the LICENSE file found in the top-level directory of this
- * distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
- * part of the UCB release of Plan 9, including this file, may be copied,
- * modified, propagated, or distributed except according to the terms contained
- * in the LICENSE file.
- */
- typedef struct Cursor Cursor;
- typedef struct Event Event;
- typedef struct Menu Menu;
- enum
- {
- Emouse = 1,
- Ekeyboard = 2,
- };
- enum
- {
- MAXSLAVE = 32,
- EMAXMSG = 128+8192, /* size of 9p header+data */
- };
- struct Mouse
- {
- int buttons; /* bit array: LMR=124 */
- Point xy;
- u32 msec;
- };
- struct Event
- {
- int kbdc;
- Mouse mouse;
- int n; /* number of characters in message */
- void *v; /* data unpacked by general event-handling function */
- u8 data[EMAXMSG]; /* message from an arbitrary file descriptor */
- };
- struct Menu
- {
- char **item;
- char *(*gen)(int);
- int lasthit;
- };
- /*
- * Events
- */
- extern void einit(u32);
- extern u32 estart(u32, int, int);
- extern u32 estartfn(u32, int, int,
- int (*fn)(int, Event*, u8*, int));
- extern u32 etimer(u32, int);
- extern u32 event(Event*);
- extern u32 eread(u32, Event*);
- extern Mouse emouse(void);
- extern int ekbd(void);
- extern int ecanread(u32);
- extern int ecanmouse(void);
- extern int ecankbd(void);
- extern void eresized(int); /* supplied by user */
- extern int emenuhit(int, Mouse*, Menu*);
- extern int eatomouse(Mouse*, char*, int);
- extern Rectangle getrect(int, Mouse*);
- extern void esetcursor(Cursor*);
- extern void emoveto(Point);
- extern Rectangle egetrect(int, Mouse*);
- extern void edrawgetrect(Rectangle, int);
- extern int ereadmouse(Mouse*);
- extern int eatomouse(Mouse*, char*, int);
|