X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Validator.h;h=0bd242ad202e0e06828f0240a6192a9df831bf13;hb=443d4d24432c8bb907c28b23bf8db67dad263886;hp=e2f67b617dde97fb7a9024be9d37217d8a2fd95b;hpb=3efd29f07fa128246690fd24a3439048b5e95878;p=modules%2Fshaper.git diff --git a/src/Model/Model_Validator.h b/src/Model/Model_Validator.h index e2f67b617..0bd242ad2 100644 --- a/src/Model/Model_Validator.h +++ b/src/Model/Model_Validator.h @@ -14,7 +14,7 @@ /**\class Model_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). @@ -37,6 +37,10 @@ class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory /// 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; + /// Stores the registered attributes must be checked only if the particular case is activated + /// Map from feature kind to map of attribute IDs to pair + // (switchId (ID of the attribute) and case Id (possible values of the switch attribute)) + std::map > > myCases; public: /// Registers the instance of the validator by the ID @@ -88,7 +92,16 @@ class Model_ValidatorsFactory : public ModelAPI_ValidatorsFactory /// Returns true that it was registered that attribute conceals the referenced result virtual bool isConcealed(std::string theFeature, std::string theAttribute); + /// register the case-attribute (\a myCases set definition) + virtual void registerCase(std::string theFeature, std::string theAttribute, + std::string theSwitchId, std::string theCaseId); + + /// Returns true if the attribute must be checked (the case is selected) + virtual bool isCase(FeaturePtr theFeature, std::string theAttribute); + + protected: + /// Adds the defualt validators that are usefull for all features. void addDefaultValidators(std::list& theValidators, std::list >& theArguments) const; /// Get instance from Session