]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSet/PartSet_FeatureLinePrs.h
Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / PartSet / PartSet_FeatureLinePrs.h
1 // File:        PartSet_FeatureLinePrs.h
2 // Created:     04 Jun 2014
3 // Author:      Natalia ERMOLAEVA
4
5 #ifndef PartSet_FeatureLinePrs_H
6 #define PartSet_FeatureLinePrs_H
7
8 #include "PartSet.h"
9
10 #include "PartSet_FeaturePrs.h"
11 #include "PartSet_Constants.h"
12
13 #include <gp_Pnt.hxx>
14
15 class GeomDataAPI_Point2D;
16 class Handle_V3d_View;
17
18 /*!
19  \class PartSet_FeatureLinePrs
20  * \brief The class to define the line feature manipulation. It is created for
21  * the feature create operation to move out the feature properties set and use one operation
22  * for any type of features.
23 */
24 class PARTSET_EXPORT PartSet_FeatureLinePrs : public PartSet_FeaturePrs
25 {
26 public:
27   /// Returns the feature type processed by this presentation
28   /// \return the feature kind
29   static std::string getKind();
30
31   /// Constructor
32   /// \param theSketch the sketch feature
33   PartSet_FeatureLinePrs(FeaturePtr theSketch);
34   /// Destructor
35   virtual ~PartSet_FeatureLinePrs() {};
36
37   /// Sets the point to the feature in an attribute depending on the selection mode
38   /// \param theX the 2D point horizontal coordinate
39   /// \param theY the 2D point vertical coordinate
40   /// \param theMode the selection mode
41   /// \return the new selection mode
42   virtual PartSet_SelectionMode setPoint(double theX, double theY,
43                                          const PartSet_SelectionMode& theMode);
44
45   /// Returns the feature attribute name for the selection mode
46   /// \param theMode the current operation selection mode. The feature attribute depends on the mode
47   virtual std::string getAttribute(const PartSet_SelectionMode& theMode) const;
48
49   /// Returns the next selection mode after the attribute
50   /// \param theAttribute the feature attribute name
51   /// \return next attribute selection mode
52   virtual PartSet_SelectionMode getNextMode(const std::string& theAttribute) const;
53
54   /// \brief Move the full feature.
55   /// \param theDeltaX the delta for X coordinate is moved
56   /// \param theDeltaY the delta for Y coordinate is moved
57   virtual void move(double theDeltaX, double theDeltaY);
58
59   /// Project the point on a feature
60   /// \param theFeature the feature to be projected on
61   /// \param theMode the selection mode
62   /// \param thePoint the clicked point
63   /// \param theView the viewer
64   /// \param theX the output horizontal coordinate
65   /// \param theY the output vertical coordinate
66   void projectPointOnLine(FeaturePtr theFeature, const PartSet_SelectionMode& theMode,
67                           const gp_Pnt& thePoint, Handle_V3d_View theView,
68                           double& theX, double& theY);
69
70   /// Return the distance between the feature and the point
71   /// \param theFeature feature object
72   /// \param theX the horizontal coordinate of the point
73   /// \param theX the vertical coordinate of the point
74   virtual double distanceToPoint(FeaturePtr theFeature, double theX, double theY);
75
76   /// Find a point in the line with given coordinates
77   /// \param theFeature the line feature
78   /// \param theX the horizontal point coordinate
79   /// \param theY the vertical point coordinate
80   virtual boost::shared_ptr<GeomDataAPI_Point2D> findPoint(FeaturePtr theFeature, double theX,
81                                                            double theY);
82
83 protected:
84   /// Initializes current feature by the given
85   /// \param theSourceFeature the feature, which attributes are used to initialize the current feature
86   virtual void initFeature(FeaturePtr theSourceFeature);
87
88   /// Returns the feature point in the selection mode position.
89   /// \param theMode the current operation selection mode. The feature attribute depends on the mode
90   virtual boost::shared_ptr<GeomDataAPI_Point2D> featurePoint(const PartSet_SelectionMode& theMode);
91
92   /// \brief Get the line point 2d coordinates.
93   /// \param theFeature the line feature
94   /// \param theAttribute the start or end attribute of the line
95   /// \param theX the horizontal coordinate
96   /// \param theY the vertical coordinate
97   static void getLinePoint(FeaturePtr theFeature, const std::string& theAttribute,
98                            double& theX, double& theY);
99 };
100
101 #endif