Hi,
I'm developing a painting application that needs support for Wacom tablet input and mouse input. The mouse part is working very well, but the Wacom tablet has a lot of drag.
I have used qDebug to see the event info, and the problem is that Wacom sends a lot of events, and the mouse sends very few. It is like the mouse events are generated when the application requests them (idle?) while the wacom tablet events are sent like every x milliseconds and placed in a list...
This is what the mouse list looks like:
Mouse.Press : 200, 476
Mouse.Move : 200, 476
Mouse.Move : 210, 476
Mouse.Move : 220, 476
Mouse.Release : 220, 476
And this is what the tablet list looks like:
Tablet.Press : 200, 476
Tablet.Move : 200, 476
Tablet.Move : 200, 476
Tablet.Move : 200, 476
Tablet.Move : 200, 476
Tablet.Move : 201, 476
Tablet.Move : 201, 476
Tablet.Move : 201, 476
Tablet.Move : 202, 476
Tablet.Move : 202, 476
Tablet.Move : 202, 476
Tablet.Move : 202, 476
Tablet.Release : 202, 476
So, my question is... is there a way to clear this list or eliminate all QXXXEvent events from the event loop.
Thank you!
Bookmarks