Salome HOME
Issue #2309 Possibility to hide faces : redisplay objects by transparency check box...
[modules/shaper.git] / src / ModuleBase / ModuleBase_ResultPrs.h
index 6d46e4ef5c7b85cbef8be991b096f676bbb5b105..642beb8fbf090ca2b52899c05f614cf06de49cc1 100644 (file)
 
 #include <ModelAPI_Result.h>
 
+#include <NCollection_List.hxx>
 #include <ViewerData_AISShape.hxx>
 #include <Standard_DefineHandle.hxx>
-#include <StdSelect_BRepOwner.hxx>
+#include <TopoDS_Compound.hxx>
 
 #include <QMap>
 
-DEFINE_STANDARD_HANDLE(ModuleBase_BRepOwner, StdSelect_BRepOwner)
-
-/**
-* \ingroup GUI
-* A redefinition of standard BRep Owner in order to provide specific selection
-* of CompSolid objects. This owner is created only for selection mode TopAbs_COMPSOLID
-*/
-class ModuleBase_BRepOwner: public StdSelect_BRepOwner
-{
-public:
-  /// Constructor
-  /// \param aShape an owner shape
-  /// \param aPriority drawig priority
-  /// \param ComesFromDecomposition decomposition flag
-  ModuleBase_BRepOwner(const TopoDS_Shape& aShape,
-    const Standard_Integer aPriority = 0,
-    const Standard_Boolean ComesFromDecomposition = Standard_False)
-    : StdSelect_BRepOwner(aShape, aPriority, ComesFromDecomposition) {}
-
-  /// Highlight the presentation with the given color
-  /// \param aPM a presentations manager
-  /// \param theStyle a style of presentation
-  /// \param aMode a drawing mode
-  virtual void HilightWithColor (const Handle(PrsMgr_PresentationManager3d)& aPM,
-    const Handle(Graphic3d_HighlightStyle)& theStyle, const Standard_Integer aMode = 0)
-  {
-    Selectable()->HilightOwnerWithColor(aPM, theStyle, this);
-  }
-
-  DEFINE_STANDARD_RTTIEXT(ModuleBase_BRepOwner, StdSelect_BRepOwner)
-};
-
-
+class AIS_ColoredDrawer;
+class AIS_InteractiveContext;
 
 DEFINE_STANDARD_HANDLE(ModuleBase_ResultPrs, ViewerData_AISShape)
 
@@ -110,7 +80,30 @@ public:
   /// \param thePriority a new priority value
   Standard_EXPORT void setAdditionalSelectionPriority(const int thePriority);
 
+  //! Updates color of sub shape drawer
+  Standard_EXPORT virtual void SetColor (const Quantity_Color& theColor);
+
+  /// Change presentation to have given shape hidden.
+  /// It suports FACE type of the shape to be hidden.
+  /// If presentation type is greater than FACE, the SHELL with be shown with the FACE hidden
+  /// It is possible to hide more than one FACE by calling the method with given FACES
+  /// Visual state of the face is controlled by the second parameter
+  /// \param theShapes a container of shape objects
+  /// \returns true if the presentation is changed, or false (if for example it was hidden)
+  Standard_EXPORT bool setSubShapeHidden(const NCollection_List<TopoDS_Shape>& theShapes);
+
+  /// Returns true if there are no hidden sub shapes or original shape has at least one not hidden
+  /// \param theShapeToSkip the shape should be interpreted as additional hidden in the presentation
+  /// \return boolean value
+  Standard_EXPORT bool hasSubShapeVisible(const TopoDS_Shape& theShapeToSkip);
+
+  /// Set transparency of hidden sub shapes: if value is 1, shapes are entirely hidden
+  /// \param theTransparency transparency value
+  /// \return false if parameter is out of [0, 1]
+  Standard_EXPORT bool setHiddenSubShapeTransparency(double theTransparency);
+
   DEFINE_STANDARD_RTTIEXT(ModuleBase_ResultPrs, ViewerData_AISShape)
+
 protected:
   /// Redefinition of virtual function
   Standard_EXPORT virtual void Compute(
@@ -119,14 +112,17 @@ protected:
 
   /// Redefinition of virtual function
   Standard_EXPORT virtual void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
-    const Standard_Integer aMode) ;
+                                                const Standard_Integer theMode) ;
 
 private:
-  /// Appens sensitive and owners for wires of the given shape into selection
+  /// If the shape of this presentation is Vertex, it appends custom sensitive and owners for it.
+  /// Owner is a usual Brep owner with "isDecomposite" in true. It is necessary to have "Ring"
+  /// highlight/selected marker.
   /// \param theSelection a current filled selection
-  /// \param theShape a shape
-  void appendWiresSelection(const Handle(SelectMgr_Selection)& theSelection,
-                            const TopoDS_Shape& theShape);
+  /// \param theMode a selection mode
+  /// \return true if the owner is created
+  bool appendVertexSelection(const Handle(SelectMgr_Selection)& aSelection,
+                             const Standard_Integer theMode);
 
   /// Reference to result object
   ResultPtr myResult;
@@ -134,6 +130,12 @@ private:
   /// Original shape of the result object
   TopoDS_Shape myOriginalShape;
 
+  /// Container of original Shape sub shape to be hidden and not selectable
+  NCollection_List<TopoDS_Shape> myHiddenSubShapes;
+  TopoDS_Compound myHiddenCompound; /// compound of hidden sub shapes
+  double myTransparency; ///< transparency of hidden shapes, where 0 - there is no transparency
+  Handle(AIS_ColoredDrawer) myHiddenSubShapesDrawer; ///< drawer for hidden sub shapes
+
   /// selection priority that will be added to the standard
   /// selection priority of the selection entity
   int myAdditionalSelectionPriority;