Salome HOME
refs #30 - Sketch base GUI: create, draw lines
[modules/shaper.git] / src / PartSet / PartSet_OperationEditLine.h
1 // File:        PartSet_OperationEditLine.h
2 // Created:     05 May 2014
3 // Author:      Natalia ERMOLAEVA
4
5 #ifndef PartSet_OperationEditLine_H
6 #define PartSet_OperationEditLine_H
7
8 #include "PartSet.h"
9
10 #include <PartSet_OperationSketchBase.h>
11 #include <QObject>
12
13 class QMouseEvent;
14
15 /*!
16  \class PartSet_OperationEditLine
17  * \brief The operation for the sketch feature creation
18 */
19 class PARTSET_EXPORT PartSet_OperationEditLine : public PartSet_OperationSketchBase
20 {
21   Q_OBJECT
22   /// Struct to define gp point, with the state is the point is initialized
23   struct Point
24   {
25     /// Constructor
26     Point() {}
27     /// Constructor
28     /// \param thePoint the point
29     Point(gp_Pnt thePoint)
30     {
31       setPoint(thePoint);
32     }
33     ~Point() {}
34
35     /// clear the initialized flag.
36     void clear() { myIsInitialized = false; }
37     /// set the point and switch on the initialized flag
38     /// \param thePoint the point
39     void setPoint(const gp_Pnt& thePoint)
40     {
41       myIsInitialized = true;
42       myPoint = thePoint;
43     }
44
45     bool myIsInitialized; /// the state whether the point is set
46     gp_Pnt myPoint; /// the point
47   };
48
49 public:
50   /// Returns the operation type key
51   static std::string Type() { return "EditLine"; }
52
53 public:
54   /// Constructor
55   /// \param theId the feature identifier
56   /// \param theParent the operation parent
57   /// \param theFeature the parent feature
58   PartSet_OperationEditLine(const QString& theId, QObject* theParent,
59                             boost::shared_ptr<ModelAPI_Feature> theFeature);
60   /// Destructor
61   virtual ~PartSet_OperationEditLine();
62
63    /// Returns that this operator can be started above already running one.
64    /// The runned operation should be the sketch feature modified operation
65   virtual bool isGranted() const;
66
67   /// Returns the operation local selection mode
68   /// \param theFeature the feature object to get the selection mode
69   /// \return the selection mode
70   virtual std::list<int> getSelectionModes(boost::shared_ptr<ModelAPI_Feature> theFeature) const;
71
72   /// Initializes some fields accorging to the feature
73   /// \param theFeature the feature
74   /// \param thePresentations the list of additional presentations
75   virtual void init(boost::shared_ptr<ModelAPI_Feature> theFeature,
76                     const std::list<XGUI_ViewerPrs>& thePresentations);
77
78   /// Processes the mouse pressed in the point
79   /// \param thePoint a point clicked in the viewer
80   /// \param theEvent the mouse event
81   virtual void mousePressed(QMouseEvent* theEvent, Handle_V3d_View theView);
82   /// Gives the current mouse point in the viewer
83   /// \param thePoint a point clicked in the viewer
84   /// \param theEvent the mouse event
85   /// \param theSelected the list of selected presentations
86   virtual void mouseMoved(QMouseEvent* theEvent, Handle_V3d_View theView,
87                           const std::list<XGUI_ViewerPrs>& theSelected);
88   /// Gives the current selected objects to be processed by the operation
89   /// \param thePoint a point clicked in the viewer
90   /// \param theEvent the mouse event
91   /// \param theSelected the list of selected presentations
92  virtual void mouseReleased(QMouseEvent* theEvent, Handle_V3d_View theView,
93                             const std::list<XGUI_ViewerPrs>& theSelected);
94 protected:
95   /// \brief Virtual method called when operation is started
96   /// Virtual method called when operation started (see start() method for more description)
97   /// Switch off the multi selection state
98   virtual void startOperation();
99
100   /// Virtual method called when operation stopped - committed or aborted.
101   /// Restore the multi selection state
102   virtual void stopOperation();
103
104   /// Creates an operation new feature
105   /// Returns NULL feature. This is an operation of edition, not creation.
106   /// \returns the created feature
107   virtual boost::shared_ptr<ModelAPI_Feature> createFeature();
108
109 protected:
110   /// \brief Save the point to the line.
111   /// \param theFeature the source feature
112   /// \param theDeltaX the delta for X coordinate is moved
113   /// \param theDeltaY the delta for Y coordinate is moved
114   /// \param theAttribute the start or end attribute of the line
115   void  moveLinePoint(boost::shared_ptr<ModelAPI_Feature> theFeature,
116                       double theDeltaX, double theDeltaY,
117                       const std::string& theAttribute);
118
119 private:
120   boost::shared_ptr<ModelAPI_Feature> mySketch; ///< the sketch feature
121   std::list<XGUI_ViewerPrs> myFeatures; ///< the features to apply the edit operation
122   Point myCurPoint; ///< the current 3D point clicked or moved
123   gp_Pnt myCurPressed; ///< the current 3D point clicked or moved
124 };
125
126 #endif