How determine if mouse points to(hover on) maximise button of window even if this window is not of my application. Is there API for that ?

link|improve this question

60% accept rate
What programming language are you talking about? – Vini-T Feb 1 at 20:36
added tags, C# preferable – diimdeep Feb 1 at 20:40
GetTitleBarInfo looks very promising. – Raymond Chen Feb 1 at 21:18
@Raymond, that API appears to only tell whether the button is visible or pressed, but not whether the mouse is merely hovering over the button. – Rob Kennedy Feb 1 at 22:38
valdo's got your answer, but this sounds suspiciously like an XY problem to me. I'm sure there's a better way than the proposed solution you've invented. – Cody Gray Feb 2 at 4:30
show 3 more comments
feedback

1 Answer

up vote 4 down vote accepted

You may send a WM_NCHITTEST to that window. The return value will correspond to the object type on the requested coordinates.

Something like this:

bool IsMouseOverMaxBtn(HWND hWnd)
{
    POINT pt;
    VERIFY(GetCursorPos(&pt)); // get mouse position

    int retVal = SendMessage(hWnd, WM_NCHITTEST, 0, MAKELONG(pt.x, pt.y));

    return HTMAXBUTTON == retVal;
}

Edit:

You may send this message to any window (not necessarily belong to your thread/process). Since no pointers are involved (such as string pointers) - there's no problem.

However you should note that sending (not posting) a message to a window belonging to another thread is a pretty heavy operation, during which your thread is suspended. There may even happen a situation where your thread hangs, because the thread of the application that serves that window hangs.

You may consider using SendMessageTimeout to guarantee your thread won't hang.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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