X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Update.h;h=6e09dc7ad324f83d670c4315d0e6e55a036a65bb;hb=6f77dfcd9833cdba0c583e6218350f1f7043eb8b;hp=e5851910fd94d8e4646c72d0149bf6575e5c06f4;hpb=5a2e82b6ec9945c11a57dd63559bef2f219f4abe;p=modules%2Fshaper.git diff --git a/src/Model/Model_Update.h b/src/Model/Model_Update.h index e5851910f..6e09dc7ad 100644 --- a/src/Model/Model_Update.h +++ b/src/Model/Model_Update.h @@ -1,13 +1,16 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: Model_Update.hxx // 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 #include "Events_Listener.h" -#include +#include #include #include @@ -20,27 +23,39 @@ 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; - ///< to know that all next updates are caused by this execution - bool isExecuted; -public: + /// 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; + /// 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; + + 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 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(boost::shared_ptr theFeature); + bool updateFeature(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(boost::shared_ptr theObject); + 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); }; #endif