blob: d29d3b203bd05419ce5cede143f0c096772289ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// 8 december 2014
HANDLER(apiHandlers)
{
switch (uMsg) {
case WM_SETFONT:
// TODO release old font?
t->font = (HFONT) wParam;
SendMessageW(t->header, WM_SETFONT, wParam, lParam);
// TODO reposition header?
// TODO how to properly handle LOWORD(lParam) != FALSE?
*lResult = 0;
return TRUE;
case WM_GETFONT:
*lResult = (LRESULT) (t->font);
return TRUE;
case tableAddColumn:
// TODO
return FALSE;
}
return FALSE;
}
|