Salome HOME
Issue #358: Prevent crashes on operations when viewer is absent
[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 class ModuleBase_ResultPrs: public AIS_Shape
20 {
21 public:
22   Standard_EXPORT ModuleBase_ResultPrs(ResultPtr theResult);
23
24   Standard_EXPORT ResultPtr getResult() const { return myResult; }
25
26   Standard_EXPORT bool isSketchMode() const { return myIsSketchMode; }
27
28   DEFINE_STANDARD_RTTI(ModuleBase_ResultPrs)
29 protected:
30   Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
31     const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0);
32
33   Standard_EXPORT virtual void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
34     const Standard_Integer aMode) ;
35
36 private:
37   ResultPtr myResult;
38
39   bool myIsSketchMode;
40
41   TopoDS_Shape myOriginalShape;
42   std::list<std::shared_ptr<GeomAPI_Shape> > myFacesList;
43 };
44
45
46 #endif