X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_Validators.h;h=0e02a0e9fcbb1bfb861b010cf2ecaadde8e4c1f3;hb=857b1f72d9703c46c6c8c9bb239821d314344c86;hp=45df48dfdab1102d74496d45a53ed8e81c0aff60;hpb=324e003dfdc5e343baa124722c8a944df0276571;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_Validators.h b/src/PartSet/PartSet_Validators.h index 45df48dfd..0e02a0e9f 100644 --- a/src/PartSet/PartSet_Validators.h +++ b/src/PartSet/PartSet_Validators.h @@ -19,91 +19,124 @@ //! \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_AttributeValidator { + //! Validator possible error types + enum ErrorType { + EqualObjects, + EqualAttributes, + EqualShapes, + EmptyShapes + }; public: -// TODO(nds) v1.0.2 master -// /// 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; - // ======= end of todo //! 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: - //! Casts the attribute to an attribute kind and obtains an object value if it is possible - //! \param theAttribute a source attribute to find object - //! \return an attribute object or NULL - ObjectPtr getObject(const AttributePtr& theAttribute) const; - - //! 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; + 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; + }; /** @@ -117,23 +150,24 @@ class PartSet_SketchEntityValidator : public ModelAPI_AttributeValidator //! \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; }; -/**\class PartSet_SameTypeAttrValidator +/**\class PartSet_CoincidentAttr * \ingroup Validators - * \brief Validator for the tangent constraint input. - * - * It just checks that distance is greater than zero. + * \brief Validator to check whether there is a coincident constraint between + * the attribute and attribute of argument. */ -class PartSet_SameTypeAttrValidator : public ModelAPI_AttributeValidator +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) const; + const std::list& theArguments, + std::string& theError) const; };