X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_Validators.h;h=0e02a0e9fcbb1bfb861b010cf2ecaadde8e4c1f3;hb=857b1f72d9703c46c6c8c9bb239821d314344c86;hp=be1bb0ef5c149fa4ea04866b636f62e49aaa74f0;hpb=9a9c66f23574f92bba945e8dc01bc8d764c3024c;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_Validators.h b/src/PartSet/PartSet_Validators.h index be1bb0ef5..0e02a0e9f 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,90 +19,155 @@ //! \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: + protected: PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; }; //! \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: + protected: PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; }; //! \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: + protected: 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: + protected: 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: + protected: 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: + protected: + 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 +{ + protected: + 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 +{ + protected: + 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 +{ + protected: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +}; + +//! \ingroup Validators +//! A class to validate a selection for Fillet constraints operation +class PartSet_FilletSelection : public ModuleBase_SelectionValidator +{ + protected: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +}; + +//! \ingroup Validators +//! A class to validate a selection for Angle constraints operation +class PartSet_AngleSelection : public ModuleBase_SelectionValidator +{ + protected: 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 { + //! Validator possible error types + enum ErrorType { + EqualObjects, + EqualAttributes, + EqualShapes, + EmptyShapes + }; 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 - virtual bool isValid(const FeaturePtr& theFeature, const std::list& theArguments, - const ObjectPtr& theObject) 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; + const std::list& theArguments, + std::string& theError) const; +private: + //! Returns error message for the error type + //! \param theType a type of error + //! \param thEqualObjectInfo an + std::string errorMessage(const PartSet_DifferentObjectsValidator::ErrorType& theType, + const std::string& thEqualObject, const std::string& theFirstAttribute, + const std::string& theSecondAttribute) 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, + std::string& theError) const; +}; + +/**\class PartSet_CoincidentAttr + * \ingroup Validators + * \brief Validator to check whether there is a coincident constraint between + * the attribute and attribute of argument. + */ +class PartSet_CoincidentAttr : 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, + std::string& theError) const; };