I'm coding a custom background non rectangular window with buttons such as minimize and close in bitmaps. Here is my code just for now The problem is the custom window does not receive mouse messages while hovering over non zero alpha regions.

link|improve this question

79% accept rate
1  
It doesn't compile. Bye. – Hans Passant Aug 15 '10 at 0:26
feedback

2 Answers

up vote 1 down vote accepted

Since minimize and close buttons are outside window client area, you need to capture WM_NCLBUTTONUP in addition to WM_LBUTTONUP

link|improve this answer
I see. Since I'm almost always returning HTCAPTION in WM_NCHITTEST, I need to process non-client mouse messages. But I'm now having problem with WM_NCLBUTTONUP - it's triggered only after double click on the window. Is it OS specific? I have Win XP SP3. I saw a solution for this problem involving SetWindowsHook for mouse messages, but it's rather ugly. – vian Aug 16 '10 at 15:22
There is a difference between WM_NCLBUTTONUP and WM_LBUTTONUP. From MSDN WM_LBUTTONUP: If the mouse is not captured, the message is posted to the window beneath the cursor. Otherwise, the message is posted to the window that has captured the mouse. WM_NCLBUTTONUP: If a window has captured the mouse, this message is not posted. – mmonem Aug 17 '10 at 3:13
feedback

What is the difference between the client and non-client areas? A window is divided into two main areas:?
The non-client area, which contains the border, menus, and caption area for the window. ? The client area, which is the area that is left over, also known as the "main" part of the window. Client Area:

The area in which we can do/write/draw something. ex: while space that we can see when an application is created.

Non Client Area:

Where We can't do anything. example: like menu bar, status bar, scroll bar, title bar, etc.,

From Jaivinder Kumar village Abheypur P.O. Damdama Distt.gurgaon(HR) MSc. Mob9050730063

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.