X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_Validator.h;h=c621363d5e147b15fdf43d7382f336605c88face;hb=5944daf4fc389aee952abc5ace5a618512684f87;hp=06068e011c591797773219931d176935bd3811cd;hpb=f1cd93fd02a54259f72e3191d037323a496b2bef;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Validator.h b/src/ModelAPI/ModelAPI_Validator.h index 06068e011..c621363d5 100644 --- a/src/ModelAPI/ModelAPI_Validator.h +++ b/src/ModelAPI/ModelAPI_Validator.h @@ -8,10 +8,12 @@ #define ModelAPI_Validator_H_ #include +#include #include #include class ModelAPI_Feature; +class Events_InfoMessage; /**\class ModelAPI_Validator * \ingroup DataModel @@ -37,7 +39,7 @@ typedef std::shared_ptr ValidatorPtr; /**\class ModelAPI_ValidatorsFactory * \ingroup DataModel - * \breif Manages the registered validators + * \brief Manages the registered validators * * Allows to get a validator by the feature identifier and * the attribute identifier (if attribute is validated). @@ -66,14 +68,14 @@ class MODELAPI_EXPORT ModelAPI_ValidatorsFactory const std::string& theAttrID, const std::list& theArguments) = 0; + /// Validators is a list of pairs + typedef std::list > > Validators; /// Provides a validator for the feature, returns NULL if no validator virtual void validators(const std::string& theFeatureID, - std::list& theResult, - std::list >& theArguments) const = 0; + Validators& theResult) const = 0; /// Provides a validator for the attribute, returns NULL if no validator virtual void validators(const std::string& theFeatureID, const std::string& theAttrID, - std::list& theValidators, - std::list >& theArguments) const = 0; + Validators& theResult) const = 0; /// Returns registered validator by its Id virtual const ModelAPI_Validator* validator(const std::string& theID) const = 0; @@ -81,6 +83,10 @@ class MODELAPI_EXPORT ModelAPI_ValidatorsFactory /// Returns true if feature and all its attributes are valid. virtual bool validate(const std::shared_ptr& theFeature) const = 0; + /// Returns true if the attribute is valid. + virtual bool validate(const std::shared_ptr& theAttribute, + std::string& theValidator, Events_InfoMessage& theError) const = 0; + /// 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) = 0; @@ -95,6 +101,26 @@ class MODELAPI_EXPORT ModelAPI_ValidatorsFactory /// Returns true that it was registered that attribute conceals the referenced result virtual bool isConcealed(std::string theFeature, std::string theAttribute) = 0; + /// Registers (by Recover feature) cancel of concealment of specific result by specific feature. + /// If theCanceledFeat is empty, the concealment is canceled for this result forever. + virtual void registerUnconcealment(std::shared_ptr theUnconcealed, + std::shared_ptr theCanceledFeat) = 0; + + /// Disables cancel of concealment of specific result by specific feature. + virtual void disableUnconcealment(std::shared_ptr theUnconcealed, + std::shared_ptr theCanceledFeat) = 0; + + /// Returns true if concealment is canceled. + virtual bool isUnconcealed(std::shared_ptr theUnconcealed, + std::shared_ptr theCanceledFeat) = 0; + + /// Register the case-attribute: this attribute is checked only if its case is selected + virtual void registerCase(std::string theFeature, std::string theAttribute, + const std::list >& theCases) = 0; + + /// Returns true if the attribute must be checked (the case is selected) + virtual bool isCase(FeaturePtr theFeature, std::string theAttribute) = 0; + protected: /// Get instance from Session ModelAPI_ValidatorsFactory()