I've got an old python program that I'm trying to port to java for practice. Basically, it records mouse movements/clicks as I go about my general computing, and then draws the activity onto a kind of heat map.
I'm currently using the PyHooks library with Python to grab the mouse events. Is there anything similar in Java? How does one go about checking for mouse clicks without it being bound to a specific GUI component?
Note that this doesn't need to be cross platform. I'm only looking for a Windows solution.