X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROCurveCreator%2FCurveCreator_Widget.cxx;h=96a838c6d9352e69580ca41ce4e9cdbeb61711d9;hb=8edd427af3997521bda72ca3c416cc1d490565d5;hp=e3bc69f8a29671b7bbd81446ea3d818a4f7cfa39;hpb=1e9be94cc5ff4ad886099c507462d5b70f6d71f9;p=modules%2Fhydro.git diff --git a/src/HYDROCurveCreator/CurveCreator_Widget.cxx b/src/HYDROCurveCreator/CurveCreator_Widget.cxx index e3bc69f8..96a838c6 100644 --- a/src/HYDROCurveCreator/CurveCreator_Widget.cxx +++ b/src/HYDROCurveCreator/CurveCreator_Widget.cxx @@ -1354,6 +1354,32 @@ void CurveCreator_Widget::getSelectedPonts( CurveCreator_ICurve::SectionToPointL thePoints.push_back( std::make_pair( getSectionId( i ), getPointId( i ) ) ); } + +bool CurveCreator_Widget::isIntersectVertexToPoint( const TopoDS_Vertex& theVertex, + const CurveCreator_ICurve::SectionToPoint& theSToPoint ) +{ + bool isIntersect = false; + + if ( theVertex.IsNull() ) + return isIntersect; + + gp_Pnt aPnt = BRep_Tool::Pnt( theVertex ); + + CurveCreator_ICurve::SectionToPointList aPoints; + findSectionsToPoints( aPnt.X(), aPnt.Y(), aPoints ); + + CurveCreator_ICurve::SectionToPointList::const_iterator anIt = aPoints.begin(), + aLast = aPoints.end(); + CurveCreator_ICurve::SectionToPoint aPoint; + for ( ; anIt != aLast && !isIntersect; anIt++ ) { + aPoint = *anIt; + isIntersect = aPoint.first == theSToPoint.first && aPoint.second == theSToPoint.second; + } + + return isIntersect; +} + + void CurveCreator_Widget::setSelectedPonts( const CurveCreator_ICurve::SectionToPointList& thePoints ) { if ( myDragStarted ) @@ -1366,10 +1392,12 @@ void CurveCreator_Widget::setSelectedPonts( const CurveCreator_ICurve::SectionTo AIS_ListOfInteractive aDisplayedList; ic->DisplayedObjects( aDisplayedList ); + ic->ClearSelected( Standard_False ); CurveCreator_ICurve::SectionToPointList::const_iterator anIt = thePoints.begin(), aLast = thePoints.end(); CurveCreator_ICurve::SectionToPoint aSToPoint; + bool isSelectedVertex = false; for( ; anIt != aLast; anIt++ ) { aSToPoint = *anIt; @@ -1379,40 +1407,31 @@ void CurveCreator_Widget::setSelectedPonts( const CurveCreator_ICurve::SectionTo if ( anAIS.IsNull() ) continue; Handle(AIS_Point) anAISPoint = Handle(AIS_Point)::DownCast( anAIS ); - if ( anAISPoint.IsNull() ) - continue; - - TopoDS_Vertex aVertex = TopoDS::Vertex( anAISPoint->Vertex() ); - - if ( aVertex.IsNull() ) - continue; - - gp_Pnt aPnt = BRep_Tool::Pnt( aVertex ); - - CurveCreator_ICurve::SectionToPointList aPoints; - findSectionsToPoints( aPnt.X(), aPnt.Y(), aPoints ); - - CurveCreator_ICurve::SectionToPointList::const_iterator anIt = aPoints.begin(), - aLast = aPoints.end(); - CurveCreator_ICurve::SectionToPoint aPoint; - for ( ; anIt != aLast; anIt++ ) { - aPoint = *anIt; - if ( aPoint.first == aSToPoint.first && aPoint.second == aSToPoint.second ) + if ( !anAISPoint.IsNull() ) { + TopoDS_Vertex aVertex = TopoDS::Vertex( anAISPoint->Vertex() ); + if ( isIntersectVertexToPoint( aVertex, aSToPoint ) ) aListToSelect.Append( anAIS ); } + else { + Handle(AIS_Shape) anAISShape = Handle(AIS_Shape)::DownCast( anAIS ); + if ( anAISShape.IsNull() ) + continue; + const TopoDS_Shape& aShape = anAISShape->Shape(); + TopExp_Explorer aExpV( aShape, TopAbs_VERTEX); + for ( ; aExpV.More(); aExpV.Next() ) + { + const TopoDS_Vertex& aVertex = TopoDS::Vertex( aExpV.Current() ); + if ( isIntersectVertexToPoint( aVertex, aSToPoint ) ) { + ic->AddOrRemoveSelected( aVertex, Standard_False ); + isSelectedVertex = true; + } + } + } } } - if ( thePoints.size() > 0 && aListToSelect.First() == aListToSelect.Last() ) { - /*TopExp_Explorer aExpF(myShape,TopAbs_FACE); - for (; aExpF.More(); aExpF.Next()) - { - const TopoDS_Face& aFace = TopoDS::Face(aExpF.Current()); - }*/ - } - - - ic->ClearSelected( Standard_False ); - setObjectsSelected( aListToSelect ); + ic->UpdateCurrentViewer(); + if ( !isSelectedVertex ) + setObjectsSelected( aListToSelect ); updateLocalPointView(); }