Salome HOME
Fix for the issue #2753 : error when dump/load script
[modules/shaper.git] / src / ModuleBase / ModuleBase_IWorkshop.h
index 74d222b66e0356c4aa0292d35f58994fff768722..e8cf8b62215e291d3aebbee535a3ebe3cf9eea22 100644 (file)
@@ -14,7 +14,8 @@
 // License along with this library; if not, write to the Free Software
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 //
-// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or
+// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
 //
 
 #ifndef ModuleBase_IWorkshop_H
@@ -36,6 +37,7 @@ class ModuleBase_IViewer;
 class ModuleBase_IPropertyPanel;
 class ModuleBase_IErrorMgr;
 class ModuleBase_Operation;
+class ModuleBase_ISelectionActivate;
 class ModuleBase_ViewerPrs;
 class QMainWindow;
 
@@ -57,16 +59,6 @@ Q_OBJECT
   /// Return current selection instance
   virtual ModuleBase_ISelection* selection() const = 0;
 
-  /// Activate sub-shapes selection (opens local context)
-  /// Types has to be defined according to TopAbs_ShapeEnum
-  virtual void activateSubShapesSelection(const QIntList& theTypes) = 0;
-
-  /// Activate objects in the module selection modes(opens local context)
-  virtual void activateModuleSelectionModes() = 0;
-
-  /// Deactivate sub-shapes selection (closes local context)
-  virtual void deactivateSubShapesSelection() = 0;
-
   //! Returns instance of loaded module
   virtual ModuleBase_IModule* module() const = 0;
 
@@ -83,6 +75,9 @@ Q_OBJECT
   /// \return a filter
   Handle(ModuleBase_FilterValidated) validatorFilter();
 
+  /// A selection activate in 3D View handler
+  virtual ModuleBase_ISelectionActivate* selectionActivate() const = 0;
+
   //! Returns currently active operation
   virtual ModuleBase_Operation* currentOperation() const = 0;
 
@@ -117,6 +112,10 @@ Q_OBJECT
   //! \param theAIS a presentation
   virtual ObjectPtr findPresentedObject(const AISObjectPtr& theAIS) const = 0;
 
+  //! Returns true if the object is displayed
+  //! \param theObject a data object
+  virtual bool isVisible(const ObjectPtr& theObject) const = 0;
+
   //! Select features clearing previous selection.
   //! If the list is empty then selection will be cleared
   //! \param theValues a list of presentations
@@ -136,6 +135,9 @@ Q_OBJECT
   /// Returns main window of the application
   virtual QMainWindow* desktop() const = 0;
 
+  /// Returns true if SHIFT is pressed
+  /// \return boolean value
+  virtual bool hasSHIFTPressed() const = 0;
 
 signals:
   /// Signal selection changed.