X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=inline;f=src%2FSketchPlugin%2FSketchPlugin_Feature.cpp;h=6e0f7111d1c29125622aae6885db76c5e1003b5e;hb=28d5d911e78c187ce729f155d8b2074f0d3561c3;hp=5363c251acd1aabe4c1537129cb4e8e31ad0b935;hpb=b9a3d9351b23b5d30a0eb37d45896eac832bb7e2;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Feature.cpp b/src/SketchPlugin/SketchPlugin_Feature.cpp index 5363c251a..6e0f7111d 100644 --- a/src/SketchPlugin/SketchPlugin_Feature.cpp +++ b/src/SketchPlugin/SketchPlugin_Feature.cpp @@ -1,43 +1,33 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + #include "SketchPlugin_Feature.h" #include "SketchPlugin_Sketch.h" #include #include +#include #include +#include SketchPlugin_Feature::SketchPlugin_Feature() { mySketch = 0; } -//void SketchPlugin_Feature::setData(boost::shared_ptr 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 aSketch = -// boost::dynamic_pointer_cast(document()->feature("Construction", a)); -// if (aSketch) { -// std::list > aList = -// aSketch->data()->reflist(SKETCH_ATTR_FEATURES)->list(); -// std::list >::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& theShape) +SketchPlugin_Sketch* SketchPlugin_Feature::sketch() { - myPreview = theShape; + if (!mySketch) { + // find sketch that references to this feature + const std::set& aBackRefs = data()->refsToMe(); + std::set::const_iterator aBackRef = aBackRefs.begin(); + for(; aBackRef != aBackRefs.end(); aBackRef++) { + std::shared_ptr aSketch = + std::dynamic_pointer_cast((*aBackRef)->owner()); + if (aSketch) { + mySketch = aSketch.get(); + break; + } + } + } + return mySketch; } -const boost::shared_ptr& SketchPlugin_Feature::getPreview() const -{ - return myPreview; -}