X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Update.h;h=d8d590497deb710c2867dc21f7a8b35bca0c1707;hb=7180ff8200cdfcbdcf28b31e6b8729824b3f1599;hp=dd687177a0159f2625ae7da3aa11b6c9d4cdab51;hpb=bc7766c4eb1e2ebd5f254be31702eacc0568a53e;p=modules%2Fshaper.git diff --git a/src/Model/Model_Update.h b/src/Model/Model_Update.h index dd687177a..d8d590497 100644 --- a/src/Model/Model_Update.h +++ b/src/Model/Model_Update.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: Model_Update.hxx // Created: 25 Jun 2014 // Author: Mikhail PONIKAROV @@ -21,17 +23,18 @@ class ModelAPI_Feature; */ class Model_Update : public Events_Listener { - /// initial set of updated features that must be processed - std::set > myInitial; - /// already updated and processed features and modificated feature flag - std::map, bool> myUpdated; + /// updated features during this transaction: must be updated immediately + std::set > myJustUpdated; + /// features that must be additionally processed after execution of finish operation + std::set > myWaitForFinish; /// to know that all next updates are caused by this execution - bool isExecuted; + bool myIsExecuted; /// 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 > myJustCreatedOrUpdated; + 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; public: /// Is called only once, on startup of the application @@ -41,18 +44,26 @@ class Model_Update : public Events_Listener MODEL_EXPORT virtual void processEvent(const std::shared_ptr& theMessage); protected: - /// updates all features in the document and then - in sub-documents - 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, + std::set >& theProcessed); + + /// Updates the selection and parametrical arguments before the later feature analysis + /// Returns true if something really was updated + 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); }; #endif