Lines Matching defs:hWnd
110 pWinPriv->hWnd = NULL;
165 HWND hWnd = pWinPriv->hWnd;
189 if (!hWnd)
192 ErrorF ("\timmediately return since hWnd is NULL\n");
198 dwExStyle = GetWindowLongPtr (hWnd, GWL_EXSTYLE);
199 dwStyle = GetWindowLongPtr (hWnd, GWL_STYLE);
225 GetWindowRect (hWnd, &rcOld);
229 GetClientRect (hWnd, &rcClient);
256 MoveWindow (hWnd,
400 HWND hWnd = NULL;
423 if (!pWinPriv || !pWinPriv->hWnd)
435 && !winGetWindowPriv(pPrevWin)->hWnd)
442 hInsertAfter = winGetWindowPriv(pPrevWin)->hWnd;
445 hWnd = GetNextWindow (pWinPriv->hWnd, GW_HWNDPREV);
449 if (GetProp (hWnd, WIN_WINDOW_PROP))
451 if (hWnd == winGetWindowPriv(pPrevWin)->hWnd)
457 hWnd = GetNextWindow (hWnd, GW_HWNDPREV);
459 while (hWnd);
469 SetWindowPos (pWinPriv->hWnd,
488 HWND hWnd;
540 hWnd = CreateWindowExA (WS_EX_TOOLWINDOW, /* Extended styles */
552 if (hWnd == NULL)
557 pWinPriv->hWnd = hWnd;
561 if (hIcon) SendMessage (hWnd, WM_SETICON, ICON_BIG, (LPARAM) hIcon);
562 if (hIconSmall) SendMessage (hWnd, WM_SETICON, ICON_SMALL, (LPARAM) hIconSmall);
565 SetWindowLongPtr(hWnd, GWL_STYLE, WS_POPUP | WS_CLIPCHILDREN | WS_CLIPSIBLINGS);
566 SetWindowPos (hWnd, 0, 0, 0, 0, 0,
569 GetSystemMenu (hWnd, TRUE);
572 PostMessage (hWnd, WM_INIT_SYS_MENU, 0, 0);
574 SetProp (hWnd, WIN_WID_PROP, (HANDLE) winGetWindowID(pWin));
577 SetProp (hWnd, WIN_NEEDMANAGE_PROP, (HANDLE) 0);
601 if (pWinPriv->hWnd == NULL)
606 SetProp (pWinPriv->hWnd, WIN_WINDOW_PROP, NULL);
608 DestroyWindow (pWinPriv->hWnd);
611 pWinPriv->hWnd = NULL;
639 HWND hWnd = pWinPriv->hWnd;
651 if (hWnd == NULL)
654 assert (pWinPriv->hWnd != NULL);
658 ShowWindow (pWinPriv->hWnd, SW_SHOWNOACTIVATE);
661 UpdateWindow (pWinPriv->hWnd);
663 else if (hWnd != NULL)
667 assert (pWinPriv->hWnd == NULL);
791 HWND hWnd;
815 hWnd = pRLWinPriv->hWnd;
823 hWnd = pWinPriv->hWnd;
826 ShowWindow (hWnd, SW_MINIMIZE);