Is it possible to know what application is in focus using Qt ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You'll need to use some Win32 API functions. Mainly GetActiveWindow(). Search MSDN for the function. |
|||
|
|
|
I'm not sure about other apps, but you can tell whether your own application has the focus or not by checking for a 0 result from QApplication::activeWindow. |
|||
|
|