Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / PartSet / PartSet_OperationSketchBase.h
index 72a635bb1c986ac5e701a0cba26decfedd0dd0d8..48aa06c840fc0878d6b496543f17a92d0b1af7c1 100644 (file)
@@ -8,11 +8,14 @@
 #include "PartSet.h"
 
 #include <TopoDS_Shape.hxx>
+#include <gp_Pnt.hxx>
 #include <NCollection_List.hxx>
 
 #include <ModuleBase_PropPanelOperation.h>
 #include <QObject>
 
+class GeomAPI_Shape;
+
 /*!
   \class PartSet_OperationSketchBase
   * \brief The base operation for the sketch features.
@@ -30,15 +33,42 @@ public:
   virtual ~PartSet_OperationSketchBase();
 
   /// Returns the feature preview shape
-  const TopoDS_Shape& preview() const;
+  /// \param theFeature the feature object to obtain the preview
+  boost::shared_ptr<GeomAPI_Shape> preview(boost::shared_ptr<ModelAPI_Feature> theFeature) const;
 
   /// Returns the operation local selection mode
+  /// \param theFeature the feature object to get the selection mode
   /// \return the selection mode
-  virtual int getSelectionMode() const = 0;
+  virtual int getSelectionMode(boost::shared_ptr<ModelAPI_Feature> theFeature) const = 0;
 
   /// Gives the current selected objects to be processed by the operation
-  /// \param a list of interactive selected objects
-  virtual void setSelectedShapes(const NCollection_List<TopoDS_Shape>& theList) = 0;
+  /// \param theList a list of interactive selected shapes
+  virtual void setSelectedShapes(const NCollection_List<TopoDS_Shape>& theList) {};
+
+  /// Processes the mouse release in the point
+  /// \param thePoint a point clicked in the viewer
+  virtual void mouseReleased(const gp_Pnt& thePoint) {};
+
+  /// Processes the mouse move in the point
+  /// \param thePoint a 3D point clicked in the viewer
+  virtual void mouseMoved(const gp_Pnt& thePoint) {};
+
+  /// Processes the key pressed in the view
+  /// \param theKey a key value
+  virtual void keyReleased(const int theKey) {};
+
+signals:
+  /// Signal about the feature construing is finished
+  /// \param theFeature the result feature
+  void featureConstructed(boost::shared_ptr<ModelAPI_Feature> theFeature);
+
+public:
+  /// temporary code to provide edition mode
+  void setEditMode(const bool isEditMode) { myIsEditMode = isEditMode; };
+protected:
+  bool isEditMode() const { return myIsEditMode; }
+private:
+  bool myIsEditMode;
 };
 
 #endif