X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_Validators.h;h=02e73de5fd0308875f827dcb3d1c4a14dd1ffdca;hb=a24b7e6f4d112d5e7889fd76f030298fc428cd01;hp=10cdcf26a72e3fd5064ea39a6abbefc210746818;hpb=325816a58ad824dbb155f0cd91902a0147f04101;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_Validators.h b/src/PartSet/PartSet_Validators.h index 10cdcf26a..02e73de5f 100644 --- a/src/PartSet/PartSet_Validators.h +++ b/src/PartSet/PartSet_Validators.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: PartSet_Validators.h // Created: 09 July 2014 // Author: Vitaly SMETANNIKOV @@ -9,17 +11,113 @@ #include #include +#include + +/* + * Selector validators + */ + +//! \ingroup Validators +//! A class to validate a selection for Distance constraint operation +class PartSet_DistanceValidator : public ModuleBase_SelectionValidator +{ + public: + 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 +{ + 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_PerpendicularValidator : public ModuleBase_SelectionValidator +{ + public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +}; -class PartSet_DistanceValidator: public ModuleBase_SelectionValidator +//! \ingroup Validators +//! A class to validate a selection for Perpendicular constraint operation +class PartSet_ParallelValidator : public ModuleBase_SelectionValidator { -public: + public: PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; }; -class PartSet_LengthValidator: public ModuleBase_SelectionValidator +//! \ingroup Validators +//! A class to validate a selection for Perpendicular constraint operation +class PartSet_RadiusValidator : public ModuleBase_SelectionValidator { -public: + 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 +{ + public: + PARTSET_EXPORT virtual bool isValid(const ModuleBase_ISelection* theSelection) const; +}; + +/** +* \ingroup Validators +* A validator which checks that objects selected for feature attributes are different (not the same) +*/ +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) + 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; +}; + +/** +* \ingroup Validators +* A validator which checks that objects selected for feature attributes are different (not the same) +*/ +class PartSet_SketchEntityValidator : public ModelAPI_AttributeValidator +{ + public: + //! 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; +}; + #endif