blob: e518671eeaaebaaf31cd67ba61258a34f8572b87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// 7 december 2014
// TODO why doesn't this trigger on first show?
// TODO last few bits of the scrollbar series, that talk about WM_WINDOWPOSCHANGING and the metaphor
// TODO rename this to boot
HANDLER(resizeHandler)
{
WINDOWPOS *wp;
if (uMsg != WM_WINDOWPOSCHANGED)
return FALSE;
wp = (WINDOWPOS *) lParam;
if ((wp->flags & SWP_NOSIZE) != 0)
return FALSE;
updateTableWidth(t);
*lResult = 0;
return TRUE;
}
|