Salome HOME
Merge branch 'Dev_1.4.0' of newgeom:newgeom into Dev_1.4.0
[modules/shaper.git] / src / Model / Model_Update.h
index 22fe573b9c061cc39282cd60d6b25f19f81a4e30..aed04adae6191dc2b79b3b31085348e53baad9e8 100644 (file)
@@ -23,14 +23,20 @@ class ModelAPI_Feature;
  */
 class Model_Update : public Events_Listener
 {
-  /// created features during this transaction: must be updated all the time
-  std::set<std::shared_ptr<ModelAPI_Object> > myJustCreated;
-  /// updated features during this transaction: must be updated in the end of transaction
+  /// updated features during this transaction: must be updated immediately
   std::set<std::shared_ptr<ModelAPI_Object> > myJustUpdated;
+  /// features that must be additionally processed after execution of finish operation
+  std::set<std::shared_ptr<ModelAPI_Object> > myWaitForFinish;
   /// to know that all next updates are caused by this execution
   bool myIsExecuted;
   /// to know execute or not automatically all update
   bool myIsAutomatic;
+  /// to know that some parameter was changed during this operation
+  bool myIsParamUpdated;
+  /// to execute features of finish if perview is not needed
+  bool myIsFinish;
+  /// Set of already processed features in the "processOperation" method
+  std::set<std::shared_ptr<ModelAPI_Feature> > myProcessed;
 
  public:
   /// Is called only once, on startup of the application
@@ -40,13 +46,12 @@ class Model_Update : public Events_Listener
   MODEL_EXPORT virtual void processEvent(const std::shared_ptr<Events_Message>& theMessage);
 
 protected:
-  /// updates all features in the document and then - in sub-documents
-  void updateInDoc(std::shared_ptr<ModelAPI_Document> theDoc);
   /// Recoursively checks and updates the feature if needed (calls the execute method)
   /// Returns true if feature was updated.
   void updateFeature(std::shared_ptr<ModelAPI_Feature> theFeature);
 
   /// Updates the selection and parametrical arguments before the later feature analysis
+  /// Returns true if something really was updated
   void updateArguments(std::shared_ptr<ModelAPI_Feature> theFeature);
 
   /// Sends the redisplay events for feature and results, updates the updated status
@@ -55,7 +60,7 @@ protected:
 
   /// On operation start/end/abort the "Just" fileds must be cleared and processed in the right way
   /// \param theTotalUpdate force to updates everything that has been changed in this operation
-  void processOperation(const bool theTotalUpdate);
+  void processOperation(const bool theTotalUpdate, const bool theFinish = false);
 
   /// Performs the feature execution
   /// \returns the status of execution