20 #ifndef Model_Update_H_
21 #define Model_Update_H_
24 #include <ModelAPI_Data.h>
25 #include "Events_Listener.h"
43 std::map<std::shared_ptr<ModelAPI_Feature>, std::set<std::shared_ptr<ModelAPI_Feature> > >
48 std::map<std::shared_ptr<ModelAPI_Feature>, std::set<std::shared_ptr<ModelAPI_Feature> > >
51 std::set<std::shared_ptr<ModelAPI_Feature> > myWaitForFinish;
53 bool myIsParamUpdated;
60 std::map<std::shared_ptr<ModelAPI_Feature>, std::set<std::shared_ptr<ModelAPI_Feature> > >
63 std::map<std::shared_ptr<ModelAPI_Feature>,
int > myProcessed;
65 bool myIsPreviewBlocked;
74 MODEL_EXPORT
virtual void processEvent(
const std::shared_ptr<Events_Message>& theMessage);
82 std::shared_ptr<ModelAPI_Feature> theFeature, std::shared_ptr<ModelAPI_Feature> theReason);
94 const ModelAPI_ExecState theState,
bool theUpdateState =
true);
102 void executeFeature(std::shared_ptr<ModelAPI_Feature> theFeature);
110 std::shared_ptr<ModelAPI_Feature>& theFeature, std::shared_ptr<ModelAPI_Object> theReason);
114 void updateSelection(
const std::set<std::shared_ptr<ModelAPI_Object> >& theObjects);
Base interface for any event listener.
Definition: Events_Listener.h:37
Feature that consists of other features: like sketcher with edges inside.
Definition: ModelAPI_CompositeFeature.h:33
Feature function that represents the particular functionality of this operation.
Definition: ModelAPI_Feature.h:41
Represents any object in the data model and in the object browser.
Definition: ModelAPI_Object.h:45
Manager of objects of the document.
Definition: Model_Objects.h:46
Updates the results of features when it is needed.
Definition: Model_Update.h:40
Model_Update()
Is called only once, on startup of the application.
Definition: Model_Update.cpp:58
void updateSelection(const std::set< std::shared_ptr< ModelAPI_Object > > &theObjects)
Updates a selection attributes for the features that possible were affected by creation or reorder of...
Definition: Model_Update.cpp:1078
void redisplayWithResults(std::shared_ptr< ModelAPI_Feature > theFeature, const ModelAPI_ExecState theState, bool theUpdateState=true)
Sends the redisplay events for feature and results, updates the updated status.
Definition: Model_Update.cpp:752
bool isReason(std::shared_ptr< ModelAPI_Feature > &theFeature, std::shared_ptr< ModelAPI_Object > theReason)
Returns true if theFeature modification was caused by theReason (may be feature of result of this fea...
Definition: Model_Update.cpp:958
virtual void processEvent(const std::shared_ptr< Events_Message > &theMessage)
Processes the feature argument update: executes the results.
Definition: Model_Update.cpp:233
bool addModified(std::shared_ptr< ModelAPI_Feature > theFeature, std::shared_ptr< ModelAPI_Feature > theReason)
Appends the new modified feature to the myModified, clears myProcessed if needed Returns true if some...
Definition: Model_Update.cpp:94
bool processFeature(std::shared_ptr< ModelAPI_Feature > theFeature)
Recoursively checks and updates features if needed (calls the execute method) Returns true if feature...
Definition: Model_Update.cpp:521
void processFeatures(const bool theFlushRedisplay=true)
On operation start/end/abort the "Just" fields must be cleared and processed in the right way.
Definition: Model_Update.cpp:452
void updateStability(void *theSender)
Updates the properties of object because of stability state changes.
Definition: Model_Update.cpp:1024
void executeFeature(std::shared_ptr< ModelAPI_Feature > theFeature)
Performs the feature execution.
Definition: Model_Update.cpp:993
void updateArguments(std::shared_ptr< ModelAPI_Feature > theFeature)
Updates the selection and parametrical arguments before the later feature analysis Returns true if so...
Definition: Model_Update.cpp:795