Salome HOME
#1404 Random crash with Shaper: AIS presentations: coincidence/radius constraints...
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Radius.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        SketcherPrs_Radius.h
4 // Created:     26 March 2015
5 // Author:      Vitaly SMETANNIKOV
6
7
8 #ifndef SketcherPrs_Radius_H
9 #define SketcherPrs_Radius_H
10
11 #include <GeomAPI_Ax3.h>
12 #include <ModelAPI_Feature.h>
13
14 #include <AIS_RadiusDimension.hxx>
15 #include <Standard_DefineHandle.hxx>
16
17 class SketcherPrs_DimensionStyleListener;
18
19 DEFINE_STANDARD_HANDLE(SketcherPrs_Radius, AIS_RadiusDimension)
20
21 /**
22 * \ingroup GUI
23 * A class for representation of radius constraint
24 */
25 class SketcherPrs_Radius : public AIS_RadiusDimension
26 {
27 public:
28   /// Constructor
29   /// \param theConstraint a constraint feature
30   /// \param thePlane a coordinate plane of current sketch
31   Standard_EXPORT SketcherPrs_Radius(ModelAPI_Feature* theConstraint, 
32                         const std::shared_ptr<GeomAPI_Ax3>& thePlane);
33
34   /// Destructor
35   Standard_EXPORT ~SketcherPrs_Radius();
36
37   DEFINE_STANDARD_RTTI(SketcherPrs_Radius)
38
39   /// Returns true if the constraint feature arguments are correcly filled to build AIS presentation
40   /// \param theConstraint a constraint feature
41   /// \param thePlane a coordinate plane of current sketch
42   /// \return boolean result value
43   static bool IsReadyToDisplay(ModelAPI_Feature* theConstraint,
44                                const std::shared_ptr<GeomAPI_Ax3>& thePlane);
45 protected:
46   /// Redefinition of virtual function
47   Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
48     const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0);
49
50   /// Redefinition of virtual function
51   Standard_EXPORT virtual void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
52     const Standard_Integer aMode);
53
54 private:
55   /// Constraint feature
56   ModelAPI_Feature* myConstraint;
57
58   /// Plane of the current sketcher
59   std::shared_ptr<GeomAPI_Ax3> mySketcherPlane;
60
61   /// Listener to update dimension visualization style
62   SketcherPrs_DimensionStyleListener* myStyleListener;
63
64   /// container of values obtained from the constraint, which are necessary to fill the presentation
65   double myRadius; ///< the radius custom value
66   gp_Circ myCircle; ///< the radius circle
67   gp_Pnt myAncorPnt; ///< an ancor for the radius value visualization
68
69   bool myHasParameters; ///< true if the atrribute value has used parameters
70   std::string myValue; ///< dimension value
71 };
72
73 #endif