X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Validator.h;h=35e2d18c0c7ee05e286b93b28b37071e8990d262;hb=38afbd899a8645c83e17f2c24a17a2b7414911b4;hp=cfaeb89c5ff1369c9cb184385cb82228b2869d50;hpb=e97b8971af2bac1be9a67956de5ee4194f1fd10f;p=modules%2Fshaper.git diff --git a/src/Model/Model_Validator.h b/src/Model/Model_Validator.h index cfaeb89c5..35e2d18c0 100644 --- a/src/Model/Model_Validator.h +++ b/src/Model/Model_Validator.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: Model_Validator.hxx // Created: 2 Jul 2014 // Author: Mikhail PONIKAROV @@ -32,6 +34,10 @@ class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory std::map myFeatures; /// validators IDs and arguments by feature and attribute IDs std::map > myAttrs; + /// Stores the registered attributes that leads to the concealment of referenced objects in + /// data tree. Map from feature kind to set of attribute IDs. + std::map > myConcealed; + public: /// Registers the instance of the validator by the ID MODEL_EXPORT virtual void registerValidator(const std::string& theID, @@ -66,16 +72,22 @@ class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory MODEL_EXPORT virtual const ModelAPI_Validator* validator(const std::string& theID) const; /// Returns true if feature and all its attributes are valid. - MODEL_EXPORT virtual bool validate(const boost::shared_ptr& theFeature) const; + MODEL_EXPORT virtual bool validate(const std::shared_ptr& theFeature) const; /// register that this attribute in feature is not obligatory for the feature execution /// so, it is not needed for the standard validation mechanism virtual void registerNotObligatory(std::string theFeature, std::string theAttribute); + /// Returns true if the attribute in feature is not obligatory for the feature execution + virtual bool isNotObligatory(std::string theFeature, std::string theAttribute); + /// register that this attribute conceals in the object browser /// all referenced features after execution virtual void registerConcealment(std::string theFeature, std::string theAttribute); + /// Returns true that it was registered that attribute conceals the referenced result + virtual bool isConcealed(std::string theFeature, std::string theAttribute); + protected: void addDefaultValidators(std::list& theValidators) const; /// Get instance from Session