Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / PartSet / PartSet_Module.h
index a67b8d038633c2ec2d084c0798a160bf91839590..68fe21e6ff22071e2d03136e57feaa5ae5b260cf 100644 (file)
@@ -26,11 +26,17 @@ 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 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.
@@ -40,9 +46,6 @@ public:
 
 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.
   void onOperationStopped(ModuleBase_Operation* theOperation);
@@ -69,9 +72,21 @@ 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 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);
+  /// \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 QString& theCmdId);
+
+  /// Sends the operation
+  /// \param theOperation the operation
+  void sendOperation(ModuleBase_Operation* theOperation);
 
 private:
   XGUI_Workshop* myWorkshop;