2015-05-20 21:46:50 -05:00
|
|
|
// 20 may 2015
|
|
|
|
#include "uipriv_windows.h"
|
|
|
|
|
2015-05-21 10:02:10 -05:00
|
|
|
// In each of these structures, hwnd is the hash key.
|
2015-05-20 21:46:50 -05:00
|
|
|
|
|
|
|
struct commandHandler {
|
|
|
|
HWND hwnd;
|
2015-05-21 13:52:21 -05:00
|
|
|
BOOL (*handler)(uiControl *, HWND, WORD, LRESULT *);
|
2015-05-20 21:46:50 -05:00
|
|
|
uiControl *c;
|
2015-05-21 10:02:10 -05:00
|
|
|
UT_hash_handle hh;
|
2015-05-20 21:46:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
struct notifyHandler {
|
|
|
|
HWND hwnd;
|
2015-05-21 13:52:21 -05:00
|
|
|
BOOL (*handler)(uiControl *, HWND, NMHDR *, LRESULT *);
|
2015-05-20 21:46:50 -05:00
|
|
|
uiControl *c;
|
2015-05-21 10:02:10 -05:00
|
|
|
UT_hash_handle hh;
|
2015-05-20 21:46:50 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
struct hscrollHandler {
|
|
|
|
HWND hwnd;
|
2015-05-21 13:52:21 -05:00
|
|
|
BOOL (*handler)(uiControl *, HWND, WORD, LRESULT *);
|
2015-05-20 21:46:50 -05:00
|
|
|
uiControl *c;
|
2015-05-21 10:02:10 -05:00
|
|
|
UT_hash_handle hh;
|
2015-05-20 21:46:50 -05:00
|
|
|
};
|
|
|
|
|
2015-05-21 10:02:10 -05:00
|
|
|
struct commandHandler *commandHandlers = NULL;
|
|
|
|
struct notifyHandler *notifyHandlers = NULL;
|
|
|
|
struct hscrollHandler *hscrollHandlers = NULL;
|
2015-05-20 21:46:50 -05:00
|
|
|
|
2015-05-21 10:29:25 -05:00
|
|
|
#define REGFN(WM_MESSAGE, message, params) \
|
|
|
|
void uiWindowsRegister ## WM_MESSAGE ## Handler(HWND hwnd, BOOL (*handler)params, uiControl *c) \
|
|
|
|
{ \
|
|
|
|
struct message ## Handler *ch; \
|
|
|
|
HASH_FIND_PTR(message ## Handlers, &hwnd, ch); \
|
|
|
|
if (ch != NULL) \
|
|
|
|
complain("window handle %p already subscribed with a %s handler in uiWindowsRegister%sHandler()", hwnd, #WM_MESSAGE, #WM_MESSAGE); \
|
|
|
|
ch = uiNew(struct message ## Handler); \
|
|
|
|
ch->hwnd = hwnd; \
|
|
|
|
ch->handler = handler; \
|
|
|
|
ch->c = c; \
|
|
|
|
HASH_ADD_PTR(message ## Handlers, hwnd, ch); \
|
|
|
|
}
|
2015-05-21 13:52:21 -05:00
|
|
|
REGFN(WM_COMMAND, command, (uiControl *, HWND, WORD, LRESULT *))
|
|
|
|
REGFN(WM_NOTIFY, notify, (uiControl *, HWND, NMHDR *, LRESULT *))
|
|
|
|
REGFN(WM_HSCROLL, hscroll, (uiControl *, HWND, WORD, LRESULT *))
|
2015-05-20 21:46:50 -05:00
|
|
|
|
2015-05-21 10:29:25 -05:00
|
|
|
#define UNREGFN(WM_MESSAGE, message) \
|
|
|
|
void uiWindowsUnregister ## WM_MESSAGE ## Handler(HWND hwnd) \
|
|
|
|
{ \
|
|
|
|
struct message ## Handler *ch; \
|
|
|
|
HASH_FIND_PTR(message ## Handlers, &hwnd, ch); \
|
|
|
|
if (ch == NULL) \
|
|
|
|
complain("window handle %p not registered with a %s handler in uiWindowsUnregister%sHandler()", hwnd, #WM_MESSAGE, #WM_MESSAGE); \
|
|
|
|
HASH_DEL(message ## Handlers, ch); \
|
|
|
|
uiFree(ch); \
|
|
|
|
}
|
|
|
|
UNREGFN(WM_COMMAND, command)
|
|
|
|
UNREGFN(WM_NOTIFY, notify)
|
|
|
|
UNREGFN(WM_HSCROLL, hscroll)
|
2015-05-20 21:46:50 -05:00
|
|
|
|
2015-05-21 13:52:21 -05:00
|
|
|
#define RUNFN(WM_MESSAGE, message, gethwnd, arg3) \
|
2015-05-21 10:29:25 -05:00
|
|
|
BOOL run ## WM_MESSAGE(WPARAM wParam, LPARAM lParam, LRESULT *lResult) \
|
|
|
|
{ \
|
|
|
|
HWND control; \
|
|
|
|
struct message ## Handler *ch;\
|
|
|
|
/* bounce back to the control in question */ \
|
|
|
|
/* don't bounce back if to the utility window, in which case act as if the message was ignored */ \
|
|
|
|
control = gethwnd; \
|
|
|
|
if (control != NULL && IsChild(utilWindow, control) == 0) { \
|
|
|
|
HASH_FIND_PTR(message ## Handlers, &control, ch); \
|
|
|
|
if (ch != NULL) \
|
2015-05-21 13:52:21 -05:00
|
|
|
return (*(ch->handler))(ch->c, control, arg3, lResult); \
|
2015-05-21 10:29:25 -05:00
|
|
|
/* not registered; fall out to return FALSE */ \
|
|
|
|
} \
|
|
|
|
return FALSE; \
|
2015-05-20 21:46:50 -05:00
|
|
|
}
|
2015-05-21 10:29:25 -05:00
|
|
|
RUNFN(WM_COMMAND, command,
|
|
|
|
(HWND) lParam,
|
|
|
|
HIWORD(wParam))
|
|
|
|
RUNFN(WM_NOTIFY, notify,
|
|
|
|
((NMHDR *) lParam)->hwndFrom,
|
|
|
|
((NMHDR *) lParam))
|
|
|
|
RUNFN(WM_HSCROLL, hscroll,
|
|
|
|
(HWND) lParam,
|
|
|
|
LOWORD(wParam))
|