Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
35
Src/Plugins/Library/ml_wire/MessageProcessor.h
Normal file
35
Src/Plugins/Library/ml_wire/MessageProcessor.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
#ifndef NULLSOFT_ML_WIRE_MESSAGEPROCESSOR_H
|
||||
#define NULLSOFT_ML_WIRE_MESSAGEPROCESSOR_H
|
||||
|
||||
#include <api/application/api_messageprocessor.h>
|
||||
#include "main.h"
|
||||
#ifndef WM_FORWARDMSG
|
||||
#define WM_FORWARDMSG 0x037F
|
||||
#endif
|
||||
|
||||
class MessageProcessor : public api_messageprocessor
|
||||
{
|
||||
public:
|
||||
bool ProcessMessage(MSG *msg)
|
||||
{
|
||||
|
||||
if (msg->message < WM_KEYFIRST || msg->message > WM_KEYLAST)
|
||||
return false;
|
||||
|
||||
HWND hWndCtl = ::GetFocus();
|
||||
|
||||
if (IsChild(browserHWND, hWndCtl))
|
||||
{
|
||||
// find a direct child of the dialog from the window that has focus
|
||||
while(::GetParent(hWndCtl) != browserHWND)
|
||||
hWndCtl = ::GetParent(hWndCtl);
|
||||
|
||||
if (activeBrowser->translateKey(*msg))
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
protected:
|
||||
RECVS_DISPATCH;
|
||||
};
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue