X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_Tools.h;h=c847a1ad11f205dab6de36a0e1c5ae64f6afdef5;hb=09f9714f3df9f24a6dd80e0219a94d347dad9cd2;hp=d1b5b4d5cd9f4646495b0613cb4319a67da3ec59;hpb=cd9217d7e87997ec8bc150a6d8c389e742ca0f84;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_Tools.h b/src/PartSet/PartSet_Tools.h index d1b5b4d5c..c847a1ad1 100644 --- a/src/PartSet/PartSet_Tools.h +++ b/src/PartSet/PartSet_Tools.h @@ -7,16 +7,17 @@ #include "PartSet.h" +#include #include #include +#include -#include +#include +#include #include -#include - class Handle_V3d_View; class ModuleBase_ViewerPrs; class GeomDataAPI_Point2D; @@ -59,18 +60,18 @@ class PARTSET_EXPORT PartSet_Tools /// \param theSketch the sketch feature /// \param theFeatures the list of selected presentations static FeaturePtr nearestFeature(QPoint thePoint, Handle_V3d_View theView, FeaturePtr theSketch, - const std::list& theFeatures); + const QList& theFeatures); /// Returns pointer to the root document. static boost::shared_ptr document(); - /// \brief Save the point to the feature. If the attribute is 2D geometry point, it is filled. + + /// Returns a point attribute of the feature by the coordinates if it is /// \param theFeature the feature /// \param theX the horizontal coordinate /// \param theY the vertical coordinate - /// \param theAttribute the feature attribute - static void setFeaturePoint(FeaturePtr theFeature, double theX, double theY, - const std::string& theAttribute); + static boost::shared_ptr getFeaturePoint(FeaturePtr theFeature, + double theX, double theY); /// \brief Save the double to the feature. If the attribute is double, it is filled. /// \param theFeature the feature @@ -97,7 +98,7 @@ class PARTSET_EXPORT PartSet_Tools /// Creates a constraint on two points /// \param thePoint1 the first point /// \param thePoint1 the second point - static void createConstraint(FeaturePtr theSketch, + static void createConstraint(CompositeFeaturePtr theSketch, boost::shared_ptr thePoint1, boost::shared_ptr thePoint2); @@ -107,25 +108,39 @@ class PARTSET_EXPORT PartSet_Tools /// \param theAttribute a name of the requried attribute attribute /// \param theClickedX the horizontal coordnate of the point /// \param theClickedY the vertical coordnate of the point - static void setConstraints(FeaturePtr theSketch, FeaturePtr theFeature, + static void setConstraints(CompositeFeaturePtr theSketch, FeaturePtr theFeature, const std::string& theAttribute, double theClickedX, double theClickedY); /// Create a sketch plane instance /// \param theSketch a sketch feature /// \return API object of geom plane - static boost::shared_ptr sketchPlane(FeaturePtr theSketch); + static boost::shared_ptr sketchPlane(CompositeFeaturePtr theSketch); /// Create a point 3D on a basis of point 2D and sketch feature /// \param thePoint2D a point on a sketch /// \param theSketch a sketch feature /// \return API object of point 3D static boost::shared_ptr point3D(boost::shared_ptr thePoint2D, - FeaturePtr theSketch); + CompositeFeaturePtr theSketch); /// Check whether there is a constraint with the feature kind given /// \param theKind a feature kind /// \return the boolean value static bool isConstraintFeature(const std::string& theKind); + + /// Creates a line (arc or circle) by given edge + /// Created line will have fixed constraint + /// \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); + }; #endif