Link to home
Start Free TrialLog in
Avatar of Voltus_WoW
Voltus_WoW

asked on

Owner Draw CButton Not Relinquishing Press State

I've created an owner-drawn CButton class to do custom painting including a hover state.  I've added tooltip functionality as well.  Everything works correctly, except if I select the button with the left mouse, then before releasing the left mouse, I move the cursor off the button.  I would expect the button to unselect, similar to standard windows buttons.  When I release the left mouse, the button selects no matter where the cursor is located on the screen (it can even be over a different application).

In my code, I'm checking the LPDRAWITEMSTRUCT object for disabled, selected, and focus states to paint the correct button state.  Additionally, I maintain a m_bHovering bool to tell me when I'm hovering over a button.  All states work correctly, and the button paints exactly how I want it to.

My problem is what I mentioned above, I can't get the button to "disengage" once it has been selected with the mouse.  Once it has received the left mouse down message, that button is going to get selected eventually (once the left button is released), even if I don't want it to.

It doesn't seem like a painting issue to me.  Functionally, I add the BS_OWNERDRAW style in PreCreateWindow().  In OnCreate() I create the tooltip control and create some fonts. I do handle OnKeyDown(), and it sends a message to it's parent. Otherwise, the remainder of the code does tooltip stuff, and painting stuff.

Thanks for any help...
ASKER CERTIFIED SOLUTION
Avatar of DanRollins
DanRollins
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Voltus_WoW
Voltus_WoW

ASKER

The answer definitely pointed me in the direction I needed.  I found out that the we overrode the MouseMove event handler but failed to call the base class functionality.