]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Method isStable is defined
authorvsv <vitaly.smetannikov@opencascade.com>
Thu, 8 Oct 2015 13:07:08 +0000 (16:07 +0300)
committervsv <vitaly.smetannikov@opencascade.com>
Thu, 8 Oct 2015 13:07:08 +0000 (16:07 +0300)
src/ModelAPI/ModelAPI_Feature.cpp
src/ModelAPI/ModelAPI_Feature.h
src/ModuleBase/ModuleBase_OperationFeature.cpp

index 9edfefa4c8f69ed57c5128ecadbc25342d675016..6d17254bc33383fff8a533b141217fda5382099a 100644 (file)
@@ -199,6 +199,20 @@ bool ModelAPI_Feature::isDisabled()
   return myIsDisabled;
 }
 
+bool ModelAPI_Feature::setStable(const bool theFlag)
+{
+  if (myIsStable != theFlag) {
+    myIsStable = theFlag;
+    return true;
+  }
+  return false;
+}
+
+bool ModelAPI_Feature::isStable()
+{
+  return myIsStable;
+}
+
 bool ModelAPI_Feature::isPreviewNeeded() const
 {
   return true;
@@ -207,4 +221,5 @@ bool ModelAPI_Feature::isPreviewNeeded() const
 void ModelAPI_Feature::init()
 {
   myIsDisabled = false;
+  myIsStable = true;
 }
index 2508e6a2ea9f726e3d789a208c2d4e5b15c257e6..af55636cb58e7b573d2f5cf1235e16d5bff53f22 100644 (file)
@@ -28,6 +28,9 @@ class ModelAPI_Feature : public ModelAPI_Object
   std::list<std::shared_ptr<ModelAPI_Result> > myResults;
   ///< is feature disabled or not
   bool myIsDisabled;
+  ///< is feature is stable (not editing)
+  bool myIsStable;
+
  public:
   /// Returns the unique kind of a feature (like "Point")
   virtual const std::string& getKind() = 0;
@@ -132,6 +135,13 @@ class ModelAPI_Feature : public ModelAPI_Object
   /// Returns the feature by the object (result).
   MODELAPI_EXPORT static std::shared_ptr<ModelAPI_Feature> feature(ObjectPtr theObject);
 
+  /// Set the stable feature flag. If feature is currently editing then it is not stable.
+  /// \returns true if state is really changed
+  MODELAPI_EXPORT virtual bool setStable(const bool theFlag);
+
+  /// Returns the feature is stable or not.
+  MODELAPI_EXPORT virtual bool isStable();
+
  //
  // Helper methods, aliases for data()->method()
  // -----------------------------------------------------------------------------------------------
index b3540002f2904995522c7b5644a9eba1de8089a1..a6829d1bc3a256591b7c899b1e54f5a3c7a2d34f 100755 (executable)
@@ -114,6 +114,7 @@ void ModuleBase_OperationFeature::stopOperation()
   if (myVisualizedObjects.find(aFeature) != myVisualizedObjects.end()) {
     aFeature->setDisplayed(false);
   }
+  aFeature->setStable(true);
   if (myVisualizedObjects.size() > 0)
     Events_Loop::loop()->flush(Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY));
 }
@@ -146,6 +147,7 @@ FeaturePtr ModuleBase_OperationFeature::createFeature(const bool theFlushMessage
 void ModuleBase_OperationFeature::setFeature(FeaturePtr theFeature)
 {
   myFeature = theFeature;
+  myFeature->setStable(false);
   myIsEditing = true;
 }