Search Results

2
votes
2answers
813 views

Linux/X11 input library without creating a window

Is there a good library to use for gathering user input in Linux from the mouse/keyboard/joystick that doesn't force you to create a visible window to do so? SDL lets you get user input in a reaso …
2
votes
4answers
2k views

How do you hide the mouse pointer under Linux/X11?

How do I hide the mouse pointer under X11? I would like to use the built in libraries in order to do this and not something like SDL (SDL_ShowCursor(0)) or glut (glutSetCursor(GLUT_CURSOR_NONE)). …
7
votes

C++ IDE for Linux?

Not to repeat an answer, but I think I can add a bit more. Slickedit is an excellent IDE. It supports large code-bases well wit …
3
votes

How do you hide the mouse pointer under Linux/X11?

I ended up using XDefineCursor like ephemient mentioned. The control application changed the default root window cursor and the other applications (which are under my control) inherited it. …