Salome HOME
Translation of sketch operations
[modules/shaper.git] / src / ModuleBase / ModuleBase_IWorkshop.h
index a4f4afc28a332b41b2c1d99e1a61f8d9dd57ab0f..ec8d04906ea780fab13d6a487f92f3cff3784e9a 100644 (file)
 #include "ModuleBase.h"
 #include "ModuleBase_Definitions.h"
 #include <ModuleBase_FilterValidated.h>
-#include <ModuleBase_ViewerPrs.h>
 
 #include <ModelAPI_Object.h>
 #include <GeomAPI_AISObject.h>
+#include <Config_FeatureMessage.h>
 
 #include <QObject>
 
@@ -23,10 +23,12 @@ class ModuleBase_IViewer;
 class ModuleBase_IPropertyPanel;
 class ModuleBase_Operation;
 class ModuleBase_FilterFactory;
+class ModuleBase_ViewerPrs;
+class QMainWindow;
 
 /**
  * \ingroup GUI
- * Class which provides access to Workshop object serveces
+ * Class which provides access to Workshop object services
  */
 class MODULEBASE_EXPORT ModuleBase_IWorkshop : public QObject
 {
@@ -74,18 +76,50 @@ Q_OBJECT
   //! Returns true if the operation with id theId can be started
   virtual bool canStartOperation(QString theId) = 0;
 
-  //! Returns AIS opbject by data object
+  //! Returns started operation by the operation identifier
+  //! \param theId an operation id
+  //! \return an operation instance or NULL
+  virtual ModuleBase_Operation* findStartedOperation(const QString& theId) = 0;
+
+  //! Returns true if the operation with id theId can be stopped
+  //! \param theOperation a stopped operation
+  //! \return boolean result
+  virtual bool canStopOperation(ModuleBase_Operation* theOperation) = 0;
+
+  //! Aborts the operation.
+  //! \param theOperation an aborted operation
+  virtual void abortOperation(ModuleBase_Operation* theOperation) = 0;
+
+  //! Returns AIS object by data object
+  //! \param theObject a data object
   virtual AISObjectPtr findPresentation(const ObjectPtr& theObject) const = 0;
 
   //! Returns data object by AIS
+  //! \param theAIS a presentation
   virtual ObjectPtr findPresentedObject(const AISObjectPtr& theAIS) const = 0;
 
   //! Select features clearing previous selection. 
   //! If the list is empty then selection will be cleared
-  virtual void setSelected(const QList<ModuleBase_ViewerPrs>& theValues) = 0;
+  //! \param theValues a list of presentations
+  virtual void setSelected(const QList<std::shared_ptr<ModuleBase_ViewerPrs>>& theValues) = 0;
+
+  //! Shows the message in the status bar
+  //! \param theMessage a message
+  virtual void setStatusBarMessage(const QString& theMessage) = 0;
+
+   /// Update of commands status
+  virtual void updateCommandStatus() = 0;
+
+  /// Returns feature info according to given feature ID
+  /// \param theId a feature Id
+  virtual std::shared_ptr<Config_FeatureMessage> featureInfo(const QString& theId) const = 0;
+
+  /// Returns main window of the application
+  virtual QMainWindow* desktop() const = 0;
+
 
 signals:
-  /// Signal selection chaged.
+  /// Signal selection changed.
   void selectionChanged();
 
   /// Signal which is emited after activation of property panel