Salome HOME
Support of Steps visualization from the data model level.
[modules/shaper.git] / src / Model / Model_ResultField.h
index 307861c3494978eb85c1528b03ed151e88cf1ab5..ae66e9a106345ed4a34d1c32623e49424d063259 100644 (file)
@@ -39,7 +39,11 @@ public:
   {
   public:
     Model_FieldStep(ModelAPI_ResultField* theParent, int theId)
-      : ModelAPI_ResultField::ModelAPI_FieldStep(), myParent(theParent), myId(theId) {};
+      : ModelAPI_ResultField::ModelAPI_FieldStep(), myParent(theParent), myId(theId)
+    {
+      setData(myParent->data()); // it is not needed to have special data for the temporary
+                                 // step object, but data must be "valid" for GUI checks
+    };
 
     virtual ModelAPI_ResultField* field() const { return myParent; }
 
@@ -47,12 +51,15 @@ public:
 
     virtual std::shared_ptr<ModelAPI_Document> document() const { return myParent->document(); }
 
+    /// Returns a GUI name of this step
+    virtual std::string name();
+
   private:
     ModelAPI_ResultField* myParent;
     int myId;
   };
 
-  /// Retuns the parameters of color definition in the resources config manager
+  /// Returns the parameters of color definition in the resources configuration manager
   MODEL_EXPORT virtual void colorConfigInfo(std::string& theSection, std::string& theName,
                                             std::string& theDefault);
 
@@ -73,6 +80,9 @@ public:
   /// Removes the stored builders
   MODEL_EXPORT virtual ~Model_ResultField();
 
+  /// To refresh the steps of a field
+  MODEL_EXPORT virtual void updateSteps();
+
 protected:
   /// Makes a body on the given feature data
   Model_ResultField(std::shared_ptr<ModelAPI_Data> theOwnerData);
@@ -80,7 +90,6 @@ protected:
   friend class Model_Objects;
 
 private:
-  void updateSteps();
 
   std::vector<FieldStepPtr> mySteps;
 };