]> SALOME platform Git repositories - modules/shaper.git/blob - src/ModuleBase/ModuleBase_ResultPrs.h
Salome HOME
Porting of object highlighting
[modules/shaper.git] / src / ModuleBase / ModuleBase_ResultPrs.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_ResultPrs.h
4 // Created:     21 October 2014
5 // Author:      Vitaly SMETANNIKOV
6
7 #ifndef ModuleBase_ResultPrs_H
8 #define ModuleBase_ResultPrs_H
9
10 #include "ModuleBase.h"
11
12 #include <ModelAPI_Result.h>
13
14 #include <ViewerData_AISShape.hxx>
15 #include <Standard_DefineHandle.hxx>
16 #include <StdSelect_BRepOwner.hxx>
17
18 #include <QMap>
19
20 DEFINE_STANDARD_HANDLE(ModuleBase_BRepOwner, StdSelect_BRepOwner)
21
22 /**
23 * \ingroup GUI
24 * A redefinition of standard BRep Owner in order to provide specific selection
25 * of CompSolid objects. This owner is created only for selection mode TopAbs_COMPSOLID
26 */
27 class ModuleBase_BRepOwner: public StdSelect_BRepOwner
28 {
29 public:
30   /// Constructor
31   /// \param aShape an owner shape
32   /// \param aPriority drawig priority
33   /// \param ComesFromDecomposition decomposition flag
34   ModuleBase_BRepOwner(const TopoDS_Shape& aShape,
35     const Standard_Integer aPriority = 0,
36     const Standard_Boolean ComesFromDecomposition = Standard_False)
37     : StdSelect_BRepOwner(aShape, aPriority, ComesFromDecomposition) {}
38
39   /// Highlight the presentation with the given color
40   /// \param aPM a presentations manager
41   /// \param aCol a color
42   /// \param aMode a drawing mode
43   virtual void HilightWithColor (const Handle(PrsMgr_PresentationManager3d)& aPM,
44     const Quantity_NameOfColor aCol, const Standard_Integer aMode = 0)
45   {
46     //PORTING_TO_SALOME_8
47     //Selectable()->HilightOwnerWithColor(aPM, aCol, this);
48   }
49
50   DEFINE_STANDARD_RTTIEXT(ModuleBase_BRepOwner, StdSelect_BRepOwner)
51 };
52
53
54
55 DEFINE_STANDARD_HANDLE(ModuleBase_ResultPrs, ViewerData_AISShape)
56
57 /**
58 * \ingroup GUI
59 * A redefinition of standard AIS Interactive Object in order to provide specific behaviour 
60 * for wire presentations based in a one plane
61 */
62 class ModuleBase_ResultPrs: public ViewerData_AISShape
63 {
64 public:
65   enum SelectionModes {
66     Sel_Result = TopAbs_SHAPE + 1 /// it should be combined with Compsolid results, so it is not
67                                   /// the Shape type. It is not defined in XML as compound type
68                                   /// because this type is processed as shape with compounds inside.
69   };
70
71 public:
72   /// Constructor
73   /// \param theResult a result object
74   Standard_EXPORT ModuleBase_ResultPrs(ResultPtr theResult);
75
76   //! Method which draws selected owners ( for fast presentation draw )
77   Standard_EXPORT virtual void HilightSelected(const Handle(PrsMgr_PresentationManager3d)& thePM,
78                                                const SelectMgr_SequenceOfOwner& theOwners);
79
80   //! Method which hilight an owner belonging to
81   //! this selectable object  ( for fast presentation draw )
82   Standard_EXPORT virtual void HilightOwnerWithColor(
83                                         const Handle(PrsMgr_PresentationManager3d)& thePM,
84                                         const Handle(Graphic3d_HighlightStyle)& theStyle,
85                                         const Handle(SelectMgr_EntityOwner)& theOwner);
86
87   /// Returns result object
88   Standard_EXPORT ResultPtr getResult() const { return myResult; }
89
90   /// Returns selection priorities that will be added to created selection owner
91   /// \return integer value
92   Standard_EXPORT int getAdditionalSelectionPriority() const
93   { return myAdditionalSelectionPriority; }
94
95   /// Appends a special priority for the mode of selection
96   /// \param theSelectionMode a mode of selection, used in ComputeSelection
97   /// \param thePriority a new priority value
98   Standard_EXPORT void setAdditionalSelectionPriority(const int thePriority);
99
100   DEFINE_STANDARD_RTTIEXT(ModuleBase_ResultPrs, ViewerData_AISShape)
101 protected:
102   /// Redefinition of virtual function
103   Standard_EXPORT virtual void Compute(
104     const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
105     const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0);
106
107   /// Redefinition of virtual function
108   Standard_EXPORT virtual void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
109     const Standard_Integer aMode) ;
110
111 private:
112   /// Appens sensitive and owners for wires of the given shape into selection
113   /// \param theSelection a current filled selection
114   /// \param theShape a shape
115   void appendWiresSelection(const Handle(SelectMgr_Selection)& theSelection,
116                             const TopoDS_Shape& theShape);
117
118   /// Reference to result object
119   ResultPtr myResult;
120
121   /// Original shape of the result object
122   TopoDS_Shape myOriginalShape;
123
124   /// selection priority that will be added to the standard
125   /// selection priority of the selection entity
126   int myAdditionalSelectionPriority;
127 };
128
129
130 #endif