X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_HVDirection.h;h=9f6204d2841dda5230b538c365e8f05023264d27;hb=a5746a7f8fd8bcd555fb16f98e312c86ca1210da;hp=84e993b05af9fb2ab7e05d38588de1abe40ce71b;hpb=747b8fc4fc7746b3abe2f0b4aa5a583ae38aedcb;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_HVDirection.h b/src/SketcherPrs/SketcherPrs_HVDirection.h index 84e993b05..9f6204d28 100644 --- a/src/SketcherPrs/SketcherPrs_HVDirection.h +++ b/src/SketcherPrs/SketcherPrs_HVDirection.h @@ -8,9 +8,7 @@ #define SketcherPrs_HVDirection_H #include "SketcherPrs_SymbolPrs.h" - -class SketchPlugin_Constraint; -class SketchPlugin_Sketch; +#include DEFINE_STANDARD_HANDLE(SketcherPrs_HVDirection, SketcherPrs_SymbolPrs) @@ -26,16 +24,13 @@ public: /// Constructor /// \param theConstraint a constraint feature /// \param thePlane a coordinate plane of current sketch - Standard_EXPORT SketcherPrs_HVDirection(SketchPlugin_Constraint* theConstraint, + /// \param isHorisontal a flag horizontal or vertical presentation + Standard_EXPORT SketcherPrs_HVDirection(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane, bool isHorisontal); DEFINE_STANDARD_RTTI(SketcherPrs_HVDirection) protected: - /// Redefinition of virtual function - Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager, - const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0); - virtual const char* iconName() const { return myIsHorisontal? "horisontal.png" : "vertical.png"; } /// Redefine this function in order to add additiona lines of constraint base @@ -43,6 +38,10 @@ protected: /// \param theColor a color of additiona lines virtual void drawLines(const Handle(Prs3d_Presentation)& thePrs, Quantity_Color theColor) const; + /// Update myPntArray according to presentation positions + /// \return true in case of success + virtual bool updatePoints(double theStep) const; + private: bool myIsHorisontal; };