Salome HOME
refs #80 - Sketch base GUI: create/draw point, circle and arc
[modules/shaper.git] / src / PartSet / PartSet_FeaturePrs.h
1 // File:        PartSet_FeaturePrs.h
2 // Created:     04 Jun 2014
3 // Author:      Natalia ERMOLAEVA
4
5 #ifndef PartSet_FeaturePrs_H
6 #define PartSet_FeaturePrs_H
7
8 #include "PartSet.h"
9
10 #include "PartSet_Constants.h"
11
12 class GeomDataAPI_Point2D;
13
14 /*!
15  \class PartSet_FeaturePrs
16  * \brief The abstract class to define the specific feature manipulation. It is created for
17  * the feature create operation to move out the feature properties set and use one operation
18  * for any type of features.
19 */
20 class PARTSET_EXPORT PartSet_FeaturePrs
21 {
22 public:
23   /// Constructor
24   /// \param theSketch the sketch feature
25   PartSet_FeaturePrs(FeaturePtr theSketch);
26   /// Destructor
27   virtual ~PartSet_FeaturePrs();
28
29   /// Initializes some fields of feature accorging to the source feature
30   /// Saves the fiature as the presentation internal feature
31   /// \param theFeature the presentation feature
32   /// \param theSourceFeature the feature, which attributes are used to initialize the feature
33   void init(FeaturePtr theFeature, FeaturePtr theSourceFeature);
34
35   /// Returns the operation sketch feature
36   /// \returns the sketch instance
37   FeaturePtr sketch() const;
38
39   /// Sets the point to the feature in an attribute depending on the selection mode
40   /// \param theX the 2D point horizontal coordinate
41   /// \param theY the 2D point vertical coordinate
42   /// \param theMode the selection mode
43   /// \return the new selection mode
44   virtual PartSet_SelectionMode setPoint(double theX, double theY,
45                                          const PartSet_SelectionMode& theMode) = 0;
46
47   /// Returns the feature attribute name for the selection mode
48   /// \param theMode the current operation selection mode. The feature attribute depends on the mode
49   virtual std::string getAttribute(const PartSet_SelectionMode& theMode) const = 0;
50
51   /// Returns the next selection mode after the attribute
52   /// \param theAttribute the feature attribute name
53   /// \return next attribute selection mode
54   virtual PartSet_SelectionMode getNextMode(const std::string& theAttribute) const = 0;
55
56   /// Creates constrains of the current 
57   /// \param theX the horizontal coordnate of the point
58   /// \param theY the vertical coordnate of the point
59   /// \param theMode the current operation selection mode. The feature attribute depends on the mode
60   void setConstraints(double theX, double theY, const PartSet_SelectionMode& theMode);
61
62 protected:
63   /// Returns the operation feature
64   /// \return the feature
65   FeaturePtr feature() const;
66
67   /// Initializes current feature by the given
68   /// \param theSourceFeature the feature, which attributes are used to initialize the current feature
69   virtual void initFeature(FeaturePtr theSourceFeature) {};
70
71   /// Returns the feature point in the selection mode position.
72   /// \param theMode the current operation selection mode. The feature attribute depends on the mode
73   virtual boost::shared_ptr<GeomDataAPI_Point2D> featurePoint(const PartSet_SelectionMode& theMode) = 0;
74
75 private:
76   FeaturePtr mySketch; ///< the sketch of the feature
77   FeaturePtr myFeature; ///< the feature
78 };
79
80 #endif