Salome HOME
Horisontal and vertical constraints added
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_HVDirection.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        SketcherPrs_HVDirection.h
4 // Created:     16 February 2015
5 // Author:      Vitaly SMETANNIKOV
6
7 #ifndef SketcherPrs_HVDirection_H
8 #define SketcherPrs_HVDirection_H
9
10 #include "SketcherPrs_SymbolPrs.h"
11
12 class SketchPlugin_Constraint;
13 class SketchPlugin_Sketch;
14
15
16 DEFINE_STANDARD_HANDLE(SketcherPrs_HVDirection, SketcherPrs_SymbolPrs)
17
18 /**
19 * \ingroup GUI
20 * A redefinition of standard AIS Interactive Object in order to provide  
21 * presentation of parallel constraint
22 */
23 class SketcherPrs_HVDirection: public SketcherPrs_SymbolPrs
24 {
25 public:
26   /// Constructor
27   /// \param theConstraint a constraint feature
28   /// \param thePlane a coordinate plane of current sketch
29   Standard_EXPORT SketcherPrs_HVDirection(SketchPlugin_Constraint* theConstraint, 
30                                          const std::shared_ptr<GeomAPI_Ax3>& thePlane,
31                                          bool isHorisontal);
32
33   DEFINE_STANDARD_RTTI(SketcherPrs_HVDirection)
34 protected:
35   /// Redefinition of virtual function
36   Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
37     const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0);
38
39   virtual const char* iconName() const { return myIsHorisontal? "horisontal.png" : "vertical.png"; }
40
41   /// Redefine this function in order to add additiona lines of constraint base
42   /// \param thePrs a presentation
43   /// \param theColor a color of additiona lines
44   virtual void drawLines(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor) const;
45
46 private:
47   bool myIsHorisontal;
48 };
49
50 #endif