Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[modules/shaper.git] / src / PartSet / PartSet_Module.h
index 1f3197bd9def09569990acdb8f1b3a39b535dc30..1766a6e02b8a31c4174001c9da14555f6437bd5f 100644 (file)
@@ -17,6 +17,7 @@ class QMouseEvent;
 class QKeyEvent;
 class PartSet_Listener;
 class ModelAPI_Feature;
+class XGUI_ViewerPrs;
 
 class PARTSET_EXPORT PartSet_Module: public QObject, public XGUI_Module
 {
@@ -26,35 +27,52 @@ public:
   PartSet_Module(XGUI_Workshop* theWshop);
   virtual ~PartSet_Module();
 
+  /// Returns the module workshop
+  /// \returns a workshop instance
+  XGUI_Workshop* workshop() const;
+
   virtual void createFeatures();
-  virtual void featureCreated(XGUI_Command* theFeature);
+  virtual void featureCreated(QAction* theFeature);
   virtual QStringList nestedFeatures(QString theFeature);
   std::string featureFile(const std::string&);
 
+  /// Creates an operation and send it to loop
+  /// \param theCmdId the operation name
   virtual void launchOperation(const QString& theCmdId);
 
   /// Displays or erase the current operation preview, if it has it.
-  /// \param theF
+  /// \param theFeature the feature instance to be displayed
   /// \param isDisplay the state whether the presentation should be displayed or erased
-  void visualizePreview(boost::shared_ptr<ModelAPI_Feature> theFeature, bool isDisplay);
+  /// \param isUpdateViewer the flag whether the viewer should be updated
+  void visualizePreview(boost::shared_ptr<ModelAPI_Feature> theFeature, bool isDisplay,
+                        const bool isUpdateViewer = true);
+
+  /// Activates the feature in the displayer
+  /// \param theFeature the feature instance to be displayed
+  /// \param isUpdateViewer the flag whether the viewer should be updated
+  void activateFeature(boost::shared_ptr<ModelAPI_Feature> theFeature,
+                       const bool isUpdateViewer);
+
+  /// Updates current operation preview, if it has it.
+  /// \param theCmdId the operation name
+  void updateCurrentPreview(const std::string& theCmdId);
 
 public slots:
   void onFeatureTriggered();
-  /// SLOT, that is called after the operation is started. Perform some specific for module
-  /// actions, e.g. connect the sketch feature to the viewer selection and show the sketch preview.
-  void onOperationStarted();
-  /// SLOT, that is called after the operation is stopped. Disconnect the sketch feature
-  /// from the viewer selection and show the sketch preview.
+  /// SLOT, that is called after the operation is stopped. Switched off the modfications performed
+  /// by the operation start
   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 listens selection.
-  void onSelectionChanged();
-  /// SLOT, that is called by mouse click in the viewer.
+  /// SLOT, that is called afetr the popup menu action clicked.
+  void onContextMenuCommand(const QString& theId, bool isChecked);
+  /// SLOT, that is called by mouse press in the viewer.
+  /// The mouse released point is sent to the current operation to be processed.
+  /// \param theEvent the mouse event
+  void onMousePressed(QMouseEvent* theEvent);
+  /// SLOT, that is called by mouse release in the viewer.
   /// The mouse released point is sent to the current operation to be processed.
   /// \param theEvent the mouse event
   void onMouseReleased(QMouseEvent* theEvent);
-  /// SLOT, that is called by the selection in the viewer is changed.
+  /// SLOT, that is called by mouse move in the viewer.
   /// The mouse moved point is sent to the current operation to be processed.
   /// \param theEvent the mouse event
   void onMouseMoved(QMouseEvent* theEvent);
@@ -69,11 +87,41 @@ public slots:
   /// \param theZ the Z projection value
   void onPlaneSelected(double theX, double theY, double theZ);
 
+  void onLaunchOperation(std::string theName, boost::shared_ptr<ModelAPI_Feature> theFeature);
+
+  /// SLOT, to switch on/off the multi selection in the viewer
+  /// \param theEnabled the enabled state
+  void onMultiSelectionEnabled(bool theEnabled);
+
+  /// SLOT, to stop or start selection mode for the features
+  /// \param theFeatures a list of features to be disabled
+  /// \param theToStop the boolean state whether it it stopped or non stopped
+  void onStopSelection(const std::list<XGUI_ViewerPrs>& theFeatures, const bool isStop);
+
+  /// SLOT, to set selection
+  /// \param theFeatures a list of features to be selected
+  void onSetSelection(const std::list<XGUI_ViewerPrs>& theFeatures);
+
+  /// SLOT, to close the viewer local context
+  void onCloseLocalContext();
+
   /// SLOT, to visualize the feature in another local context mode
   /// \param theFeature the feature to be put in another local context mode
   /// \param theMode the mode appeared on the feature
   void onFeatureConstructed(boost::shared_ptr<ModelAPI_Feature> theFeature,
                             int theMode);
+protected:
+  /// Creates a new operation
+  /// \param theCmdId the operation name
+  ModuleBase_Operation* createOperation(const std::string& theCmdId);
+
+  /// Sends the operation
+  /// \param theOperation the operation
+  void sendOperation(ModuleBase_Operation* theOperation);
+
+protected:
+  //! Edits the feature
+  void editFeature(FeaturePtr theFeature);
 
 private:
   XGUI_Workshop* myWorkshop;