X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FSketchPlugin%2FSketchPlugin_Line.cpp;h=782f99a2472346eed9e2e785846da018e28853ca;hb=956324a569b5010a2486a8c8380648406b7b164c;hp=ed07e4079bd6bd7eba234a943289ec1d97b6539e;hpb=a24b7e6f4d112d5e7889fd76f030298fc428cd01;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Line.cpp b/src/SketchPlugin/SketchPlugin_Line.cpp index ed07e4079..782f99a24 100644 --- a/src/SketchPlugin/SketchPlugin_Line.cpp +++ b/src/SketchPlugin/SketchPlugin_Line.cpp @@ -10,6 +10,7 @@ #include #include #include +#include #include #include @@ -29,7 +30,13 @@ SketchPlugin_Line::SketchPlugin_Line() void SketchPlugin_Line::initAttributes() { SketchPlugin_SketchEntity::initAttributes(); + /// new attributes should be added to end of the feature in order to provide + /// correct attribute values in previous saved studies + data()->addAttribute(LENGTH_ID(), ModelAPI_AttributeDouble::typeId()); +} +void SketchPlugin_Line::initDerivedClassAttributes() +{ data()->addAttribute(START_ID(), GeomDataAPI_Point2D::typeId()); data()->addAttribute(END_ID(), GeomDataAPI_Point2D::typeId()); data()->addAttribute(EXTERNAL_ID(), ModelAPI_AttributeSelection::typeId()); @@ -100,14 +107,29 @@ double SketchPlugin_Line::distanceToPoint(const std::shared_ptr& return aDelta; } +const std::string& SketchPlugin_Line::getKind() +{ + static std::string MY_KIND = SketchPlugin_Line::ID(); + return MY_KIND; +} + bool SketchPlugin_Line::isFixed() { return data()->selection(EXTERNAL_ID())->context().get() != NULL; } void SketchPlugin_Line::attributeChanged(const std::string& theID) { - if (theID == EXTERNAL_ID()) { + // the second condition for unability to move external segments anywhere + // isCopy() is checked temporary for case when copied lines stored external id state + // to be removed after debug + if ((theID == EXTERNAL_ID() || isFixed()) && !isCopy()) { std::shared_ptr aSelection = data()->selection(EXTERNAL_ID())->value(); - // update arguments due to the selection value + if (!aSelection) { + // empty shape in selection shows that the shape is equal to context + ResultPtr anExtRes = selection(EXTERNAL_ID())->context(); + if (anExtRes) + aSelection = anExtRes->shape(); + } + // update arguments due to the selection value if (aSelection && !aSelection->isNull() && aSelection->isEdge()) { std::shared_ptr anEdge( new GeomAPI_Edge(aSelection)); std::shared_ptr aStartAttr = @@ -116,7 +138,22 @@ void SketchPlugin_Line::attributeChanged(const std::string& theID) { std::shared_ptr anEndAttr = std::dynamic_pointer_cast(attribute(END_ID())); anEndAttr->setValue(sketch()->to2D(anEdge->lastPoint())); + updateLenghtValue(); } } + else if (theID == START_ID() || theID == END_ID()) { + updateLenghtValue(); + } } +void SketchPlugin_Line::updateLenghtValue() +{ + std::shared_ptr aStartAttr = std::dynamic_pointer_cast< + GeomDataAPI_Point2D>(data()->attribute(START_ID())); + std::shared_ptr anEndAttr = std::dynamic_pointer_cast< + GeomDataAPI_Point2D>(data()->attribute(END_ID())); + if (aStartAttr->isInitialized() && anEndAttr->isInitialized()) { + double aDistance = aStartAttr->pnt()->distance(anEndAttr->pnt()); + data()->real(LENGTH_ID())->setValue(aDistance); + } +}