andlabs-ui/wintable/new/resize.h

21 lines
445 B
C
Raw Normal View History

// 7 december 2014
// TODO why doesn't this trigger on first show?
2014-12-07 19:48:09 -06:00
// TODO last few bits of the scrollbar series, that talk about WM_WINDOWPOSCHANGING and the metaphor
2014-12-07 19:48:32 -06:00
// 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;
repositionHeader(t);
recomputeHScroll(t);
*lResult = 0;
return TRUE;
}