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

@ -680,8 +680,8 @@ void CViewer3dView::OnMouseMove(UINT nFlags, CPoint point)
GetDocument()->ShiftDragEvent(myXmax,myYmax,0,myView); GetDocument()->ShiftDragEvent(myXmax,myYmax,0,myView);
else else
GetDocument()->DragEvent(myXmax,myYmax,0,myView); GetDocument()->DragEvent(myXmax,myYmax,0,myView);
DrawRectangle(myXmin,myYmin,myXmax,myYmax,Standard_True); DrawRectangle(myXmin,myYmin,myXmax,myYmax,Standard_True);
break; break;
case CurAction3d_DynamicZooming : case CurAction3d_DynamicZooming :
myView->Zoom(myXmax,myYmax,point.x,point.y); myView->Zoom(myXmax,myYmax,point.x,point.y);
// save the current mouse coordinate in min \n"; // save the current mouse coordinate in min \n";
@ -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,9 +82,10 @@ 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);
}
} }
//----------------------------------------------------------------------------------------- //-----------------------------------------------------------------------------------------
@ -94,7 +95,7 @@ void OCC_3dBaseDoc::InputEvent(const Standard_Integer x ,
const Standard_Integer y , const Standard_Integer y ,
const Handle(V3d_View)& aView ) const Handle(V3d_View)& aView )
{ {
myAISContext->Select(); myAISContext->Select();
} }
//----------------------------------------------------------------------------------------- //-----------------------------------------------------------------------------------------