Salome HOME
Merge branch 'Dev_0.7.1' of newgeom:newgeom.git into Dev_0.7.1
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Feature.cpp
index 57bc3582d406a411e1e1cecd1029b40c14d2077c..6e0f7111d1c29125622aae6885db76c5e1003b5e 100644 (file)
@@ -1,18 +1,33 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
+
 #include "SketchPlugin_Feature.h"
+#include "SketchPlugin_Sketch.h"
+#include <ModelAPI_Document.h>
+#include <ModelAPI_Data.h>
+#include <ModelAPI_Object.h>
+#include <ModelAPI_AttributeRefList.h>
+#include <ModelAPI_ResultConstruction.h>
 
-/**
- * Returns the sketch preview
- */
-const TopoDS_Shape& SketchPlugin_Feature::preview()
+SketchPlugin_Feature::SketchPlugin_Feature()
 {
-  return myPreview;
+  mySketch = 0;
 }
 
-/**
- * Set the shape to the internal preview field
- * \param theShape a preview shape
- */
-void SketchPlugin_Feature::setPreview(const TopoDS_Shape& theShape)
+SketchPlugin_Sketch* SketchPlugin_Feature::sketch()
 {
-  myPreview = theShape;
+  if (!mySketch) {
+    // find sketch that references to this feature
+    const std::set<AttributePtr>& aBackRefs = data()->refsToMe();
+    std::set<AttributePtr>::const_iterator aBackRef = aBackRefs.begin();
+    for(; aBackRef != aBackRefs.end(); aBackRef++) {
+      std::shared_ptr<SketchPlugin_Sketch> aSketch = 
+        std::dynamic_pointer_cast<SketchPlugin_Sketch>((*aBackRef)->owner());
+      if (aSketch) {
+        mySketch = aSketch.get();
+        break;
+      }
+    }
+  }
+  return mySketch;
 }
+