Salome HOME
empty AIS presentation should not be visualized in the viewer. It is caused by OCCT...
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Coincident.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        SketcherPrs_Coincident.h
4 // Created:     12 February 2015
5 // Author:      Vitaly SMETANNIKOV
6
7 #ifndef SketcherPrs_Coincident_H
8 #define SketcherPrs_Coincident_H
9
10 #include <GeomAPI_Ax3.h>
11 #include <ModelAPI_Feature.h>
12
13 #include <AIS_InteractiveObject.hxx>
14 #include <Standard_DefineHandle.hxx>
15
16
17 DEFINE_STANDARD_HANDLE(SketcherPrs_Coincident, AIS_InteractiveObject)
18
19 /**
20 * \ingroup GUI
21 * A redefinition of standard AIS Interactive Object in order to provide  
22 * presentation of coincident constraint
23 */
24 class SketcherPrs_Coincident: public AIS_InteractiveObject
25 {
26 public:
27   /// Constructor
28   /// \param theConstraint a constraint object
29   /// \param thePlane plane of a sketch
30   Standard_EXPORT SketcherPrs_Coincident(ModelAPI_Feature* theConstraint, 
31                                          const std::shared_ptr<GeomAPI_Ax3>& thePlane);
32
33   /// Defines color for the presentation
34   /// \param aColor a color object
35   Standard_EXPORT virtual void SetColor(const Quantity_Color& aColor);
36   
37   /// Defines color for the presentation
38   /// \param aColor a color name
39   Standard_EXPORT virtual void SetColor(const Quantity_NameOfColor aColor);
40
41   /// Returns true if the constraint feature arguments are correcly filled to build AIS presentation
42   /// \param theConstraint a constraint feature
43   /// \param thePlane a coordinate plane of current sketch
44   /// \return boolean result value
45   static bool IsReadyToDisplay(ModelAPI_Feature* theConstraint,
46                                const std::shared_ptr<GeomAPI_Ax3>& thePlane);
47
48   DEFINE_STANDARD_RTTI(SketcherPrs_Coincident)
49 protected:
50   /// Redefinition of virtual function
51   Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
52     const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0);
53
54   /// Redefinition of virtual function
55   Standard_EXPORT virtual void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
56     const Standard_Integer aMode) ;
57
58 private:
59   ModelAPI_Feature* myConstraint;
60   std::shared_ptr<GeomAPI_Ax3> myPlane;
61   gp_Pnt myPoint;
62 };
63
64
65 #endif