I thought this would be easy to find, but a google search has been very unhelpful. Is there a simple api to change the mouse cursor in your X window? (I know in windows you can just call "SetCursor")

link|improve this question

Have you looked at man Xcursor? – Troubadour Aug 27 '10 at 11:45
I started reading that, but it's still very hard to get good info. All I want to do is something like "SetCursor(hand)" and "SetCursor(arrow)". Is there an example on how to do this somewhere? – Chris Aug 27 '10 at 11:58
I would not touch X directly. Why not Qt, WX, Gtk or something? – Johannes Schaub - litb Aug 27 '10 at 11:59
feedback

2 Answers

up vote 2 down vote accepted
#include <X11/cursorfont.h>

/* ... */

Cursor c;

c = XCreateFontCursor(dpy, XC_xterm); 
XDefineCursor(dpy, w, c);

Where dpy is your display, w is your window and XC_xterm is a constant defining the shape of your cursor. Here's a list of available cursor shape, along with images.

link|improve this answer
feedback

Looks like the equivalent of a SetCursor call is XDefineCursor. You can get a Cursor id by calling XCreateFontCursor and passing in one of the shapes from X11/cursorfont.h.

link|improve this answer
There's more details on these at tronche.com/gui/x/xlib/pixmap-and-cursor/cursor.html – alanc Aug 27 '10 at 16:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.