]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/XGUI/XGUI_Displayer.h
Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / XGUI / XGUI_Displayer.h
index 1dc238b906be7046c02f67a4ae8552df01562110..9299a81983f19bfa01e4d9434daaded33b102cf2 100644 (file)
 #include <boost/shared_ptr.hpp>
 
 #include <TopoDS_Shape.hxx>
+#include <AIS_InteractiveObject.hxx>
+#include <AIS_InteractiveContext.hxx>
+
+#include <map>
+#include <vector>
 
 class XGUI_Viewer;
 class ModelAPI_Feature;
+class XGUI_Workshop;
 
 /**\class XGUI_Displayer
  * \ingroup GUI
@@ -24,10 +30,18 @@ class XGUI_EXPORT XGUI_Displayer
 public:
   /// Constructor
   /// \param theViewer the viewer
-  XGUI_Displayer(XGUI_Viewer* theViewer);
+  XGUI_Displayer(XGUI_Workshop* theWorkshop);
   /// Destructor
   virtual ~XGUI_Displayer();
 
+  /// Set AIS_InteractiveContext object in case if it was changed
+  /// or can not be initialized in constructor
+  void setAISContext(const Handle(AIS_InteractiveContext)& theAIS);
+
+  /// Returns the feature visibility state.
+  /// \param theFeature a feature instance
+  bool IsVisible(boost::shared_ptr<ModelAPI_Feature> theFeature);
+
   /// Display the feature. Obtain the visualized object from the feature.
   /// \param theFeature a feature instance
   /// \param isUpdateViewer the parameter whether the viewer should be update immediatelly
@@ -45,22 +59,36 @@ public:
   /// \param theShape a shape
   /// \param theMode a local selection mode
   /// \param isUpdateViewer the parameter whether the viewer should be update immediatelly
-  void LocalSelection(boost::shared_ptr<ModelAPI_Feature> theFeature, const TopoDS_Shape& theShape,
-                      const int theMode, const bool isUpdateViewer = true);
+  void DisplayInLocalContext(boost::shared_ptr<ModelAPI_Feature> theFeature,
+                             const TopoDS_Shape& theShape,
+                             const int theMode, const bool isUpdateViewer = true);
 
   /// Erase the feature and a shape.
   /// \param theFeature a feature instance
-  /// \param theFeature a shape
   /// \param isUpdateViewer the parameter whether the viewer should be update immediatelly
-  void Erase(boost::shared_ptr<ModelAPI_Feature> theFeature, const TopoDS_Shape& theShape,
-             const bool isUpdateViewer = true);
+  void Erase(boost::shared_ptr<ModelAPI_Feature> theFeature, const bool isUpdateViewer = true);
 
   /// Deactivates selection of sub-shapes
   /// \param isUpdateViewer the parameter whether the viewer should be update immediatelly
-  void GlobalSelection(const bool isUpdateViewer = true);
+  void CloseLocalContexts(const bool isUpdateViewer = true);
+
+protected:
+  /// Activate local selection
+  /// \param theAIS the list of objects
+  /// \param theMode the selection mode
+  /// \param isUpdateViewer the state wether the viewer should be updated immediatelly
+  void activateInLocalContext(const AIS_ListOfInteractive& theAISObjects, const int theMode,
+                              const bool isUpdateViewer);
+  /// Deactivate local selection
+  /// \param isUpdateViewer the state wether the viewer should be updated immediatelly
+  void closeAllContexts(const bool isUpdateViewer);
+
+  /// Returns currently installed AIS_InteractiveContext
+  Handle(AIS_InteractiveContext) AISContext() const;
 
 protected:
-  XGUI_Viewer* myViewer; ///< the viewer where the objects should be visualized
+  XGUI_Workshop* myWorkshop;
+  std::map<boost::shared_ptr<ModelAPI_Feature>, std::vector<Handle(AIS_InteractiveObject)> > myFeature2AISObjectMap;
 };
 
 #endif