vote up 6 vote down star
3

I would like to know how long it's been since the user last hit a key or moved the mouse - not just in my application, but on the whole "computer" (i.e. display), in order to guess whether they're still at the computer and able to observe notifications that pop up on the screen.

I'd like to do this purely from (Py)GTK+, but I am amenable to calling platform-specific functions. Ideally I'd like to call functions which have already been wrapped from Python, but if that's not possible, I'm not above a little bit of C or ctypes code, as long as I know what I'm actually looking for.

On Windows I think the function I want is GetLastInputInfo, but that doesn't seem to be wrapped by pywin32; I hope I'm missing something.

flag

50% accept rate

2 Answers

vote up 0 vote down

Gajim does it this way on Windows, OS X and GNU/Linux (and other *nixes):

  1. Python wrapper module (also includes Windows idle time detection code, using GetTickCount with ctypes);
  2. C module to get X11 idle time (using XScreenSaverQueryInfo);
  3. C module to get OS X idle time (using HIDIdleTime system property).
link|flag
vote up 2 vote down

I got an answer regarding mouse-clicks suggesting to use pyHook:

http://stackoverflow.com/questions/165495/detecting-mouse-clicks-in-windows-using-python

Here's some other code I did to detect mouse-position via ctypes: http://monkut.webfactional.com/blog/archive/2008/10/2/python-win-mouse-position

A more round-about method to accomplish this would be via screen capture and comparing any change in images using PIL.

http://www.wellho.net/forum/Programming-in-Python-and-Ruby/Python-Imaging-Library-PIL.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.