X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchSolver%2FSketchSolver_Manager.h;h=105cc0e97ae1b503195b9efddd7b7969107ffbd9;hb=d5b5ce2284869d8b97ce638502c58c810bbeb0c7;hp=7d227dee456c044ce79e803b12c37b098ff7ffd9;hpb=2982303b80faa9bed2a7715d2778fd10d8cd0465;p=modules%2Fshaper.git diff --git a/src/SketchSolver/SketchSolver_Manager.h b/src/SketchSolver/SketchSolver_Manager.h index 7d227dee4..105cc0e97 100644 --- a/src/SketchSolver/SketchSolver_Manager.h +++ b/src/SketchSolver/SketchSolver_Manager.h @@ -1,21 +1,37 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: SketchSolver_Manager.h -// Created: 08 May 2014 -// Author: Artem ZHIDKOV +// Copyright (C) 2014-2017 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 +// #ifndef SketchSolver_Manager_H_ #define SketchSolver_Manager_H_ -#include "SketchSolver.h" #include #include -#include #include #include +class GeomAPI_Pnt2d; +class GeomDataAPI_Point2D; +class SketchPlugin_Constraint; + /** \class SketchSolver_Manager * \ingroup Plugins * \brief Listens the changes of SketchPlugin features and transforms the Constraint @@ -48,10 +64,29 @@ protected: /** \brief Adds or updates a constraint or an entity in the suitable group * \param[in] theFeature sketch feature to be changed - * \param[in] theMoved \c true if the feature has been moved in the viewer * \return \c true if the feature changed successfully */ - bool updateFeature(std::shared_ptr theFeature, bool theMoved = false); + bool updateFeature(const std::shared_ptr& theFeature); + + /** \brief Move feature + * \param[in] theMovedFeature dragged sketch feature + * \param[in] theFromPoint original position of the feature + * \param[in] theToPoint prefereble position of the feature (current position of the mouse) + * \return \c true if the feature has been changed successfully + */ + bool moveFeature(const std::shared_ptr& theMovedFeature, + const std::shared_ptr& theFromPoint, + const std::shared_ptr& theToPoint); + + /** \brief Move feature using its moved attribute + * \param[in] theMovedAttribute dragged point attribute of sketch feature + * \param[in] theFromPoint original position of the moved point + * \param[in] theToPoint prefereble position (current position of the mouse) + * \return \c true if the attribute owner has been changed successfully + */ + bool moveAttribute(const std::shared_ptr& theMovedAttribute, + const std::shared_ptr& theFromPoint, + const std::shared_ptr& theToPoint); /** \brief Removes a constraint from the manager * \param[in] theConstraint constraint to be removed @@ -78,8 +113,11 @@ private: /// \brief Allow to send the Update event void allowSendUpdate() const; + /// \brief Allow send events about changing features in groups + void releaseFeaturesIfEventsBlocked() const; + private: - std::list myGroups; ///< Groups of constraints + std::list myGroups; ///< Groups of constraints /// true if computation is performed and all "updates" are generated by this algo /// and needs no recomputation bool myIsComputed;