Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / PartSet / PartSet_Module.h
index b71c7fb2e31140bb4618661809655ad7113744c2..7e8190eb16755222d7d0290f4bf5c0d2a6ee8963 100644 (file)
 
 #include <string>
 
+#include <boost/shared_ptr.hpp>
+
+class XGUI_ViewWindow;
+class QMouseEvent;
+class QKeyEvent;
 class PartSet_Listener;
+class ModelAPI_Feature;
 
 class PARTSET_EXPORT PartSet_Module: public QObject, public XGUI_Module
 {
@@ -29,8 +35,9 @@ public:
   virtual void launchOperation(const QString& theCmdId);
 
   /// Displays or erase the current operation preview, if it has it.
+  /// \param theF
   /// \param isDisplay the state whether the presentation should be displayed or erased
-  void visualizePreview(bool isDisplay);
+  void visualizePreview(boost::shared_ptr<ModelAPI_Feature> theFeature, bool isDisplay);
 
 public slots:
   void onFeatureTriggered();
@@ -40,19 +47,35 @@ public slots:
   /// SLOT, that is called after the operation is stopped. Disconnect the sketch feature
   /// from the viewer selection and show the sketch preview.
   void onOperationStopped(ModuleBase_Operation* theOperation);
+
   /// SLOT, that is called by the selection in the viewer is changed.
-  /// The selection is sent to the current operation if it listen the selection.
-  void onMouseReleased(QPoint thePoint);
+  /// The selection is sent to the current operation if it listens selection.
+  void onSelectionChanged();
+  /// SLOT, that is called by mouse click in the viewer.
+  /// The mouse released point is sent to the current operation to be processed.
+  /// \param theWindow the window where the signal appears
+  /// \param theEvent the mouse event
+  void onMouseReleased(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
   /// SLOT, that is called by the selection in the viewer is changed.
-  /// The selection is sent to the current operation if it listen the selection.
-  /// \thePoint the mouse point
-  void onMouseMoved(QPoint thePoint);
+  /// The mouse moved point is sent to the current operation to be processed.
+  /// \param theWindow the window where the signal appears
+  /// \param theEvent the mouse event
+  void onMouseMoved(XGUI_ViewWindow* theWindow, QMouseEvent* theEvent);
+
+  /// SLOT, that is called by the key in the viewer is clicked.
+  /// \param theWindow the window where the signal appears
+  /// \param theEvent the mouse event
+  void onKeyRelease(XGUI_ViewWindow*, QKeyEvent*);
 
   /// SLOT, to apply to the current viewer the operation
   /// \param theX the X projection value
   /// \param theY the Y projection value
   /// \param theZ the Z projection value
-  void onViewerProjectionChange(double theX, double theY, double theZ);
+  void onPlaneSelected(double theX, double theY, double theZ);
+
+  /// SLOT, to visualize the feature in another local context mode
+  /// \param theFeature the feature to be put in another local context mode
+  void onFeatureConstructed(boost::shared_ptr<ModelAPI_Feature> theFeature);
 
 private:
   XGUI_Workshop* myWorkshop;