X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_Point.cpp;h=cf718db760dd812324db95cf16a10a297494b29b;hb=64fc7e4fdd63997ec7a502b233ef5f88186d5bbb;hp=1ad78684f8ab806ea8676054956b1083aac3aa47;hpb=23bd046563358cc8654b0d084fb0f7135acc31f7;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Point.cpp b/src/SketchPlugin/SketchPlugin_Point.cpp index 1ad78684f..cf718db76 100644 --- a/src/SketchPlugin/SketchPlugin_Point.cpp +++ b/src/SketchPlugin/SketchPlugin_Point.cpp @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + // File: SketchPlugin_Point.cpp // Created: 07 May 2014 // Author: Artem ZHIDKOV @@ -12,20 +14,23 @@ #include #include - +#include #include #include using namespace std; SketchPlugin_Point::SketchPlugin_Point() + : SketchPlugin_SketchEntity() { } void SketchPlugin_Point::initAttributes() { - data()->addAttribute(SketchPlugin_Point::COORD_ID(), GeomDataAPI_Point2D::type()); - data()->addAttribute(EXTERNAL_ID(), ModelAPI_AttributeSelection::type()); + SketchPlugin_SketchEntity::initAttributes(); + + data()->addAttribute(SketchPlugin_Point::COORD_ID(), GeomDataAPI_Point2D::typeId()); + data()->addAttribute(EXTERNAL_ID(), ModelAPI_AttributeSelection::typeId()); ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), EXTERNAL_ID()); } @@ -34,13 +39,13 @@ void SketchPlugin_Point::execute() SketchPlugin_Sketch* aSketch = sketch(); if (aSketch) { // compute a point in 3D view - boost::shared_ptr aPoint = - boost::dynamic_pointer_cast( + std::shared_ptr aPoint = + std::dynamic_pointer_cast( data()->attribute(SketchPlugin_Point::COORD_ID())); - boost::shared_ptr aPoint3D(aSketch->to3D(aPoint->x(), aPoint->y())); + std::shared_ptr aPoint3D(aSketch->to3D(aPoint->x(), aPoint->y())); // make a visible point - boost::shared_ptr aPointShape = GeomAlgoAPI_PointBuilder::point(aPoint3D); - boost::shared_ptr aConstr = document()->createConstruction(data()); + std::shared_ptr aPointShape = GeomAlgoAPI_PointBuilder::point(aPoint3D); + std::shared_ptr aConstr = document()->createConstruction(data()); aConstr->setShape(aPointShape); aConstr->setIsInHistory(false); setResult(aConstr); @@ -49,24 +54,29 @@ void SketchPlugin_Point::execute() void SketchPlugin_Point::move(double theDeltaX, double theDeltaY) { - boost::shared_ptr aData = data(); + std::shared_ptr aData = data(); if (!aData->isValid()) return; - boost::shared_ptr aPoint1 = boost::dynamic_pointer_cast( + std::shared_ptr aPoint1 = std::dynamic_pointer_cast( aData->attribute(SketchPlugin_Point::COORD_ID())); - aPoint1->setValue(aPoint1->x() + theDeltaX, aPoint1->y() + theDeltaY); + aPoint1->move(theDeltaX, theDeltaY); } -double SketchPlugin_Point::distanceToPoint(const boost::shared_ptr& thePoint) -{ - boost::shared_ptr aData = data(); - boost::shared_ptr aPoint = boost::dynamic_pointer_cast( - aData->attribute(SketchPlugin_Point::COORD_ID())); - - return aPoint->pnt()->distance(thePoint); +bool SketchPlugin_Point::isFixed() { + return data()->selection(EXTERNAL_ID())->context().get() != NULL; } -bool SketchPlugin_Point::isFixed() { - return data()->selection(EXTERNAL_ID())->context(); +void SketchPlugin_Point::attributeChanged(const std::string& theID) { + // the second condition for unability to move external point anywhere + if (theID == EXTERNAL_ID() || isFixed()) { + std::shared_ptr aSelection = data()->selection(EXTERNAL_ID())->value(); + // update arguments due to the selection value + if (aSelection && !aSelection->isNull() && aSelection->isVertex()) { + std::shared_ptr aVertex(new GeomAPI_Vertex(aSelection)); + std::shared_ptr aCoordAttr = + std::dynamic_pointer_cast(attribute(COORD_ID())); + aCoordAttr->setValue(sketch()->to2D(aVertex->point())); + } + } }