X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_Validators.h;h=7d78aeb10a7f2e879ef26261605d81ae8dda8f1a;hb=c55b14977783111c8b418b416c7f6c2fa545c5e5;hp=02e73de5fd0308875f827dcb3d1c4a14dd1ffdca;hpb=a24b7e6f4d112d5e7889fd76f030298fc428cd01;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_Validators.h b/src/PartSet/PartSet_Validators.h index 02e73de5f..7d78aeb10 100644 --- a/src/PartSet/PartSet_Validators.h +++ b/src/PartSet/PartSet_Validators.h @@ -19,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; @@ -27,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; @@ -35,36 +35,72 @@ 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; +}; + +//! \ingroup Validators +//! A class to validate a selection for Fillet constraints operation +class PartSet_FilletSelection : 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) @@ -72,22 +108,6 @@ class PartSet_RigidValidator : public ModuleBase_SelectionValidator class PartSet_DifferentObjectsValidator : public ModelAPI_AttributeValidator { 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) @@ -95,11 +115,6 @@ class PartSet_DifferentObjectsValidator : public ModelAPI_AttributeValidator 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 @@ -120,4 +135,21 @@ class PartSet_SketchEntityValidator : public ModelAPI_AttributeValidator 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; +}; + + #endif