1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0030157: Draw Harness - xwd image dump should not be limited by desktop size within batch testing

DrawWindow now uses SWP_NOSENDCHANGING flag within batch mode to ensure
that created window is not clipped in size by desktop dimensions.
This commit is contained in:
kgv 2018-09-24 11:31:40 +03:00 committed by bugmaster
parent a922aab52c
commit 72a2da560f

View File

@ -1634,10 +1634,12 @@ void DrawWindow::ReleaseMemDC(HDC theMemDC)
\*--------------------------------------------------------*/
void DrawWindow::SetPosition(Standard_Integer posX, Standard_Integer posY)
{
SetWindowPos(win, 0,
posX, posY,
0, 0,
SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER);
UINT aFlags = SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER;
if (Draw_VirtualWindows)
{
aFlags |= SWP_NOSENDCHANGING;
}
SetWindowPos (win, 0, posX, posY, 0, 0, aFlags);
}
@ -1646,10 +1648,12 @@ void DrawWindow::SetPosition(Standard_Integer posX, Standard_Integer posY)
\*--------------------------------------------------------*/
void DrawWindow::SetDimension(Standard_Integer dimX, Standard_Integer dimY)
{
SetWindowPos(win, 0,
0, 0,
dimX, dimY,
SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER);
UINT aFlags = SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER;
if (Draw_VirtualWindows)
{
aFlags |= SWP_NOSENDCHANGING;
}
SetWindowPos (win, 0, 0, 0, dimX, dimY, aFlags);
}