Salome HOME
Debug for deflection dump
[modules/shaper.git] / src / ModelAPI / ModelAPI_Validator.h
index af9eb2839e8ec56e01325982b97dfd7713fc17f9..c621363d5e147b15fdf43d7382f336605c88face 100644 (file)
@@ -13,6 +13,7 @@
 #include <list>
 
 class ModelAPI_Feature;
+class Events_InfoMessage;
 
 /**\class ModelAPI_Validator
  * \ingroup DataModel
@@ -84,7 +85,7 @@ class MODELAPI_EXPORT ModelAPI_ValidatorsFactory
 
   /// Returns true if the attribute is valid.
   virtual bool validate(const std::shared_ptr<ModelAPI_Attribute>& theAttribute,
-                        std::string& theValidator, std::string& theError) const = 0;
+                        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
@@ -100,9 +101,22 @@ 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<ModelAPI_Result> theUnconcealed,
+    std::shared_ptr<ModelAPI_Feature> theCanceledFeat) = 0;
+
+  /// Disables cancel of concealment of specific result by specific feature.
+  virtual void disableUnconcealment(std::shared_ptr<ModelAPI_Result> theUnconcealed,
+    std::shared_ptr<ModelAPI_Feature> theCanceledFeat) = 0;
+
+  /// Returns true if concealment is canceled.
+  virtual bool isUnconcealed(std::shared_ptr<ModelAPI_Result> theUnconcealed,
+    std::shared_ptr<ModelAPI_Feature> 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,
-    std::string theSwitchId, std::string theCaseId) = 0;
+    const std::list<std::pair<std::string, std::string> >& theCases) = 0;
 
  /// Returns true if the attribute must be checked (the case is selected)
   virtual bool isCase(FeaturePtr theFeature, std::string theAttribute) = 0;