[ Maverik Level 3 functions ]
mav_gfxWindowPointerGet
Summary
Query the position of the mouse.
Syntax
int mav_gfxWindowPointerGet(int id, int *x, int *y, int *rx, int
*ry);
- int id
Identifies the window to measure position relative to.
- int *x
Returns horizontal position relative window id.
- int *y
Returns vertical position relative window id.
- int *rx
Returns horizontal position relative to root window.
- int *ry
Returns vertical position relative to root window.
Description
This function polls the mouse for its position and returns the data in the
arguments
described above.
Back to the index page.