Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I get the current mouse (pointer) position co-ordinates in X

Tags:

This can either be some sample C code or a utility that will show me either gui or on the console it doesn't matter, but I have to be able to "command" it to grab the co-ordinates at an exact time which makes xev not very useful (that I could figure out).

like image 472
user376403 Avatar asked Aug 27 '10 15:08

user376403


People also ask

How do I find my mouse pointer coordinates?

The clientX property returns the horizontal coordinate (according to the client area) of the mouse pointer when a mouse event was triggered. The client area is the current window. Tip: To get the vertical coordinate (according to the client area) of the mouse pointer, use the clientY property.

How do I get current mouse position in C++?

You get the cursor position by calling GetCursorPos . This returns the cursor position relative to screen coordinates.

What method do you use to get the mouse point position for a mouse event?

getPointerInfo(). getLocation() might be helpful. It returns a Point object corresponding to current mouse position. getPointerInfo().


2 Answers

I'm not a C programmer by any means but I looked at a couple of online tutorials and think this is how you are supposed to read the current mouse position. This is my own code and I'd done nothing with Xlib before so it could be completely broken (for example, the error handler shouldn't just do nothing for every error) but it works. So here is another solution:

#include <X11/Xlib.h> #include <assert.h> #include <unistd.h> #include <stdio.h> #include <malloc.h>  static int _XlibErrorHandler(Display *display, XErrorEvent *event) {     fprintf(stderr, "An error occured detecting the mouse position\n");     return True; }  int main(void) {     int number_of_screens;     int i;     Bool result;     Window *root_windows;     Window window_returned;     int root_x, root_y;     int win_x, win_y;     unsigned int mask_return;      Display *display = XOpenDisplay(NULL);     assert(display);     XSetErrorHandler(_XlibErrorHandler);     number_of_screens = XScreenCount(display);     fprintf(stderr, "There are %d screens available in this X session\n", number_of_screens);     root_windows = malloc(sizeof(Window) * number_of_screens);     for (i = 0; i < number_of_screens; i++) {         root_windows[i] = XRootWindow(display, i);     }     for (i = 0; i < number_of_screens; i++) {         result = XQueryPointer(display, root_windows[i], &window_returned,                 &window_returned, &root_x, &root_y, &win_x, &win_y,                 &mask_return);         if (result == True) {             break;         }     }     if (result != True) {         fprintf(stderr, "No mouse found.\n");         return -1;     }     printf("Mouse is at (%d,%d)\n", root_x, root_y);      free(root_windows);     XCloseDisplay(display);     return 0; } 
like image 67
user376403 Avatar answered Oct 14 '22 00:10

user376403


xdotool might be the best tool for this.

For C, you can use libxdo.

like image 25
Tormod Volden Avatar answered Oct 14 '22 00:10

Tormod Volden