X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_Validators.h;h=101bba5f90ffd0dff1a7d7e0a51661610015c24e;hb=c910e9e2e9e68bc1a9f857d555a0201c2c4c75f1;hp=6c3fc1897c330b743e04e3b79466b9f06c3233f3;hpb=9cde49a0e07fc3db8715f9e8f28213a5e3137505;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_Validators.h b/src/PartSet/PartSet_Validators.h index 6c3fc1897..101bba5f9 100644 --- a/src/PartSet/PartSet_Validators.h +++ b/src/PartSet/PartSet_Validators.h @@ -11,8 +11,7 @@ #include #include -#include -#include +#include /* * Selector validators @@ -20,7 +19,7 @@ //! \ingroup Validators //! A class to validate a selection for Distance constraint operation -class PartSet_DistanceValidator : public ModuleBase_SelectionValidator +class PartSet_DistanceSelection : public ModuleBase_SelectionValidator { public: PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; @@ -28,7 +27,7 @@ class PartSet_DistanceValidator : public ModuleBase_SelectionValidator //! \ingroup Validators //! A class to validate a selection for Length constraint operation -class PartSet_LengthValidator : public ModuleBase_SelectionValidator +class PartSet_LengthSelection : public ModuleBase_SelectionValidator { public: PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; @@ -36,75 +35,112 @@ class PartSet_LengthValidator : public ModuleBase_SelectionValidator //! \ingroup Validators //! A class to validate a selection for Perpendicular constraint operation -class PartSet_PerpendicularValidator : public ModuleBase_SelectionValidator +class PartSet_PerpendicularSelection : public ModuleBase_SelectionValidator { public: PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; }; //! \ingroup Validators -//! A class to validate a selection for Perpendicular constraint operation -class PartSet_ParallelValidator : public ModuleBase_SelectionValidator +//! A class to validate a selection for Parallel constraint operation +class PartSet_ParallelSelection : public ModuleBase_SelectionValidator { public: PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; }; //! \ingroup Validators -//! A class to validate a selection for Perpendicular constraint operation -class PartSet_RadiusValidator : public ModuleBase_SelectionValidator +//! A class to validate a selection for Radius constraint operation +class PartSet_RadiusSelection : public ModuleBase_SelectionValidator { public: PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; }; //! \ingroup Validators -//! A class to validate a selection for Perpendicular constraint operation -class PartSet_RigidValidator : public ModuleBase_SelectionValidator +//! A class to validate a selection for Rigid constraint operation +class PartSet_RigidSelection : public ModuleBase_SelectionValidator +{ + public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +}; + + +//! \ingroup Validators +//! A class to validate a selection for coincedence constraint operation +class PartSet_CoincidentSelection : public ModuleBase_SelectionValidator +{ + public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +}; + +//! \ingroup Validators +//! A class to validate a selection for Horizontal and Vertical constraints operation +class PartSet_HVDirSelection : public ModuleBase_SelectionValidator +{ + public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +}; + +//! \ingroup Validators +//! A class to validate a selection for Tangential constraints operation +class PartSet_TangentSelection : public ModuleBase_SelectionValidator { public: PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; }; +////////////// Attribute validators //////////////// + + /** * \ingroup Validators * A validator which checks that objects selected for feature attributes are different (not the same) */ -class PartSet_DifferentObjectsValidator : public ModelAPI_RefAttrValidator +class PartSet_DifferentObjectsValidator : public ModelAPI_AttributeValidator { public: - /// Returns True if the feature is valid - /// \param theFeature a feature to check - /// \param theArguments a list of arguments (names of attributes to check) - /// \param theObject a selected object - /// \param theShape a selected sub-shape - virtual bool isValid(const FeaturePtr& theFeature, const std::list& theArguments, - const ObjectPtr& theObject, const GeomShapePtr& theShape) const; - - //! Returns true if the attribute is good for the feature attribute - //! \param theFeature a feature to check - //! \param theArguments a list of arguments (names of attributes to check) - //! \param theAttribute an attribute - virtual bool isValid(const FeaturePtr& theFeature, const std::list& theArguments, - const AttributePtr& theAttribute) const; - //! Returns true if the attribute is good for the feature attribute //! \param theAttribute an attribute //! \param theArguments a list of arguments (names of attributes to check) virtual bool isValid(const AttributePtr& theAttribute, const std::list& theArguments) const; + +protected: + //! Checks whethe other feature attributes has a reference to the given attribute + //! \param theAttribute a source attribute to find object + //! \return a boolean value + bool featureHasReferences(const AttributePtr& theAttribute) const; }; /** * \ingroup Validators -* A Validator which validates tha selected object is a Sketch +* A validator which checks that objects selected for feature attributes are different (not the same) */ -class PartSet_SketchValidator : public ModelAPI_ResultValidator +class PartSet_SketchEntityValidator : public ModelAPI_AttributeValidator { public: - /// Returns True if the given object is a sketch - /// \param theObject an object - virtual bool isValid(const ObjectPtr theObject) const; + //! Returns true if the attribute is good for the feature attribute + //! \param theAttribute an attribute + //! \param theArguments a list of arguments (names of attributes to check) + virtual bool isValid(const AttributePtr& theAttribute, + const std::list& theArguments) const; +}; + +/**\class PartSet_SameTypeAttrValidator + * \ingroup Validators + * \brief Validator for the tangent constraint input. + * + * It just checks that distance is greater than zero. + */ +class PartSet_SameTypeAttrValidator : public ModelAPI_AttributeValidator +{ + public: + //! returns true if attribute is valid + //! \param theAttribute the checked attribute + //! \param theArguments arguments of the attribute + virtual bool isValid(const AttributePtr& theAttribute, + const std::list& theArguments) const; };