How to detect inactive (idle) user in Windows application? I'd like to shutdown application when there hasn't been any input (keyboard, mouse) from user for certain period of time.
feedback
|
|
To track a user's idle time you could hook keyboard and mouse activity. Note, however, that installing a system-wide message hook is a very invasive thing to do and should be avoided if possible, since it will require your hook DLL to be loaded into all processes. Another solution is to use the GetLastInputInfo API function (if your application is running on Win2000 (and up) machines). GetLastInputInfo retrieves the time (in milliseconds) of the last input event (when the last detected user activity has been received, be it from keyboard or mouse). Here's a simple example. The SecondsIdle function returns a number of second with no user activity (called in an OnTimer event of a TTimer component).
| |||
|
feedback
|
|
Your application will get a Edit: looking at the comments, it appears that you don't care about whether the user is inative, but rather whether your application is inactive. This is easy. If your app is minimized, then the user isn't interacting with it. If your app is not the foreground application, that's a good inicator as well. You could also pay attention to messages in your pump to notice if there have been any user input messages to your app, In C++ adding code to the pump is trivial, in delphi you can | |||||||||
feedback
|
|
You might want to see the answer to this question: How to tell when Windows is inactive [1] it is basically same question the solution suggested is to use the This post explains some aspects as well: (The Code Project) How to check for user inactivity with and without platform invokes in C# [3] [1] http://stackoverflow.com/questions/203384/how-to-tell-when-windows-is-inactive | ||||
|
feedback
|