vote up 2 vote down star

I'm developing a custom autocomplete control in pure WinApi, and the problem that I've encountered is that I don't know how to hide the popup window when clicked outside of the control (e.g. emulate the combobox dropdown behavior). How is it usually implemented? Should I use mouse capture? Thanks.

UPD: Tracking keyboard focus doesn't fit the bill since dragging the parent window around should also hide the dropdown.

UPD: Mouse capture doesn't work because it "captures mouse input either when the mouse is over the capturing window, or when the mouse button was pressed while the mouse was over the capturing window and the button is still down".

flag

80% accept rate
I just realized that my answer is incorrect because the popup need not have focus in the first place. – Agnel Kurian May 13 at 10:23
That's right, the focus stays in the edit control. – Alex Jenter May 13 at 10:25

2 Answers

vote up 0 vote down

Autocomplete is native in Win32 api (Shell)
You don't need code.
(For source code of Windows Shell Autocomplete, see on Win32 group )

link|flag
it can't do autocomplete for separate words – Alex Jenter May 14 at 15:53
vote up 2 vote down check

After reading this article I now believe that using SetWindowsHookEx and a WH_MOUSE hook is the way to go.

But maybe there is a simpler solution?

link|flag

Your Answer

Get an OpenID
or

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