X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_Point.cpp;h=5649f93c226748e2db4504e480b9f453f1f9b676;hb=745c72679f6346375d5e886b25cc3865f3c4daae;hp=cd862a6adbd46ccac051ffca6eea0b5b02500994;hpb=35a88fdd724349275bbff32b9596a44e7cd422e2;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Point.cpp b/src/SketchPlugin/SketchPlugin_Point.cpp index cd862a6ad..5649f93c2 100644 --- a/src/SketchPlugin/SketchPlugin_Point.cpp +++ b/src/SketchPlugin/SketchPlugin_Point.cpp @@ -1,6 +1,21 @@ -// File: SketchPlugin_Point.cpp -// Created: 07 May 2014 -// Author: Artem ZHIDKOV +// Copyright (C) 2014-2021 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include "SketchPlugin_Point.h" #include "SketchPlugin_Sketch.h" @@ -12,20 +27,19 @@ #include #include - +#include #include #include -using namespace std; - SketchPlugin_Point::SketchPlugin_Point() + : SketchPlugin_SketchEntity() { } -void SketchPlugin_Point::initAttributes() +void SketchPlugin_Point::initDerivedClassAttributes() { - data()->addAttribute(SketchPlugin_Point::COORD_ID(), GeomDataAPI_Point2D::type()); - data()->addAttribute(EXTERNAL_ID(), ModelAPI_AttributeSelection::type()); + data()->addAttribute(SketchPlugin_Point::COORD_ID(), GeomDataAPI_Point2D::typeId()); + data()->addAttribute(EXTERNAL_ID(), ModelAPI_AttributeSelection::typeId()); ModelAPI_Session::get()->validators()->registerNotObligatory(getKind(), EXTERNAL_ID()); } @@ -39,7 +53,7 @@ void SketchPlugin_Point::execute() data()->attribute(SketchPlugin_Point::COORD_ID())); std::shared_ptr aPoint3D(aSketch->to3D(aPoint->x(), aPoint->y())); // make a visible point - std::shared_ptr aPointShape = GeomAlgoAPI_PointBuilder::point(aPoint3D); + std::shared_ptr aPointShape = GeomAlgoAPI_PointBuilder::vertex(aPoint3D); std::shared_ptr aConstr = document()->createConstruction(data()); aConstr->setShape(aPointShape); aConstr->setIsInHistory(false); @@ -47,26 +61,26 @@ void SketchPlugin_Point::execute() } } -void SketchPlugin_Point::move(double theDeltaX, double theDeltaY) -{ - std::shared_ptr aData = data(); - if (!aData->isValid()) - return; - - std::shared_ptr aPoint1 = std::dynamic_pointer_cast( - aData->attribute(SketchPlugin_Point::COORD_ID())); - aPoint1->move(theDeltaX, theDeltaY); -} - -double SketchPlugin_Point::distanceToPoint(const std::shared_ptr& thePoint) -{ - std::shared_ptr aData = data(); - std::shared_ptr aPoint = std::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 inability to move external point anywhere + if (theID == EXTERNAL_ID() || isFixed()) { + std::shared_ptr aSelection = data()->selection(EXTERNAL_ID())->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->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())); + } + } }