X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketcherPrs%2FSketcherPrs_Coincident.h;h=9d6d799adcd971c9e728f49d292e78c7052a54f6;hb=c1d1f617a04aacf5f0d6246c1b8dea72dd2d6093;hp=72c7ec5d01a9494ab707016fc3bc8fae66e0b9d0;hpb=368eb86f8835d384a102ad84410a6c825c597a8c;p=modules%2Fshaper.git diff --git a/src/SketcherPrs/SketcherPrs_Coincident.h b/src/SketcherPrs/SketcherPrs_Coincident.h index 72c7ec5d0..9d6d799ad 100644 --- a/src/SketcherPrs/SketcherPrs_Coincident.h +++ b/src/SketcherPrs/SketcherPrs_Coincident.h @@ -8,12 +8,11 @@ #define SketcherPrs_Coincident_H #include +#include #include #include -class SketchPlugin_Constraint; - DEFINE_STANDARD_HANDLE(SketcherPrs_Coincident, AIS_InteractiveObject) @@ -26,14 +25,33 @@ class SketcherPrs_Coincident: public AIS_InteractiveObject { public: /// Constructor - /// \param theResult a result object - Standard_EXPORT SketcherPrs_Coincident(SketchPlugin_Constraint* theConstraint, + /// \param theConstraint a constraint object + /// \param thePlane plane of a sketch + Standard_EXPORT SketcherPrs_Coincident(ModelAPI_Feature* theConstraint, const std::shared_ptr& thePlane); + /// Defines color for the presentation + /// \param aColor a color object Standard_EXPORT virtual void SetColor(const Quantity_Color& aColor); + /// Defines color for the presentation + /// \param aColor a color name Standard_EXPORT virtual void SetColor(const Quantity_NameOfColor aColor); - + + /// Set state of the presentation, in case of conflicting state, the icon of the presentation is + /// visualized in error color. The state is stored in an internal field, so should be changed when + /// constraint become not conflicting + /// \param theConflicting a state + /// \param theColor a color for conflicting object + Standard_EXPORT void SetConflictingConstraint(const bool& theConflicting, const std::vector& theColor); + + /// 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); + DEFINE_STANDARD_RTTI(SketcherPrs_Coincident) protected: /// Redefinition of virtual function @@ -45,9 +63,16 @@ protected: const Standard_Integer aMode) ; private: - SketchPlugin_Constraint* myConstraint; - std::shared_ptr myPlane; + static bool readyToDisplay(ModelAPI_Feature* theConstraint, + const std::shared_ptr& thePlane, + gp_Pnt& thePoint); + +private: + ModelAPI_Feature* myConstraint; + std::shared_ptr mySketcherPlane; gp_Pnt myPoint; + bool myIsConflicting; /// state if the presentation is visualized in error state + Quantity_Color myConflictingColor; /// the color of mid ring if there is a conflict };