Salome HOME
Merge branch 'Dev_0.7.1' of newgeom:newgeom into Dev_0.7.1
[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 <AIS_Shape.hxx>
15 #include <Standard_DefineHandle.hxx>
16
17 DEFINE_STANDARD_HANDLE(ModuleBase_ResultPrs, AIS_Shape)
18
19 /**
20 * A redefinition of standard AIS Interactive Object in order to provide specific behaviour 
21 * for wire presentations based in a one plane
22 */
23 class ModuleBase_ResultPrs: public AIS_Shape
24 {
25 public:
26   /// Constructor
27   /// \param theResult a result object
28   Standard_EXPORT ModuleBase_ResultPrs(ResultPtr theResult);
29
30   /// Returns result object
31   Standard_EXPORT ResultPtr getResult() const { return myResult; }
32
33   /// Returns True if the presentation is in sketch mode
34   Standard_EXPORT bool isSketchMode() const { return myIsSketchMode; }
35
36   DEFINE_STANDARD_RTTI(ModuleBase_ResultPrs)
37 protected:
38   /// Redefinition of virtual function
39   Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
40     const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0);
41
42   /// Redefinition of virtual function
43   Standard_EXPORT virtual void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
44     const Standard_Integer aMode) ;
45
46 private:
47   /// Reference to result object
48   ResultPtr myResult;
49
50   /// A sketch mode flag
51   bool myIsSketchMode;
52
53   /// Original shape of the result object
54   TopoDS_Shape myOriginalShape;
55
56   /// List of faces
57   std::list<std::shared_ptr<GeomAPI_Shape> > myFacesList;
58 };
59
60
61 #endif