Hello, I'm new to Qt. I'd like a window to follow the mouse around the screen. (It's a useful aid to reading)
The best I can come up with is a timer that uses QPoint QCursor::pos() to move the window every .1 seconds.
Rather than spinning this timer constantly, is there an event system I can tap into? This would look smoother, and use less computer.
Is there a better way?
Thanks,
Mike