Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / XGUI / XGUI_Displayer.h
index d8da366e8a4ca4e5a7b5e5af310e5f13e18d1d26..a8bfbe2f35d0d2364befa48b2b01163bf6deb4ea 100644 (file)
@@ -13,6 +13,9 @@
 #include <TopoDS_Shape.hxx>
 #include <AIS_InteractiveObject.hxx>
 #include <AIS_InteractiveContext.hxx>
+#include <NCollection_List.hxx>
+
+#include <XGUI_ViewerPrs.h>
 
 #include <map>
 #include <vector>
@@ -57,7 +60,12 @@ public:
   
   /// Returns the feature, that was displayed with this shape
   /// \param theShape a shape
-  boost::shared_ptr<ModelAPI_Feature> GetFeature( const TopoDS_Shape& theShape );
+  boost::shared_ptr<ModelAPI_Feature> GetFeature(const TopoDS_Shape& theShape);
+
+  /// Returns a list of viewer presentations
+  /// \param theShapes list of shapes to find corresponded features
+  /// \return list of presentations
+  std::list<XGUI_ViewerPrs> GetViewerPrs(const NCollection_List<TopoDS_Shape>& theShapes);
 
   /// Display the shape and activate selection of sub-shapes
   /// \param theFeature a feature instance
@@ -73,10 +81,17 @@ public:
   /// \param isUpdateViewer the parameter whether the viewer should be update immediatelly
   void Erase(boost::shared_ptr<ModelAPI_Feature> theFeature, const bool isUpdateViewer = true);
 
+  /// Erase all presentations
+  /// \param isUpdateViewer the parameter whether the viewer should be update immediatelly
+  void EraseAll(const bool isUpdateViewer = true);
+
   /// Deactivates selection of sub-shapes
   /// \param isUpdateViewer the parameter whether the viewer should be update immediatelly
   void CloseLocalContexts(const bool isUpdateViewer = true);
 
+  /// Updates the viewer
+  void UpdateViewer();
+
 protected:
   /// Deactivate local selection
   /// \param isUpdateViewer the state wether the viewer should be updated immediatelly