Salome HOME
Merge Dev_2.1.0 with PythonAPI branch
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Angle.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        SketcherPrs_Angle.h
4 // Created:     20 August 2015
5 // Author:      Vitaly SMETANNIKOV
6
7
8 #ifndef SketcherPrs_Angle_H
9 #define SketcherPrs_Angle_H
10
11 #include <GeomAPI_Ax3.h>
12 #include <ModelAPI_Feature.h>
13
14 #include <AIS_AngleDimension.hxx>
15 #include <Standard_DefineHandle.hxx>
16
17 DEFINE_STANDARD_HANDLE(SketcherPrs_Angle, AIS_AngleDimension)
18
19 /**
20 * \ingroup GUI
21 * A class for representation of angle constraint
22 */
23 class SketcherPrs_Angle : public AIS_AngleDimension
24 {
25 public:
26   /// Constructor
27   /// \param theConstraint a constraint feature
28   /// \param thePlane a coordinate plane of current sketch
29   Standard_EXPORT SketcherPrs_Angle(ModelAPI_Feature* theConstraint, 
30                         const std::shared_ptr<GeomAPI_Ax3>& thePlane);
31
32   DEFINE_STANDARD_RTTI(SketcherPrs_Angle)
33 protected:
34   /// Redefinition of virtual function
35   Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
36     const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0);
37
38   /// Redefinition of virtual function
39   Standard_EXPORT virtual void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
40     const Standard_Integer aMode);
41
42 private:
43   /// Constraint feature
44   ModelAPI_Feature* myConstraint;
45
46   /// Plane of the current sketcher
47   std::shared_ptr<GeomAPI_Ax3> myPlane;
48
49   Handle(Prs3d_DimensionAspect) myAspect;
50 };
51
52
53 #endif