In Windows XP and above, given a window handle (HWND), how can I tell if the window position and size leaves the window irretrievably off screen? For example, if the title bar is available to the cursor, then the window can be dragged back on screen. I need to discover if the window is in fact visible or at least available to the user. I guess I also need to know how to detect and respond to resolution changes and how to deal with multiple monitors. This seems like a fairly big deal. I'm using C++ and the regular SDK, so please limit your answers to that platform rather than invoking C# or similar.
|
Windows makes it relatively simple to determine the size of a user's working area on the primary monitor (i.e., the area of the screen not obscured by the taskbar). Call the Once you've got the coordinates that describe the working area, it's a simple matter of comparing those to the current position of your application's window to determine if it lies within those bounds.
To do this right, you'll need to enumerate all of the monitors a user has connected to the system and retrieve the working area of each using There are a few samples of this to be found around the Internet:
|
|||||||||||
|
|
Visibility check is really easy.
You don't have to use RectInRegion, I used for shorten code. Display, resolution change monitoring is also easy if you handle WM_SETTINGCHANGE message. http://msdn.microsoft.com/en-us/library/ms725497(v=vs.85).aspx UPDATE As @Cody Gray noted, I think WM_DISPLAYCHANGE is more appropriate than WM_SETTINGCHANGE. But MFC 9.0 library make use of WM_SETTINGCHANGE. |
||||
|
|