X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_Tools.h;h=30838ae09f66fc9869e36d6e48c87a3d5a7421e0;hb=d22fc665c79c31c9eea0625e04c2e941adfdf7be;hp=2eadb950980fd5b47d82f1f85aa3454f24384380;hpb=5b841e9801c659d762d708378df8c4d85565fda0;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_Tools.h b/src/PartSet/PartSet_Tools.h index 2eadb9509..30838ae09 100644 --- a/src/PartSet/PartSet_Tools.h +++ b/src/PartSet/PartSet_Tools.h @@ -14,7 +14,6 @@ #include #include -#include #include @@ -24,6 +23,7 @@ class GeomDataAPI_Point2D; class GeomAPI_Pln; class GeomAPI_Pnt2d; class GeomAPI_Pnt; +class GeomAPI_Edge; /*! \class PartSet_Tools @@ -54,13 +54,18 @@ class PARTSET_EXPORT PartSet_Tools static void convertTo3D(const double theX, const double theY, FeaturePtr theSketch, gp_Pnt& thePoint); - /// Returns a feature that is under the mouse point + /// Returns an object that is under the mouse point. Firstly it checks the highlighting, + /// if it exists, the first object is returned. Secondly, there is an iteration on + /// the selected list to find the point. Thirdly, if the object is not found under the + /// the point, the first selected object is returned. /// \param thePoint a screen point /// \param theView a 3D view /// \param theSketch the sketch feature - /// \param theFeatures the list of selected presentations - static FeaturePtr nearestFeature(QPoint thePoint, Handle_V3d_View theView, FeaturePtr theSketch, - const QList& theFeatures); + /// \param theSelected the list of selected presentations + /// \param theHighlighted the list of highlighted presentations + static ObjectPtr nearestFeature(QPoint thePoint, Handle_V3d_View theView, FeaturePtr theSketch, + const QList& theSelected, + const QList& theHighlighted); /// Returns pointer to the root document. static boost::shared_ptr document(); @@ -133,6 +138,40 @@ class PARTSET_EXPORT PartSet_Tools /// \param theEdge - an edge /// \return - result of created feature static ResultPtr createFixedObjectByEdge(const ModuleBase_ViewerPrs& thePrs, CompositeFeaturePtr theSketch); + + /// Checks whether the list of selected presentations contains the given one + /// \param theSelected a list of presentations + /// \param thePrs a presentation to be found + /// \return - result of check, true if the list contains the prs + static bool isContainPresentation(const QList& theSelected, + const ModuleBase_ViewerPrs& thePrs); + + /// Returns Result object if the given skietch contains external edge equal to the given + /// \param theSketch - the sketch feature + /// \param theEdge - the edge + /// \return result object with external edge if it is found + static ResultPtr findExternalEdge(CompositeFeaturePtr theSketch, boost::shared_ptr theEdge); + + /// Returns whether the selected presentation has a shape with the vertex type + /// \param thePrs a selected presentation + /// \param theSketch the sketch feature + /// \param theView a 3D view + /// \param theX the output horizontal coordinate of the point + /// \param theY the output vertical coordinate of the point + static bool hasVertexShape(const ModuleBase_ViewerPrs& thePrs, FeaturePtr theSketch, + Handle_V3d_View theView, double& theX, double& theY); +protected: + /// Returns an object that is under the mouse point. Firstly it checks the highlighting, + /// if it exists, the first object is returned. Secondly, there is an iteration on + /// the selected list to find the point. Thirdly, if the object is not found under the + /// the point, the first selected object is returned. + /// \param thePoint a screen point + /// \param theView a 3D view + /// \param theSketch the sketch feature + /// \param thePresentations the list of presentations + static ObjectPtr nearestFeature(QPoint thePoint, Handle_V3d_View theView, FeaturePtr theSketch, + const QList& thePresentations); + }; #endif