Salome HOME
Dimensions move using ModelAPI_ObjectMovedMessage mechanism. Move by deltas is obsole...
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_IntersectionPoint.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
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef SketchPlugin_IntersectionPoint_H_
22 #define SketchPlugin_IntersectionPoint_H_
23
24 #include "SketchPlugin_Point.h"
25
26 /**\class SketchPlugin_IntersectionPoint
27  * \ingroup Plugins
28  * \brief Feature for creation of external point as an intersection
29  *        between external edge and a plane of the sketch.
30  */
31 class SketchPlugin_IntersectionPoint : public SketchPlugin_Point
32 {
33 public:
34   /// Point feature kind
35   inline static const std::string& ID()
36   {
37     static const std::string MY_POINT_ID("SketchIntersectionPoint");
38     return MY_POINT_ID;
39   }
40   /// Returns the kind of a feature
41   virtual const std::string& getKind()
42   {
43     static std::string MY_KIND = SketchPlugin_IntersectionPoint::ID();
44     return MY_KIND;
45   }
46
47   static const std::string& EXTERNAL_LINE_ID()
48   {
49     static std::string MY_LINE_ID("ExternalLine");
50     return MY_LINE_ID;
51   }
52
53   /// Returns true because intersection point is always external
54   virtual bool isFixed()
55   { return true; }
56
57   /// Creates a new part document if needed
58   SKETCHPLUGIN_EXPORT virtual void execute();
59
60   /// Called on change of any argument-attribute of this object: for external point
61   SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID);
62
63   /// Use plugin manager for features creation
64   SketchPlugin_IntersectionPoint();
65
66 protected:
67   /// \brief Initializes attributes of derived class.
68   virtual void initDerivedClassAttributes();
69
70 private:
71   /// \brief Find intersection between a line and a sketch plane
72   void computePoint();
73 };
74
75 #endif