1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +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) void DrawWindow::SetPosition(Standard_Integer posX, Standard_Integer posY)
{ {
SetWindowPos(win, 0, UINT aFlags = SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER;
posX, posY, if (Draw_VirtualWindows)
0, 0, {
SWP_NOACTIVATE | SWP_NOSIZE | SWP_NOZORDER); 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) void DrawWindow::SetDimension(Standard_Integer dimX, Standard_Integer dimY)
{ {
SetWindowPos(win, 0, UINT aFlags = SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER;
0, 0, if (Draw_VirtualWindows)
dimX, dimY, {
SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER); aFlags |= SWP_NOSENDCHANGING;
}
SetWindowPos (win, 0, 0, 0, dimX, dimY, aFlags);
} }