/* MOUSE.H 代码编写: 王家宝 最后更新日期: 2000.04.01
用途: 获取鼠标动作,对鼠标进行简单控制 */
#define DOUBLE_CLICK_TIME 4 /* define the double time as 1 second */ int MOUSE_VISIBLE=0; /*mouse cursor is showed or hide showed 1,hide 0*/
int MOUSE_THERE=0; /* if mouse have */ int MOUSENUM=2; /* the mouse key's numbers */ int BSTATE=0; /* the button's wherthe or not is pressed */ int CMX=0,CMY=0; /* the mouse's x coords,y coords */ int MOUSE_MOVED=0; unsigned char LBUTTON_DOWN=0, RBUTTON_DOWN=0, LBUTTON_UP=0, RBUTTON_UP=0; /* the each mouse button's status */
int MS_ARROW[32]={0x9fff,0x8fff,0x87ff,0x83ff,0x81ff,0x80ff,0x80ff,0x803f, 0x801f,0x800f,0x80ff,0x887f,0x987f,0xfc3f,0xfc3f,0xfe3f, 0x0000,0x2000,0x3000,0x3800,0x3c00,0x3e00,0x3f00,0x3f80, 0x3fc0,0x3e00,0x3600,0x2300,0x0300,0x0180,0x0180,0x0000 }; /* set mouse cursor "^\" */ int MS_IBEAM[32]={0xe187,0xe007,0xfc3f,0xfc3f,0xfc3f,0xfc3f,0xfc3f,0xfc3f, 0xfc3f,0xfc3f,0xfc3f,0xfc3f,0xfc3f,0xfc3f,0xe007,0xe187, 0x0000,0x0e70,0x0180,0x0180,0x0180,0x0180,0x0180,0x0180, 0x0180,0x0180,0x0180,0x0180,0x0180,0x0180,0x0e70,0x0000 }; /* set mouse cursor " I " */ int MS_WAIT[32]={0x8001,0xc003,0xc003,0xc003,0xc003,0xe007,0xf00f,0xf81f, 0xf81f,0xf00f,0xe007,0xc003,0xc003,0xc003,0xc003,0x8001, 0x7ffe,0x2004,0x2004,0x2004,0x2664,0x13c8,0x0990,0x0420, 0x0420,0x0990,0x13c8,0x27e4,0x2ff4,0x2ff4,0x2004,0x7ff3 }; /* set mouse cursor waitting cursor */ int MS_HAND[32]={0xf3ff,0xe1ff,0xe1ff,0xe1ff,0xe001,0xe000,0xe000,0xe000, 0x8000,0x0,0x0,0x0,0x0,0x0,0x8001,0xc003, 0xc00,0x1200,0x1200,0x1200,0x13fe,0x1249,0x1249,0x1249, 0x7249,0x9001,0x9001,0x9001,0x8001,0x8001,0x4002,0xeffc }; /* set hand cursor */ /* the above three num group is used by mouse function 9 */
extern void far event_handler(void); void pascal set_event_handler(int call_mask,void far( *location)()); void near event_processor(int event_status,int button_status,int x,int y); int reset_mouse(void); /* reset the mouse with the start num */ void mouse_shape(int shape[32],int hotx,int hoty); /* change the graphics mouse's shape */ void mouse_on(); /* turn on the mouse cursor */ void mouse_off(); /* turn off the mouse cursor */ void set_mouse_position(int x,int y); /* put the mouse position at x,y */ void reset_event_status(void); /* reset the LBUTTON_DOWN=0.... */ void InstallEvent(void); void set_mousex(int minx,int maxx); void set_mousey(int miny,int maxy); 
|