Home
last modified time | relevance | path

Searched refs:rcWindow (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/external/xserver/hw/xwin/
H A Dwinmultiwindowshape.c128 RECT rcWindow; in winReshapeMultiWindow() local
143 if (!GetWindowRect(pWinPriv->hWnd, &rcWindow)) { in winReshapeMultiWindow()
150 iOffsetX = rcClient.left - rcWindow.left; in winReshapeMultiWindow()
151 iOffsetY = rcClient.top - rcWindow.top; in winReshapeMultiWindow()
155 hRgn = CreateRectRgn(0, 0, rcWindow.right, iOffsetY); in winReshapeMultiWindow()
159 0, 0, (int) rcWindow.right, iOffsetY, (int) GetLastError()); in winReshapeMultiWindow()
H A Dwinwin32rootless.c560 RECT rcWindow, rcClient; in winMWExtWMReshapeFrame() local
569 GetWindowRect(pRLWinPriv->hWnd, &rcWindow); in winMWExtWMReshapeFrame()
572 OffsetRgn(hRgn, rcClient.left - rcWindow.left, rcClient.top - rcWindow.top); in winMWExtWMReshapeFrame()
573 OffsetRect(&rcClient, -rcWindow.left, -rcWindow.top); in winMWExtWMReshapeFrame()
574 OffsetRect(&rcWindow, -rcWindow.left, -rcWindow.top); in winMWExtWMReshapeFrame()
575 hRgnWindow = CreateRectRgnIndirect(&rcWindow); in winMWExtWMReshapeFrame()
H A Dwinwndproc.c308 RECT rcWindow; in winWindowProc() local
353 GetWindowRect(hwnd, &rcWindow); in winWindowProc()
354 iWidth = rcWindow.right - rcWindow.left; in winWindowProc()
355 iHeight = rcWindow.bottom - rcWindow.top; in winWindowProc()
H A Dwinmultiwindowwndproc.c196 RECT rcClient, rcWindow; in ValidateSizing() local
222 GetWindowRect(hwnd, &rcWindow); in ValidateSizing()
224 (rcWindow.right - rcWindow.left) - (rcClient.right - rcClient.left); in ValidateSizing()
226 (rcWindow.bottom - rcWindow.top) - (rcClient.bottom - rcClient.top); in ValidateSizing()