libui/windows/container.cpp

109 lines
2.9 KiB
C++
Raw Normal View History

2015-05-14 12:42:28 -05:00
// 26 april 2015
#include "uipriv_windows.hpp"
2015-05-14 12:42:28 -05:00
2015-08-30 18:32:05 -05:00
// Code for the HWND of the following uiControls:
// - uiBox
// - uiRadioButtons
// - uiSpinbox
// - uiTab
2015-05-14 12:42:28 -05:00
2016-04-26 21:17:42 -05:00
struct containerInit {
uiWindowsControl *c;
void (*onResize)(uiWindowsControl *);
2016-04-26 21:17:42 -05:00
};
2015-05-14 12:42:28 -05:00
static LRESULT CALLBACK containerWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
RECT r;
HDC dc;
PAINTSTRUCT ps;
2016-04-26 21:17:42 -05:00
CREATESTRUCTW *cs = (CREATESTRUCTW *) lParam;
WINDOWPOS *wp = (WINDOWPOS *) lParam;
MINMAXINFO *mmi = (MINMAXINFO *) lParam;
2016-04-26 21:17:42 -05:00
struct containerInit *init;
uiWindowsControl *c;
void (*onResize)(uiWindowsControl *);
intmax_t minwid, minht;
2015-05-18 08:52:37 -05:00
LRESULT lResult;
2015-05-14 12:42:28 -05:00
2015-05-18 08:52:37 -05:00
if (handleParentMessages(hwnd, uMsg, wParam, lParam, &lResult) != FALSE)
return lResult;
2015-05-14 12:42:28 -05:00
switch (uMsg) {
2016-04-26 21:17:42 -05:00
case WM_CREATE:
init = (struct containerInit *) (cs->lpCreateParams);
2016-04-26 21:17:42 -05:00
SetWindowLongPtrW(hwnd, GWLP_USERDATA, (LONG_PTR) (init->onResize));
SetWindowLongPtrW(hwnd, 0, (LONG_PTR) (init->c));
2016-04-26 21:17:42 -05:00
break; // defer to DefWindowProc()
case WM_WINDOWPOSCHANGED:
if ((wp->flags & SWP_NOSIZE) != 0)
break; // defer to DefWindowProc();
onResize = (void (*)(uiWindowsControl *)) GetWindowLongPtrW(hwnd, GWLP_USERDATA);
c = (uiWindowsControl *) GetWindowLongPtrW(hwnd, 0);
(*(onResize))(c);
2016-04-26 21:17:42 -05:00
return 0;
case WM_GETMINMAXINFO:
lResult = DefWindowProcW(hwnd, uMsg, wParam, lParam);
c = (uiWindowsControl *) GetWindowLongPtrW(hwnd, 0);
uiWindowsControlMinimumSize(c, &minwid, &minht);
mmi->ptMinTrackSize.x = minwid;
mmi->ptMinTrackSize.y = minht;
return lResult;
2015-05-14 12:42:28 -05:00
case WM_PAINT:
dc = BeginPaint(hwnd, &ps);
if (dc == NULL) {
logLastError(L"error beginning container paint");
// bail out; hope DefWindowProc() catches us
break;
}
2015-05-14 12:42:28 -05:00
r = ps.rcPaint;
paintContainerBackground(hwnd, dc, &r);
EndPaint(hwnd, &ps);
return 0;
// tab controls use this to draw the background of the tab area
case WM_PRINTCLIENT:
uiWindowsEnsureGetClientRect(hwnd, &r);
2015-05-14 12:42:28 -05:00
paintContainerBackground(hwnd, (HDC) wParam, &r);
return 0;
case WM_ERASEBKGND:
// avoid some flicker
// we draw the whole update area anyway
return 1;
}
return DefWindowProcW(hwnd, uMsg, wParam, lParam);
}
ATOM initContainer(HICON hDefaultIcon, HCURSOR hDefaultCursor)
{
WNDCLASSW wc;
ZeroMemory(&wc, sizeof (WNDCLASSW));
wc.lpszClassName = containerClass;
wc.lpfnWndProc = containerWndProc;
wc.hInstance = hInstance;
wc.hIcon = hDefaultIcon;
wc.hCursor = hDefaultCursor;
wc.hbrBackground = (HBRUSH) (COLOR_BTNFACE + 1);
2016-04-26 21:17:42 -05:00
wc.cbWndExtra = sizeof (void *);
2015-05-14 12:42:28 -05:00
return RegisterClassW(&wc);
}
void uninitContainer(void)
{
if (UnregisterClassW(containerClass, hInstance) == 0)
logLastError(L"error unregistering container window class");
2015-05-14 12:42:28 -05:00
}
HWND uiWindowsMakeContainer(uiWindowsControl *c, void (*onResize)(uiWindowsControl *))
2015-05-14 12:42:28 -05:00
{
2016-04-26 21:17:42 -05:00
struct containerInit init;
// TODO onResize cannot be NULL
init.c = c;
2016-04-26 21:17:42 -05:00
init.onResize = onResize;
2015-08-31 11:33:44 -05:00
return uiWindowsEnsureCreateControlHWND(WS_EX_CONTROLPARENT,
containerClass, L"",
0,
2016-04-26 21:17:42 -05:00
hInstance, (LPVOID) (&init),
FALSE);
2015-05-14 12:42:28 -05:00
}