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:
parent
7fd59977df
commit
62a0addbcc
@ -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()
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------------------
|
||||
//
|
||||
|
Loading…
x
Reference in New Issue
Block a user