Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / Model / Model_Update.h
index d49c1c01e1c74aac7c32c020f5fa85f9979f8be1..f73378580918531e8c17f3e28da3cbce8eb18fda 100644 (file)
@@ -2,8 +2,8 @@
 // Created:     25 Jun 2014
 // Author:      Mikhail PONIKAROV
 
-#ifndef Model_Update_HeaderFile
-#define Model_Update_HeaderFile
+#ifndef Model_Update_H_
+#define Model_Update_H_
 
 #include "Model.h"
 #include "Events_Listener.h"
@@ -11,6 +11,7 @@
 #include <set>
 #include <map>
 
+class ModelAPI_Object;
 class ModelAPI_Feature;
 
 /**\class Model_Update
@@ -19,21 +20,33 @@ class ModelAPI_Feature;
  */
 class Model_Update : public Events_Listener
 {
-  ///< initial set of updated features that must be processed
-  std::set<boost::shared_ptr<ModelAPI_Feature> > myInitial;
-  ///< already updated and processed features and modificated feature flag
-  std::map<boost::shared_ptr<ModelAPI_Feature>, bool> myUpdated;
-public:
+  /// initial set of updated features that must be processed
+  std::set<boost::shared_ptr<ModelAPI_Object> > myInitial;
+  /// already updated and processed features and modificated feature flag
+  std::map<boost::shared_ptr<ModelAPI_Object>, bool> myUpdated;
+  /// to know that all next updates are caused by this execution
+  bool isExecuted;
+  /// to know execute or not automatically all update
+  bool isAutomatic;
+  /// just created features: they must be updated immideately even in not-automatic mode for 
+  /// preview; cleared on commit operations
+  std::set<boost::shared_ptr<ModelAPI_Object> > myJustCreatedOrUpdated;
+
+ public:
   /// Is called only once, on startup of the application
   Model_Update();
 
   /// Processes the feature argument update: executes the results
-  MODEL_EXPORT virtual void processEvent(const Events_Message* theMessage);
+  MODEL_EXPORT virtual void processEvent(const boost::shared_ptr<Events_Message>& theMessage);
 
-protected:
-  /// Recoursively checks and updates the feature if needed
+ protected:
+  /// Recoursively checks and updates the feature if needed (calls the execute method)
   /// Returns true if feature was updated.
   bool updateFeature(boost::shared_ptr<ModelAPI_Feature> theFeature);
+
+  /// Recoursively checks and updates the object (result or feature) if needed (calls updateFeature)
+  /// Returns true if object was updated.
+  bool updateObject(boost::shared_ptr<ModelAPI_Object> theObject);
 };
 
 #endif