Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Feature.cpp
index 5363c251acd1aabe4c1537129cb4e8e31ad0b935..c3c800bd992ca865bfe4ec7ba0637964c8ac6cfb 100644 (file)
@@ -2,42 +2,52 @@
 #include "SketchPlugin_Sketch.h"
 #include <ModelAPI_Document.h>
 #include <ModelAPI_Data.h>
+#include <ModelAPI_Object.h>
 #include <ModelAPI_AttributeRefList.h>
+#include <ModelAPI_ResultConstruction.h>
 
 SketchPlugin_Feature::SketchPlugin_Feature()
 {
   mySketch = 0;
 }
 
-//void SketchPlugin_Feature::setData(boost::shared_ptr<ModelAPI_Data> theData)
-//{
-//  ModelAPI_Feature::setData(theData);
-//
-//  // find sketch that references to this feature
-//  int aSketches = document()->size("Construction");
-//  for(int a = 0; a < aSketches && !mySketch; a++) {
-//    boost::shared_ptr<SketchPlugin_Sketch> aSketch =
-//      boost::dynamic_pointer_cast<SketchPlugin_Sketch>(document()->feature("Construction", a));
-//    if (aSketch) {
-//      std::list<boost::shared_ptr<ModelAPI_Feature> > aList =
-//        aSketch->data()->reflist(SKETCH_ATTR_FEATURES)->list();
-//      std::list<boost::shared_ptr<ModelAPI_Feature> >::iterator aSub = aList.begin();
-//      for(; aSub != aList.end(); aSub++) {
-//        if ((*aSub)->data()->isEqual(theData)) {
-//          mySketch = aSketch.get();
-//          break;
-//        }
-//      }
-//    }
-//  }
-//}
-
-void SketchPlugin_Feature::setPreview(const boost::shared_ptr<GeomAPI_Shape>& theShape)
+SketchPlugin_Sketch* SketchPlugin_Feature::sketch()
 {
-  myPreview = theShape;
+  if (!mySketch) {
+    // find sketch that references to this feature
+    int aSketches = document()->size(ModelAPI_Feature::group());
+    for (int a = 0; a < aSketches && !mySketch; a++) {
+      boost::shared_ptr<SketchPlugin_Sketch> aSketch = boost::dynamic_pointer_cast<
+          SketchPlugin_Sketch>(document()->object(ModelAPI_Feature::group(), a));
+      if (aSketch) {
+        std::list<ObjectPtr> aList = aSketch->data()->reflist(SketchPlugin_Sketch::FEATURES_ID())
+            ->list();
+        std::list<ObjectPtr>::iterator aSub = aList.begin();
+        for (; aSub != aList.end(); aSub++) {
+          if ((*aSub)->data()->isEqual(data())) {
+            mySketch = aSketch.get();
+            break;
+          }
+        }
+      }
+    }
+  }
+  return mySketch;
 }
 
-const boost::shared_ptr<GeomAPI_Shape>& SketchPlugin_Feature::getPreview() const
+AISObjectPtr SketchPlugin_Feature::simpleAISObject(boost::shared_ptr<ModelAPI_Result> theRes,
+                                                   AISObjectPtr thePrevious)
 {
-  return myPreview;
+  boost::shared_ptr<ModelAPI_ResultConstruction> aConstr = boost::dynamic_pointer_cast<
+      ModelAPI_ResultConstruction>(theRes);
+
+  boost::shared_ptr<GeomAPI_Shape> aPreview;
+  if (aConstr)
+    aPreview = aConstr->shape();
+
+  AISObjectPtr aResult = thePrevious;
+  if (!aResult)
+    aResult = AISObjectPtr(new GeomAPI_AISObject());
+  aResult->createShape(aPreview);
+  return aResult;
 }