1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

Update of MFC samples for problem "Mouse selection issue is repeatable on all your application"

This commit is contained in:
bugmaster 2011-04-20 14:01:48 +00:00 committed by bugmaster
parent 7fd59977df
commit 62a0addbcc
3 changed files with 18 additions and 12 deletions

View File

@ -856,9 +856,11 @@ void CViewer3dView::DrawRectangle(const Standard_Integer MinX ,
if ( m_IsVisible && !Draw) // move or up : erase at the old position
{
clientDC.MoveTo(StoredMinX,StoredMinY); clientDC.LineTo(StoredMinX,StoredMaxY);
clientDC.MoveTo(StoredMinX,StoredMinY);
clientDC.LineTo(StoredMinX,StoredMaxY);
clientDC.LineTo(StoredMaxX,StoredMaxY);
clientDC.LineTo(StoredMaxX,StoredMinY); clientDC.LineTo(StoredMinX,StoredMinY);
clientDC.LineTo(StoredMaxX,StoredMinY);
clientDC.LineTo(StoredMinX,StoredMinY);
m_IsVisible = false;
}
@ -869,13 +871,16 @@ void CViewer3dView::DrawRectangle(const Standard_Integer MinX ,
if (Draw) // move : draw
{
clientDC.MoveTo(StoredMinX,StoredMinY); clientDC.LineTo(StoredMinX,StoredMaxY);
clientDC.MoveTo(StoredMinX,StoredMinY);
clientDC.LineTo(StoredMinX,StoredMaxY);
clientDC.LineTo(StoredMaxX,StoredMaxY);
clientDC.LineTo(StoredMaxX,StoredMinY); clientDC.LineTo(StoredMinX,StoredMinY);
clientDC.LineTo(StoredMaxX,StoredMinY);
clientDC.LineTo(StoredMinX,StoredMinY);
m_IsVisible = true;
}
if (m_Pen) clientDC.SelectObject(aOldPen);
if (m_Pen)
clientDC.SelectObject(aOldPen);
}
void CViewer3dView::OnModifyChangeBackground()

View File

@ -198,7 +198,7 @@ void CAnimationDoc::DragEvent(const Standard_Integer x ,
theButtonDownY=y;
}
if (TheState == 0)
if (TheState == 1)
myAISContext->Select(theButtonDownX,theButtonDownY,x,y,aView);
}

View File

@ -82,10 +82,11 @@ void OCC_3dBaseDoc::DragEvent(const Standard_Integer x ,
theButtonDownX=x;
theButtonDownY=y;
}
if (TheState == 0)
if (TheState == 1)
{
myAISContext->Select(theButtonDownX,theButtonDownY,x,y,aView);
}
}
//-----------------------------------------------------------------------------------------
//