2015-05-14 19:40:41 -05:00
|
|
|
// 27 april 2015
|
2016-04-23 10:22:46 -05:00
|
|
|
#include "uipriv_windows.hpp"
|
2015-05-14 19:40:41 -05:00
|
|
|
|
|
|
|
#define windowClass L"libui_uiWindowClass"
|
|
|
|
|
2015-08-30 18:32:05 -05:00
|
|
|
struct uiWindow {
|
|
|
|
uiWindowsControl c;
|
2015-05-14 19:40:41 -05:00
|
|
|
HWND hwnd;
|
|
|
|
HMENU menubar;
|
2016-04-26 21:44:40 -05:00
|
|
|
uiControl *child;
|
2015-05-14 19:40:41 -05:00
|
|
|
BOOL shownOnce;
|
2016-04-26 21:44:40 -05:00
|
|
|
int visible;
|
2015-05-14 19:40:41 -05:00
|
|
|
int (*onClosing)(uiWindow *, void *);
|
|
|
|
void *onClosingData;
|
|
|
|
int margined;
|
2015-09-02 15:02:06 -05:00
|
|
|
BOOL hasMenubar;
|
2015-05-14 19:40:41 -05:00
|
|
|
};
|
|
|
|
|
2016-04-26 23:54:22 -05:00
|
|
|
// from https://msdn.microsoft.com/en-us/library/windows/desktop/dn742486.aspx#sizingandspacing
|
|
|
|
#define windowMargin 7
|
|
|
|
|
|
|
|
static void windowMargins(uiWindow *w, int *mx, int *my)
|
|
|
|
{
|
|
|
|
uiWindowsSizing sizing;
|
|
|
|
|
|
|
|
*mx = 0;
|
|
|
|
*my = 0;
|
|
|
|
if (!w->margined)
|
|
|
|
return;
|
|
|
|
uiWindowsGetSizing(w->hwnd, &sizing);
|
|
|
|
*mx = windowMargin;
|
|
|
|
*my = windowMargin;
|
|
|
|
uiWindowsSizingDlgUnitsToPixels(&sizing, mx, my);
|
|
|
|
}
|
|
|
|
|
2016-04-26 21:44:40 -05:00
|
|
|
static void windowRelayout(uiWindow *w)
|
|
|
|
{
|
|
|
|
uiWindow *w = uiWindow(c);
|
|
|
|
uiWindowsSizing sizing;
|
|
|
|
int x, y, width, height;
|
|
|
|
RECT r;
|
|
|
|
int mx, my;
|
2016-04-27 11:18:58 -05:00
|
|
|
HWND child;
|
2015-08-30 18:32:05 -05:00
|
|
|
|
2016-04-26 21:44:40 -05:00
|
|
|
if (w->child == NULL)
|
|
|
|
return;
|
|
|
|
x = 0;
|
|
|
|
y = 0;
|
2016-04-26 23:54:22 -05:00
|
|
|
getClientRect(w->hwnd, &r);
|
2016-04-26 21:44:40 -05:00
|
|
|
width = r.right - r.left;
|
|
|
|
height = r.bottom - r.top;
|
2016-04-26 23:54:22 -05:00
|
|
|
windowMargins(w, &mx, &my);
|
|
|
|
x += mx;
|
|
|
|
y += my;
|
|
|
|
width -= 2 * mx;
|
|
|
|
height -= 2 * my;
|
2016-04-27 11:18:58 -05:00
|
|
|
child = (HWND) uiControlHandle(w->child);
|
|
|
|
uiWindowsEnsureMoveWindowDuringResize(child, x, y, width, height);
|
2016-04-26 21:44:40 -05:00
|
|
|
}
|
2015-05-29 21:44:48 -05:00
|
|
|
|
2015-05-14 19:40:41 -05:00
|
|
|
static LRESULT CALLBACK windowWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
2015-09-01 12:51:25 -05:00
|
|
|
LONG_PTR ww;
|
2015-08-30 18:32:05 -05:00
|
|
|
uiWindow *w;
|
2015-05-14 19:40:41 -05:00
|
|
|
CREATESTRUCTW *cs = (CREATESTRUCTW *) lParam;
|
|
|
|
WINDOWPOS *wp = (WINDOWPOS *) lParam;
|
2015-09-02 15:02:06 -05:00
|
|
|
MINMAXINFO *mmi = (MINMAXINFO *) lParam;
|
|
|
|
intmax_t width, height;
|
2015-05-18 08:52:37 -05:00
|
|
|
LRESULT lResult;
|
2015-05-14 19:40:41 -05:00
|
|
|
|
2015-09-01 12:51:25 -05:00
|
|
|
ww = GetWindowLongPtrW(hwnd, GWLP_USERDATA);
|
|
|
|
if (ww == 0) {
|
2015-05-14 19:40:41 -05:00
|
|
|
if (uMsg == WM_CREATE)
|
|
|
|
SetWindowLongPtrW(hwnd, GWLP_USERDATA, (LONG_PTR) (cs->lpCreateParams));
|
|
|
|
// fall through to DefWindowProc() anyway
|
|
|
|
return DefWindowProcW(hwnd, uMsg, wParam, lParam);
|
|
|
|
}
|
2015-09-01 12:51:25 -05:00
|
|
|
w = uiWindow((void *) ww);
|
2015-05-18 08:52:37 -05:00
|
|
|
if (handleParentMessages(hwnd, uMsg, wParam, lParam, &lResult) != FALSE)
|
|
|
|
return lResult;
|
2015-05-14 19:40:41 -05:00
|
|
|
switch (uMsg) {
|
|
|
|
case WM_COMMAND:
|
|
|
|
// not a menu
|
|
|
|
if (lParam != 0)
|
|
|
|
break;
|
|
|
|
if (HIWORD(wParam) != 0)
|
|
|
|
break;
|
|
|
|
runMenuEvent(LOWORD(wParam), uiWindow(w));
|
|
|
|
return 0;
|
|
|
|
case WM_WINDOWPOSCHANGED:
|
|
|
|
if ((wp->flags & SWP_NOSIZE) != 0)
|
|
|
|
break;
|
2016-04-26 21:44:40 -05:00
|
|
|
windowRelayout(w);
|
2015-05-14 19:40:41 -05:00
|
|
|
return 0;
|
2015-09-02 15:02:06 -05:00
|
|
|
case WM_GETMINMAXINFO:
|
|
|
|
// ensure the user cannot resize the window smaller than its minimum size
|
|
|
|
lResult = DefWindowProcW(hwnd, uMsg, wParam, lParam);
|
2016-04-26 21:44:40 -05:00
|
|
|
uiWindowsControlMinimumSize(uiWindowsControl(w), &width, &height);
|
2015-09-02 15:02:06 -05:00
|
|
|
// width and height are in client coordinates; ptMinTrackSize is in window coordinates
|
|
|
|
clientSizeToWindowSize(w->hwnd, &width, &height, w->hasMenubar);
|
|
|
|
mmi->ptMinTrackSize.x = width;
|
|
|
|
mmi->ptMinTrackSize.y = height;
|
|
|
|
return lResult;
|
2015-06-07 21:06:41 -05:00
|
|
|
case WM_PRINTCLIENT:
|
|
|
|
// we do no special painting; just erase the background
|
|
|
|
// don't worry about the return value; we let DefWindowProcW() handle this message
|
|
|
|
SendMessageW(hwnd, WM_ERASEBKGND, wParam, lParam);
|
|
|
|
return 0;
|
2015-05-14 19:40:41 -05:00
|
|
|
case WM_CLOSE:
|
2015-08-30 18:32:05 -05:00
|
|
|
if ((*(w->onClosing))(w, w->onClosingData))
|
2015-05-14 19:40:41 -05:00
|
|
|
uiControlDestroy(uiControl(w));
|
|
|
|
return 0; // we destroyed it already
|
|
|
|
}
|
|
|
|
return DefWindowProcW(hwnd, uMsg, wParam, lParam);
|
|
|
|
}
|
|
|
|
|
|
|
|
ATOM registerWindowClass(HICON hDefaultIcon, HCURSOR hDefaultCursor)
|
|
|
|
{
|
|
|
|
WNDCLASSW wc;
|
|
|
|
|
|
|
|
ZeroMemory(&wc, sizeof (WNDCLASSW));
|
|
|
|
wc.lpszClassName = windowClass;
|
|
|
|
wc.lpfnWndProc = windowWndProc;
|
|
|
|
wc.hInstance = hInstance;
|
|
|
|
wc.hIcon = hDefaultIcon;
|
|
|
|
wc.hCursor = hDefaultCursor;
|
|
|
|
wc.hbrBackground = (HBRUSH) (COLOR_BTNFACE + 1);
|
|
|
|
return RegisterClassW(&wc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void unregisterWindowClass(void)
|
|
|
|
{
|
|
|
|
if (UnregisterClassW(windowClass, hInstance) == 0)
|
2016-04-23 10:22:46 -05:00
|
|
|
logLastError(L"error unregistering uiWindow window class");
|
2015-05-14 19:40:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static int defaultOnClosing(uiWindow *w, void *data)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-04-26 21:44:40 -05:00
|
|
|
static void uiWindowDestroy(uiControl *c)
|
2015-05-14 19:40:41 -05:00
|
|
|
{
|
2016-04-26 21:44:40 -05:00
|
|
|
uiWindow *w = uiWindow(c);
|
|
|
|
|
|
|
|
// TODO make sure all ports have the necessary verifications
|
2015-05-14 19:40:41 -05:00
|
|
|
// first hide ourselves
|
|
|
|
ShowWindow(w->hwnd, SW_HIDE);
|
|
|
|
// now destroy the child
|
2016-04-26 21:44:40 -05:00
|
|
|
if (w->child != NULL) {
|
|
|
|
uiControlSetParent(w->child, NULL);
|
|
|
|
uiControlDestroy(w->child);
|
|
|
|
}
|
2015-05-14 19:40:41 -05:00
|
|
|
// now free the menubar, if any
|
|
|
|
if (w->menubar != NULL)
|
|
|
|
freeMenubar(w->menubar);
|
2016-04-26 21:44:40 -05:00
|
|
|
// and finally free ourselves
|
|
|
|
uiWindowsEnsureDestroyWindow(w->hwnd);
|
|
|
|
uiFreeControl(uiControl(w));
|
2015-05-15 14:39:45 -05:00
|
|
|
}
|
|
|
|
|
2016-04-26 21:44:40 -05:00
|
|
|
uiWindowsControlDefaultHandle(uiWindow)
|
|
|
|
// TODO?
|
|
|
|
uiWindowsControlDefaultParent(uiWindow)
|
|
|
|
uiWindowsControlDefaultSetParent(uiWindow)
|
|
|
|
// end TODO
|
|
|
|
|
|
|
|
static int uiWindowToplevel(uiControl *c)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO initial state of windows is hidden; ensure this here and make it so on other platforms
|
|
|
|
static int uiWindowVisible(uiControl *c)
|
2015-05-15 14:39:45 -05:00
|
|
|
{
|
2015-08-30 18:32:05 -05:00
|
|
|
uiWindow *w = uiWindow(c);
|
2015-05-15 14:39:45 -05:00
|
|
|
|
2016-04-26 21:44:40 -05:00
|
|
|
return w->visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void uiWindowShow(uiControl *c)
|
|
|
|
{
|
|
|
|
uiWindow *w = uiWindow(c);
|
|
|
|
|
|
|
|
w->visible = 1;
|
2015-09-02 15:26:54 -05:00
|
|
|
// just in case this wasn't called already
|
2016-04-26 21:44:40 -05:00
|
|
|
// TODO is it needed?
|
2015-09-02 15:26:54 -05:00
|
|
|
ensureMinimumWindowSize(w);
|
2015-05-15 14:39:45 -05:00
|
|
|
if (w->shownOnce) {
|
|
|
|
ShowWindow(w->hwnd, SW_SHOW);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
w->shownOnce = TRUE;
|
2015-05-16 10:37:45 -05:00
|
|
|
// make sure the child is the correct size
|
2015-09-01 06:21:18 -05:00
|
|
|
uiWindowsControlQueueRelayout(uiWindowsControl(w));
|
2015-05-15 14:39:45 -05:00
|
|
|
ShowWindow(w->hwnd, nCmdShow);
|
|
|
|
if (UpdateWindow(w->hwnd) == 0)
|
2016-04-23 10:22:46 -05:00
|
|
|
logLastError(L"error calling UpdateWindow() after showing uiWindow for the first time");
|
2015-05-15 14:39:45 -05:00
|
|
|
}
|
|
|
|
|
2016-04-26 21:44:40 -05:00
|
|
|
static void uiWindowHide(uiControl *c)
|
2015-06-03 16:57:04 -05:00
|
|
|
{
|
2015-08-30 18:32:05 -05:00
|
|
|
uiWindow *w = uiWindow(c);
|
2015-06-03 16:57:04 -05:00
|
|
|
|
2016-04-26 21:44:40 -05:00
|
|
|
w->visible = 0;
|
|
|
|
ShowWindow(w->hwnd, SW_HIDE);
|
2015-09-01 06:21:18 -05:00
|
|
|
}
|
|
|
|
|
2016-04-26 21:44:40 -05:00
|
|
|
// TODO we don't want the window to be disabled completely; that would prevent it from being moved! ...would it?
|
|
|
|
uiWindowsControlDefaultEnabled(uiWindow)
|
|
|
|
uiWindowsControlDefaultEnable(uiWindow)
|
|
|
|
uiWindowsControlDefaultDisable(uiWindow)
|
|
|
|
// TODO we need to do something about undocumented fields in the OS control types
|
|
|
|
uiWindowsControlDefaultSyncEnableState(uiWindow)
|
|
|
|
// TODO
|
|
|
|
uiWindowsControlDefaultSetParentHWND(uiWindow)
|
|
|
|
|
|
|
|
static void uiWindowMinimumSize(uiWindowsControl *c, intmax_t *width, intmax_t *height)
|
2015-09-01 06:21:18 -05:00
|
|
|
{
|
2015-09-01 12:51:25 -05:00
|
|
|
uiWindow *w = uiWindow(c);
|
2016-04-26 21:44:40 -05:00
|
|
|
uiWindowsSizing sizing;
|
|
|
|
int mx, my;
|
2015-09-01 12:51:25 -05:00
|
|
|
|
|
|
|
*width = 0;
|
|
|
|
*height = 0;
|
|
|
|
if (w->child != NULL)
|
2016-04-26 21:44:40 -05:00
|
|
|
uiWindowsControlMinimumSize(uiWindowsControl(w->child), width, height);
|
2016-04-26 23:54:22 -05:00
|
|
|
windowMargins(w, &mx, &my);
|
|
|
|
*width += 2 * mx;
|
|
|
|
*height += 2 * my;
|
2015-06-03 16:57:04 -05:00
|
|
|
}
|
2015-05-15 14:39:45 -05:00
|
|
|
|
2016-04-26 21:44:40 -05:00
|
|
|
static void uiWindowChildMinimumSizeChanged(uiWindowsControl *c)
|
2015-09-01 07:42:42 -05:00
|
|
|
{
|
|
|
|
uiWindow *w = uiWindow(c);
|
2016-04-26 21:44:40 -05:00
|
|
|
intmax_t width, height;
|
|
|
|
RECT r;
|
|
|
|
BOOL needsGrowing;
|
2016-04-26 23:54:22 -05:00
|
|
|
int mx, my;
|
2015-09-01 07:42:42 -05:00
|
|
|
|
2016-04-26 21:44:40 -05:00
|
|
|
uiWindowsControlMinimumSize(uiWindowsControl(w->child), &width, &height);
|
2016-04-26 23:54:22 -05:00
|
|
|
getClientRect(w->hwnd, &r);
|
2016-04-27 00:25:36 -05:00
|
|
|
windowMargins(w, &mx, &my);
|
2016-04-26 21:44:40 -05:00
|
|
|
needsGrowing = FALSE;
|
2016-04-27 00:25:36 -05:00
|
|
|
// subtract margins so we only care about the area that's used
|
|
|
|
if ((r.right - r.left - (2 * mx)) < width)
|
2016-04-26 21:44:40 -05:00
|
|
|
needsGrowing = TRUE;
|
2016-04-27 00:25:36 -05:00
|
|
|
if ((r.bottom - r.top - (2 * my)) < height)
|
2016-04-26 21:44:40 -05:00
|
|
|
needsGrowing = TRUE;
|
2016-04-26 23:54:22 -05:00
|
|
|
if (!needsGrowing)
|
|
|
|
return;
|
|
|
|
// TODO figure out what to do with this function
|
|
|
|
// maybe split it into two so WM_GETMINMAXINFO can use it?
|
|
|
|
ensureMinimumWindowSize(w);
|
2015-09-01 07:42:42 -05:00
|
|
|
}
|
|
|
|
|
2016-04-26 21:44:40 -05:00
|
|
|
uiWindowsDefaultAssignControlIDZorder(uiWindow)
|
2015-09-02 11:59:57 -05:00
|
|
|
|
2015-08-30 18:32:05 -05:00
|
|
|
char *uiWindowTitle(uiWindow *w)
|
2015-05-14 19:40:41 -05:00
|
|
|
{
|
2016-04-22 19:04:30 -05:00
|
|
|
return uiWindowsWindowText(w->hwnd);
|
2015-05-14 19:40:41 -05:00
|
|
|
}
|
|
|
|
|
2015-08-30 18:32:05 -05:00
|
|
|
void uiWindowSetTitle(uiWindow *w, const char *title)
|
2015-05-14 19:40:41 -05:00
|
|
|
{
|
2016-04-22 19:04:30 -05:00
|
|
|
uiWindowsSetWindowText(w->hwnd, title);
|
2015-06-03 14:49:44 -05:00
|
|
|
// don't queue resize; the caption isn't part of what affects layout and sizing of the client area (it'll be ellipsized if too long)
|
2015-05-14 19:40:41 -05:00
|
|
|
}
|
|
|
|
|
2015-08-31 16:50:23 -05:00
|
|
|
void uiWindowOnClosing(uiWindow *w, int (*f)(uiWindow *, void *), void *data)
|
2015-05-14 19:40:41 -05:00
|
|
|
{
|
|
|
|
w->onClosing = f;
|
|
|
|
w->onClosingData = data;
|
|
|
|
}
|
|
|
|
|
2015-08-30 18:32:05 -05:00
|
|
|
void uiWindowSetChild(uiWindow *w, uiControl *child)
|
2015-05-14 19:40:41 -05:00
|
|
|
{
|
2015-09-02 08:18:49 -05:00
|
|
|
if (w->child != NULL) {
|
2016-04-26 23:54:22 -05:00
|
|
|
uiControlSetParent(w->child, NULL);
|
|
|
|
uiWindowsControlSetParentHWND(uiWindowsControl(w->child), NULL);
|
|
|
|
}
|
|
|
|
w->child = child;
|
|
|
|
if (w->child != NULL) {
|
|
|
|
uiControlSetParent(w->child, uiControl(w));
|
|
|
|
uiWindowsControlSetParentHWND(uiWindowsControl(w->child), w->hwnd);
|
2016-04-27 16:51:33 -05:00
|
|
|
uiWindowsControlAssignSoleControlIDZOrder(uiWindowsControl(w->child));
|
2016-04-26 23:54:22 -05:00
|
|
|
windowRelayout(w);
|
2015-09-02 08:18:49 -05:00
|
|
|
}
|
2015-05-14 19:40:41 -05:00
|
|
|
}
|
|
|
|
|
2015-08-30 18:32:05 -05:00
|
|
|
int uiWindowMargined(uiWindow *w)
|
2015-05-14 19:40:41 -05:00
|
|
|
{
|
|
|
|
return w->margined;
|
|
|
|
}
|
|
|
|
|
2015-08-30 18:32:05 -05:00
|
|
|
void uiWindowSetMargined(uiWindow *w, int margined)
|
2015-05-14 19:40:41 -05:00
|
|
|
{
|
|
|
|
w->margined = margined;
|
2016-04-26 23:54:22 -05:00
|
|
|
windowRelayout(w);
|
2015-05-17 20:15:39 -05:00
|
|
|
}
|
|
|
|
|
2015-05-14 19:40:41 -05:00
|
|
|
// see http://blogs.msdn.com/b/oldnewthing/archive/2003/09/11/54885.aspx and http://blogs.msdn.com/b/oldnewthing/archive/2003/09/13/54917.aspx
|
2015-09-02 15:26:54 -05:00
|
|
|
// TODO use clientSizeToWindowSize()
|
2015-08-30 18:32:05 -05:00
|
|
|
static void setClientSize(uiWindow *w, int width, int height, BOOL hasMenubar, DWORD style, DWORD exstyle)
|
2015-05-14 19:40:41 -05:00
|
|
|
{
|
|
|
|
RECT window;
|
|
|
|
|
|
|
|
window.left = 0;
|
|
|
|
window.top = 0;
|
|
|
|
window.right = width;
|
|
|
|
window.bottom = height;
|
|
|
|
if (AdjustWindowRectEx(&window, style, hasMenubar, exstyle) == 0)
|
2016-04-23 10:22:46 -05:00
|
|
|
logLastError(L"error getting real window coordinates");
|
2015-05-14 19:40:41 -05:00
|
|
|
if (hasMenubar) {
|
|
|
|
RECT temp;
|
|
|
|
|
|
|
|
temp = window;
|
|
|
|
temp.bottom = 0x7FFF; // infinite height
|
|
|
|
SendMessageW(w->hwnd, WM_NCCALCSIZE, (WPARAM) FALSE, (LPARAM) (&temp));
|
|
|
|
window.bottom += temp.top;
|
|
|
|
}
|
|
|
|
if (SetWindowPos(w->hwnd, NULL, 0, 0, window.right - window.left, window.bottom - window.top, SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOOWNERZORDER | SWP_NOZORDER) == 0)
|
2016-04-23 10:22:46 -05:00
|
|
|
logLastError(L"error resizing window");
|
2015-05-14 19:40:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
uiWindow *uiNewWindow(const char *title, int width, int height, int hasMenubar)
|
|
|
|
{
|
2015-08-30 18:32:05 -05:00
|
|
|
uiWindow *w;
|
2015-05-14 19:40:41 -05:00
|
|
|
WCHAR *wtitle;
|
|
|
|
BOOL hasMenubarBOOL;
|
|
|
|
|
2016-04-26 23:54:22 -05:00
|
|
|
uiWindowsNewControl(uiWindow, w);
|
2015-05-14 19:40:41 -05:00
|
|
|
|
|
|
|
hasMenubarBOOL = FALSE;
|
|
|
|
if (hasMenubar)
|
|
|
|
hasMenubarBOOL = TRUE;
|
2015-09-02 15:02:06 -05:00
|
|
|
w->hasMenubar = hasMenubarBOOL;
|
2015-05-14 19:40:41 -05:00
|
|
|
|
|
|
|
#define style WS_OVERLAPPEDWINDOW
|
|
|
|
#define exstyle 0
|
|
|
|
|
|
|
|
wtitle = toUTF16(title);
|
|
|
|
w->hwnd = CreateWindowExW(exstyle,
|
|
|
|
windowClass, wtitle,
|
|
|
|
style,
|
|
|
|
CW_USEDEFAULT, CW_USEDEFAULT,
|
|
|
|
// use the raw width and height for now
|
|
|
|
// this will get CW_USEDEFAULT (hopefully) predicting well
|
|
|
|
// even if it doesn't, we're adjusting it later
|
|
|
|
width, height,
|
|
|
|
NULL, NULL, hInstance, w);
|
|
|
|
if (w->hwnd == NULL)
|
2016-04-23 10:22:46 -05:00
|
|
|
logLastError(L"error creating window");
|
2015-05-14 19:40:41 -05:00
|
|
|
uiFree(wtitle);
|
|
|
|
|
|
|
|
if (hasMenubar) {
|
|
|
|
w->menubar = makeMenubar();
|
|
|
|
if (SetMenu(w->hwnd, w->menubar) == 0)
|
2016-04-23 10:22:46 -05:00
|
|
|
logLastError(L"error giving menu to window");
|
2015-05-14 19:40:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// and use the proper size
|
|
|
|
setClientSize(w, width, height, hasMenubarBOOL, style, exstyle);
|
|
|
|
|
2015-09-01 06:21:18 -05:00
|
|
|
uiWindowOnClosing(w, defaultOnClosing, NULL);
|
2015-05-14 19:40:41 -05:00
|
|
|
|
2015-08-30 18:32:05 -05:00
|
|
|
return w;
|
2015-05-14 19:40:41 -05:00
|
|
|
}
|
2015-09-02 15:26:54 -05:00
|
|
|
|
2016-04-23 14:46:39 -05:00
|
|
|
// this cannot queue a resize because it's called by the resize handler
|
2015-09-02 15:26:54 -05:00
|
|
|
void ensureMinimumWindowSize(uiWindow *w)
|
|
|
|
{
|
|
|
|
intmax_t width, height;
|
|
|
|
RECT r;
|
|
|
|
|
2016-04-26 23:54:22 -05:00
|
|
|
uiWindowsControlMinimumSize(uiWindowsControl(w), &width, &height);
|
|
|
|
getClientRect(w->hwnd, &r);
|
2015-09-02 15:26:54 -05:00
|
|
|
if (width < (r.right - r.left)) // preserve width if larger
|
|
|
|
width = r.right - r.left;
|
|
|
|
if (height < (r.bottom - r.top)) // preserve height if larger
|
|
|
|
height = r.bottom - r.top;
|
|
|
|
clientSizeToWindowSize(w->hwnd, &width, &height, w->hasMenubar);
|
|
|
|
if (SetWindowPos(w->hwnd, NULL, 0, 0, width, height, SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOOWNERZORDER | SWP_NOZORDER) == 0)
|
2016-04-23 10:22:46 -05:00
|
|
|
logLastError(L"error resizing window");
|
2015-09-02 15:26:54 -05:00
|
|
|
}
|