X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintCoincidence.h;h=836ee437e4ce5fa43b2ccc74f89f91d9e94041e6;hb=c564630a9aa1a9197b5faa884b42ad777319e6a6;hp=1c5f2adf37c7f437c787c343f7826df9b416adbd;hpb=653278ec982a73429d450155d4ce133948dc7510;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintCoincidence.h b/src/SketchPlugin/SketchPlugin_ConstraintCoincidence.h index 1c5f2adf3..836ee437e 100644 --- a/src/SketchPlugin/SketchPlugin_ConstraintCoincidence.h +++ b/src/SketchPlugin/SketchPlugin_ConstraintCoincidence.h @@ -1,32 +1,57 @@ -// File: SketchPlugin_ConstraintCoincidence.h -// Created: 08 May 2014 -// Author: Artem ZHIDKOV +// Copyright (C) 2014-2022 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 SketchPlugin_ConstraintCoincidence_HeaderFile -#define SketchPlugin_ConstraintCoincidence_HeaderFile +#ifndef SketchPlugin_ConstraintCoincidence_H_ +#define SketchPlugin_ConstraintCoincidence_H_ #include "SketchPlugin.h" -#include "SketchPlugin_Constraint.h" +#include "SketchPlugin_ConstraintBase.h" +#include #include +class GeomDataAPI_Point2D; /** \class SketchPlugin_ConstraintCoincidence - * \ingroup DataModel + * \ingroup Plugins * \brief Feature for creation of a new constraint which defines equivalence of two points * - * These constraint has two attributes: - * CONSTRAINT_ATTR_ENTITY_A and CONSTRAINT_ATTR_ENTITY_B + * This constraint has two attributes: + * SketchPlugin_Constraint::ENTITY_A() and SketchPlugin_Constraint::ENTITY_B() */ -class SketchPlugin_ConstraintCoincidence: public SketchPlugin_Constraint +class SketchPlugin_ConstraintCoincidence : public SketchPlugin_ConstraintBase { -public: + public: + /// Coincidence constraint kind + inline static const std::string& ID() + { + static const std::string MY_CONSTRAINT_COINCIDENCE_ID("SketchConstraintCoincidence"); + return MY_CONSTRAINT_COINCIDENCE_ID; + } /// \brief Returns the kind of a feature - SKETCHPLUGIN_EXPORT virtual const std::string& getKind() - {static std::string MY_KIND = "SketchConstraintCoincidence"; return MY_KIND;} + SKETCHPLUGIN_EXPORT virtual const std::string& getKind() + { + static std::string MY_KIND = SketchPlugin_ConstraintCoincidence::ID(); + return MY_KIND; + } - /// \brief Returns to which group in the document must be added feature - SKETCHPLUGIN_EXPORT virtual const std::string& getGroup() - {static std::string MY_GROUP = "Sketch"; return MY_GROUP;} + /// Returns the AIS preview + SKETCHPLUGIN_EXPORT virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious); /// \brief Creates a new part document if needed SKETCHPLUGIN_EXPORT virtual void execute(); @@ -34,8 +59,18 @@ public: /// \brief Request for initialization of data model of the feature: adding all attributes SKETCHPLUGIN_EXPORT virtual void initAttributes(); - /// \brief Returns the sketch preview - SKETCHPLUGIN_EXPORT virtual const boost::shared_ptr& preview(); + /// Creates a constraint on two points + /// \param theSketch a sketch feature + /// \param thePoint1 the first point + /// \param thePoint2 the second point + static void createCoincidenceFeature(SketchPlugin_Sketch* theSketch, + const std::shared_ptr& thePoint1, + const std::shared_ptr& thePoint2); + + /// Returns point of coincidence feature + /// \param theFeature a coincidence feature + /// \return point 2d attribute. Coincidence always has at least one point 2d attribute + static std::shared_ptr getPoint(const FeaturePtr& theFeature); /// \brief Use plugin manager for features creation SketchPlugin_ConstraintCoincidence();