Salome HOME
Preparations for Split operation. It includes:
[modules/shaper.git] / src / XGUI / XGUI_ModuleConnector.h
index 04d7b3ef18df05491d361e9609a9ea009bb66ab4..0a00cf57b370204d1a947fcd70ed94547e0e2d8c 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
+
 // File:        XGUI_ModuleConnector.h
 // Created:     3 June 2014
 // Author:      Vitaly Smetannikov
 #ifndef XGUI_ModuleConnector_H
 #define XGUI_ModuleConnector_H
 
-
 #include "XGUI.h"
-#include "XGUI_Constants.h"
-
+#include <ModuleBase_Definitions.h>
 #include <ModuleBase_IWorkshop.h>
 
 class Handle_AIS_InteractiveContext;
 class XGUI_Workshop;
+class XGUI_Displayer;
 
 /**
-* Implementation of IWorkshop interface which provides access to Workshop sevices at module level
-*/
-class XGUI_EXPORT XGUI_ModuleConnector: public ModuleBase_IWorkshop
+ * \ingroup GUI
+ * Implementation of IWorkshop interface which provides access to Workshop services at module level
+ */
+class XGUI_EXPORT XGUI_ModuleConnector : public ModuleBase_IWorkshop
 {
-  Q_OBJECT
-public:
+Q_OBJECT
+ public:
+   /// Constructor
+   /// \param theWorkshop a workshop
   XGUI_ModuleConnector(XGUI_Workshop* theWorkshop);
 
   virtual ~XGUI_ModuleConnector();
 
-  //! Returns AIS_InteractiveContext from current OCCViewer
-  virtual Handle(AIS_InteractiveContext) AISContext() const;
-
   //! Returns list of currently selected data objects
-  QFeatureList selectedFeatures() const; 
+  virtual ModuleBase_ISelection* selection() const;
+
+  /// Activate sub-shapes selection (opens local context if it was not opened)
+  /// Types has to be dined according to TopAbs_ShapeEnum
+  virtual void activateSubShapesSelection(const QIntList& theTypes);
+
+  /// Activate objects in the module selection modes(opens local context)
+  virtual void activateModuleSelectionModes();
+
+  /// Deactivate sub-shapes selection (closes local context)
+  virtual void deactivateSubShapesSelection();
+
+  //! Returns instance of loaded module
+  virtual ModuleBase_IModule* module() const;
+
+  //! Returns current viewer
+  virtual ModuleBase_IViewer* viewer() const;
+
+  //! Returns property panel
+  virtual ModuleBase_IPropertyPanel* propertyPanel() const;
+
+  //! Returns currently active operation
+  virtual ModuleBase_Operation* currentOperation() const;
+
+  //! Returns true if the operation with id theId can be started
+  virtual bool canStartOperation(QString theId);
+
+  //! Performs the operation launch
+  //! \param theOperation an operation to be launched
+  virtual void processLaunchOperation(ModuleBase_Operation* theOperation);
+
+  //! Returns started operation by the operation identifier. The operation manager is called.
+  //! \param theId an operation id
+  //! \return an operation instance or NULL
+  virtual ModuleBase_Operation* findStartedOperation(const QString& theId);
+
+  //! Returns true if the operation with id theId can be stopped. The operation manager is called.
+  //! \param theOperation a stopped operation
+  //! \return boolean result
+  virtual bool canStopOperation(ModuleBase_Operation* theOperation);
+
+  //! Commits if possible or aborts the given operation.
+  //! \param theOperation an aborted operation
+  virtual void stopOperation(ModuleBase_Operation* theOperation);
+
+  //! Returns AIS object by data object
+  virtual AISObjectPtr findPresentation(const ObjectPtr& theObject) const;
+
+  //! Returns data object by AIS
+  virtual ObjectPtr findPresentedObject(const AISObjectPtr& theAIS) const;
+
+  //! Select features clearing previous selection. 
+  //! If the list is empty then selection will be cleared
+  virtual void setSelected(const QList<std::shared_ptr<ModuleBase_ViewerPrs>>& theValues);
+
+  //! Shows the message in the status bar
+  //! \param theMessage a message
+  virtual void setStatusBarMessage(const QString& theMessage);
+
+   /// Update of commands status
+  virtual void updateCommandStatus();
+
+  /// Returns Information about feature defined in corresponded XML
+  /// \param theId - id of the feature
+  virtual std::shared_ptr<Config_FeatureMessage> featureInfo(const QString& theId) const;
+
+  /// Return application main window
+  virtual QMainWindow* desktop() const;
+
+
+  //! Returns workshop
+  XGUI_Workshop* workshop() const { return myWorkshop; }
 
 private:
+  QObjectPtrList activeObjects(const QObjectPtrList& theObjList) const;
+
+  /// Reference to workshop
   XGUI_Workshop* myWorkshop;
 };
 
-#endif
\ No newline at end of file
+#endif