Tagged Questions
1
vote
1answer
96 views
error: ‘BadDevice’ was not declared in this scope
any idea why I would be getting this error?:
error: ‘BadDevice’ was not declared in this scope
I have included:
#include <X11/Xlib.h>
and
#include <X11/extensions/XInput2.h>
in my ...
0
votes
0answers
63 views
Sending XI2 GenericEvents using XSendEvent
Im trying to send XI_TouchBegin, XI_TouchUpdate and XI_TouchEnd using XSendEvent method to a client window, but im not able to receive at the client end. Where as im receiving events if i send ...
0
votes
1answer
52 views
Second Cursor is not triggering a screen refresh
I previously posted about controlling two separate cursors in two xsessions. (http://stackoverflow.com/questions/13714831/controlling-multiple-pointers-with-xlib-or-xinput-in-ubuntu-linux)
That ...
1
vote
1answer
188 views
Controlling multiple pointers with Xlib or xinput in ubuntu/linux
I'm creating a system that uses multiple cursors (pointers) in multiple xsessions. My computer has multiple video cards in it for controlling different monitors. I want to have a different cursor on ...
1
vote
1answer
283 views
How to get raw mouse events with XI2 extension?
I'm using XISelectEvents for root window with deviceid=XIAllDevices and mask=XI_RawMotion, but I don't get any events. What's wrong?