1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +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 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,StoredMaxY);
clientDC.LineTo(StoredMaxX,StoredMinY); clientDC.LineTo(StoredMinX,StoredMinY); clientDC.LineTo(StoredMaxX,StoredMinY);
clientDC.LineTo(StoredMinX,StoredMinY);
m_IsVisible = false; m_IsVisible = false;
} }
@ -869,13 +871,16 @@ void CViewer3dView::DrawRectangle(const Standard_Integer MinX ,
if (Draw) // move : draw 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,StoredMaxY);
clientDC.LineTo(StoredMaxX,StoredMinY); clientDC.LineTo(StoredMinX,StoredMinY); clientDC.LineTo(StoredMaxX,StoredMinY);
clientDC.LineTo(StoredMinX,StoredMinY);
m_IsVisible = true; m_IsVisible = true;
} }
if (m_Pen) clientDC.SelectObject(aOldPen); if (m_Pen)
clientDC.SelectObject(aOldPen);
} }
void CViewer3dView::OnModifyChangeBackground() void CViewer3dView::OnModifyChangeBackground()

View File

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

View File

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