]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchPlugin/SketchPlugin_ConstraintDistance.h
Salome HOME
Add copyright header according to request of CEA from 06.06.2017
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_ConstraintDistance.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
18 //
19
20 #ifndef SketchPlugin_ConstraintDistance_H_
21 #define SketchPlugin_ConstraintDistance_H_
22
23 #include "SketchPlugin.h"
24 #include "SketchPlugin_ConstraintBase.h"
25 #include "SketchPlugin_Sketch.h"
26 #include "ModelAPI_Data.h"
27
28 #include <GeomAPI_ICustomPrs.h>
29
30 #include <list>
31
32 class SketchPlugin_Line;
33 class GeomDataAPI_Point2D;
34
35 /** \class SketchPlugin_ConstraintDistance
36  *  \ingroup Plugins
37  *  \brief Feature for creation of a new constraint which defines a distance
38  *         between a point and another feature (point, line, plane or face)
39  *
40  *  This constraint has three attributes:
41  *  SketchPlugin_Constraint::VALUE(), SketchPlugin_Constraint::ENTITY_A() and SketchPlugin_Constraint::ENTITY_B()
42  */
43 class SketchPlugin_ConstraintDistance : public SketchPlugin_ConstraintBase
44 {
45  public:
46   /// Distance constraint kind
47   inline static const std::string& ID()
48   {
49     static const std::string MY_CONSTRAINT_DISTANCE_ID("SketchConstraintDistance");
50     return MY_CONSTRAINT_DISTANCE_ID;
51   }
52
53   /// \brief Returns the kind of a feature
54   SKETCHPLUGIN_EXPORT virtual const std::string& getKind()
55   {
56     static std::string MY_KIND = SketchPlugin_ConstraintDistance::ID();
57     return MY_KIND;
58   }
59
60   /// \brief Creates a new part document if needed
61   SKETCHPLUGIN_EXPORT virtual void execute();
62
63   /// \brief Request for initialization of data model of the feature: adding all attributes
64   SKETCHPLUGIN_EXPORT virtual void initAttributes();
65
66   /// Retuns the parameters of color definition in the resources config manager
67   SKETCHPLUGIN_EXPORT virtual void colorConfigInfo(std::string& theSection, std::string& theName,
68                                                    std::string& theDefault);
69
70   /// Returns the AIS preview
71   SKETCHPLUGIN_EXPORT virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious);
72
73   /// Moves the feature
74   /// \param theDeltaX the delta for X coordinate is moved
75   /// \param theDeltaY the delta for Y coordinate is moved
76   SKETCHPLUGIN_EXPORT virtual void move(const double theDeltaX, const double theDeltaY);
77
78   /// Called on change of any argument-attribute of this object
79   /// \param theID identifier of changed attribute
80   SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID);
81
82   /// \brief Use plugin manager for features creation
83   SketchPlugin_ConstraintDistance();
84
85 protected:
86   /// Returns the current distance between the feature attributes
87   double calculateCurrentDistance();
88
89 private:
90   bool myFlyoutUpdate; ///< to avoid cyclic dependencies on automatic updates of flyout point
91 };
92
93 #endif