Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Below is my message filter:

bool MyFilter::PreFilterMessage(Message %m){
    switch(m.Msg){
    case WM_CLOSE:
    case WM_DESTROY:
    case WM_NCDESTROY:
    case WM_QUIT:
    	Debug::WriteLine(L"Gone!");
    	break;
    case WM_MOUSEMOVE:
    	Debug::WriteLine(L"A mouse! Catch! Catch!!! CATCH!!");
    	break;
    }
    return false;
}

I verified that I am filtering most messages without a problem. However, I am not receiving any messages dispatched after the window's close button is clicked (WM_CLOSE, WM_DESTROY, WM_NCDESTROY and WM_QUIT). Why is this?

share|improve this question

1 Answer

up vote 5 down vote accepted

IMessageFilter.PreFilterMessage() is only called for messages in the message queue. Messages like WM_CLOSE are sent directly to WndProc() with SendMessage(), they bypass the queue. You also won't get messages like WM_ACTIVATE, WM_GETTEXT, etc. Input events, that's about it.

share|improve this answer
What about WM_LBUTTONDOWN? And where can I find out which messages are sent directly to the WndProc and which ones are posted to the message queue? – Agnel Kurian Mar 25 '09 at 9:00
WM_LBUTTONDOWN is usually posted, not sent. It depends on the code generating the message. – Hans Passant Mar 25 '09 at 14:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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