Salome HOME
Update copyrights
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_ConstraintDistance.h
1 // Copyright (C) 2014-2019  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
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 Shows whether the point-line distance should keep its sign
61   inline static const std::string& SIGNED()
62   {
63     static const std::string MY_SIGNED("SignedDistance");
64     return MY_SIGNED;
65   }
66
67   /// attribute name of dimension location type
68   inline static const std::string& LOCATION_TYPE_ID()
69   {
70     static const std::string MY_LOCATION_TYPE_ID("LocationType");
71     return MY_LOCATION_TYPE_ID;
72   }
73
74   /// \brief Creates a new part document if needed
75   SKETCHPLUGIN_EXPORT virtual void execute();
76
77   /// \brief Request for initialization of data model of the feature: adding all attributes
78   SKETCHPLUGIN_EXPORT virtual void initAttributes();
79
80   /// Retuns the parameters of color definition in the resources config manager
81   SKETCHPLUGIN_EXPORT virtual void colorConfigInfo(std::string& theSection, std::string& theName,
82                                                    std::string& theDefault);
83
84   /// Returns the AIS preview
85   SKETCHPLUGIN_EXPORT virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious);
86
87   /// Called on change of any argument-attribute of this object
88   /// \param theID identifier of changed attribute
89   SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID);
90
91   /// \brief Use plugin manager for features creation
92   SketchPlugin_ConstraintDistance();
93
94 protected:
95   /// Returns the current distance between the feature attributes
96   virtual double calculateCurrentDistance();
97
98   /// Check the attributes related to distanced points/features are initialized
99   bool areAttributesInitialized();
100
101 protected:
102   bool myFlyoutUpdate; ///< to avoid cyclic dependencies on automatic updates of flyout point
103 };
104
105 #endif