summaryrefslogtreecommitdiff
path: root/wintable/resize.h
blob: ae669e3c7cf482b9083dc11d35e8055367214942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 7 december 2014

// TODO why doesn't this trigger on first show?
// TODO see if there's anything not metaphor related in the last bits of the scrollbar series
// TODO rename this to boot
// TODO merge with update.h?

HANDLER(resizeHandler)
{
	WINDOWPOS *wp;

	if (uMsg != WM_WINDOWPOSCHANGED)
		return FALSE;
	wp = (WINDOWPOS *) lParam;
	if ((wp->flags & SWP_NOSIZE) != 0)
		return FALSE;
	update(t, TRUE);
	*lResult = 0;
	return TRUE;
}