X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Radius.h;h=386fc01c171fa4c81d5aca83d808668724901778;hb=9968ec652480079d0ca91b2040f6327a164807cf;hp=88a3c613c219d445c55f95b06e018bd38682e8b2;hpb=cc84ddead2c5dcb864d24de04df60b378f750824;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Radius.h b/src/SketcherPrs/SketcherPrs_Radius.h index 88a3c613c..386fc01c1 100644 --- a/src/SketcherPrs/SketcherPrs_Radius.h +++ b/src/SketcherPrs/SketcherPrs_Radius.h @@ -14,6 +14,8 @@ #include #include +class SketcherPrs_DimensionStyleListener; + DEFINE_STANDARD_HANDLE(SketcherPrs_Radius, AIS_RadiusDimension) /** @@ -29,7 +31,29 @@ public: Standard_EXPORT SketcherPrs_Radius(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane); + /// Destructor + Standard_EXPORT ~SketcherPrs_Radius(); + DEFINE_STANDARD_RTTI(SketcherPrs_Radius) + + /// Returns true if the constraint feature arguments are correcly filled to build AIS presentation + /// \param theConstraint a constraint feature + /// \param thePlane a coordinate plane of current sketch + /// \return boolean result value + static bool IsReadyToDisplay(ModelAPI_Feature* theConstraint, + const std::shared_ptr& thePlane); +private: + /// Fills the constraint parameters by constraint and plane + /// \param theConstraint a constraint feature + /// \param thePlane a coordinate plane of current sketch + /// \param theCircle a circle build on the constraint values + /// \param thePoint an anchor point to show text value + /// \param theRadius a circle custom radius value to be visualized + /// \return boolean result value + static bool readyToDisplay(ModelAPI_Feature* theConstraint, + const std::shared_ptr& thePlane, + gp_Circ& theCircle, gp_Pnt& theAnchorPoint, + double& theRadius); protected: /// Redefinition of virtual function Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager, @@ -44,9 +68,17 @@ private: ModelAPI_Feature* myConstraint; /// Plane of the current sketcher - std::shared_ptr myPlane; + std::shared_ptr mySketcherPlane; + + /// Listener to update dimension visualization style + SketcherPrs_DimensionStyleListener* myStyleListener; - Handle(Prs3d_DimensionAspect) myAspect; + /// container of values obtained from the constraint, which are necessary to fill the presentation + gp_Circ myCircle; ///< the radius circle + gp_Pnt myAnchorPoint; ///< an ancor for the radius value visualization + bool myHasParameters; ///< true if the atrribute value has used parameters + std::string myValue; ///< dimension value + double myRadius; ///< the radius custom value }; #endif \ No newline at end of file