andlabs-ui/wintable/new/resize.h

22 lines
558 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;
2014-12-11 19:37:38 -06:00
// this will call repositionHeader(); there's a good reason... (see comments)
// TODO when I clean that mess up, remove this comment
updateTableWidth(t);
*lResult = 0;
return TRUE;
}