X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Update.h;h=c28d30b255ca3cba728e4a94e9713f3700c640fc;hb=refs%2Ftags%2FV_1.2.1;hp=6e09dc7ad324f83d670c4315d0e6e55a036a65bb;hpb=a24b7e6f4d112d5e7889fd76f030298fc428cd01;p=modules%2Fshaper.git diff --git a/src/Model/Model_Update.h b/src/Model/Model_Update.h index 6e09dc7ad..c28d30b25 100644 --- a/src/Model/Model_Update.h +++ b/src/Model/Model_Update.h @@ -23,18 +23,16 @@ class ModelAPI_Feature; */ class Model_Update : public Events_Listener { - /// initial set of updated features that must be processed: caused by external changes, not - /// by sequence of update of this class - std::set > myInitial; - /// already updated and processed features and modificated feature flag - std::map, bool> myUpdated; + /// created features during this transaction: must be updated all the time + std::set > myJustCreated; + /// updated features during this transaction: must be updated in the end of transaction + std::set > myJustUpdated; /// to know that all next updates are caused by this execution bool myIsExecuted; /// to know execute or not automatically all update bool myIsAutomatic; - /// just created features: they must be updated immideately even in not-automatic mode for - /// preview; cleared on commit operations - std::set > myJustCreatedOrUpdated; + /// to know that some parameter was changed during this operation + bool myIsParamUpdated; public: /// Is called only once, on startup of the application @@ -48,14 +46,25 @@ protected: void updateInDoc(std::shared_ptr theDoc); /// Recoursively checks and updates the feature if needed (calls the execute method) /// Returns true if feature was updated. - bool updateFeature(std::shared_ptr theFeature); + void updateFeature(std::shared_ptr theFeature); + + /// Updates the selection and parametrical arguments before the later feature analysis + void updateArguments(std::shared_ptr theFeature); - /// Recoursively checks and updates the object (result or feature) if needed (calls updateFeature) - /// Returns true if object was updated. - bool updateObject(std::shared_ptr theObject, const bool theCyclic = true); /// Sends the redisplay events for feature and results, updates the updated status void redisplayWithResults(std::shared_ptr theFeature, const ModelAPI_ExecState theState); + + /// 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, const bool theFinish = false); + + /// Performs the feature execution + /// \returns the status of execution + void executeFeature(std::shared_ptr theFeature); + + /// returns true if the object was created or updated + bool isUpdated(const std::shared_ptr& theObj); }; #endif