X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_Feature.cpp;h=ae771b5567b1dff3cc71ac5f52d9c4b15ff95969;hb=587c5c1821f464e323eec057ba860b2433d4f412;hp=8586525f792f4a46811caef7d1c1bfaaaae2201d;hpb=c80e8ac643930b858f4f653e2659896ba587b165;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Feature.cpp b/src/SketchPlugin/SketchPlugin_Feature.cpp index 8586525f7..ae771b556 100644 --- a/src/SketchPlugin/SketchPlugin_Feature.cpp +++ b/src/SketchPlugin/SketchPlugin_Feature.cpp @@ -1,18 +1,45 @@ #include "SketchPlugin_Feature.h" +#include "SketchPlugin_Sketch.h" +#include +#include +#include +#include -/** - * Returns the sketch preview - */ -const boost::shared_ptr& 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 boost::shared_ptr& theShape) { myPreview = theShape; } + +const boost::shared_ptr& SketchPlugin_Feature::getPreview() const +{ + return myPreview; +} + +SketchPlugin_Sketch* SketchPlugin_Feature::sketch() +{ + if (!mySketch) { + // 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, true)); + 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(data())) { + mySketch = aSketch.get(); + break; + } + } + } + } + } + return mySketch; +}