]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketcherPrs/SketcherPrs_SymbolPrs.h
Salome HOME
792fde0155d82c6d4d4a0bd6e7e9b3784190761e
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_SymbolPrs.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        SketcherPrs_SymbolPrs.h
4 // Created:     12 March 2015
5 // Author:      Vitaly SMETANNIKOV
6
7 #ifndef SketcherPrs_SymbolPrs_H
8 #define SketcherPrs_SymbolPrs_H
9
10 #include <AIS_InteractiveObject.hxx>
11 #include <GeomAPI_Ax3.h>
12 #include <Graphic3d_ArrayOfPoints.hxx>
13 #include <Graphic3d_AspectMarker3d.hxx>
14 #include <Image_AlienPixMap.hxx>
15
16 #include <Standard_DefineHandle.hxx>
17 #include <map>
18
19 class SketchPlugin_Constraint;
20
21
22 DEFINE_STANDARD_HANDLE(SketcherPrs_SymbolPrs, AIS_InteractiveObject)
23
24 /**
25 * \ingroup GUI
26 * A base class of constraint presentation which is represented by an icon
27 */
28 class SketcherPrs_SymbolPrs: public AIS_InteractiveObject
29 {
30 public:
31   /// Constructor
32   /// \param theConstraint a constraint feature
33   /// \param thePlane a coordinate plane of current sketch
34   SketcherPrs_SymbolPrs(SketchPlugin_Constraint* theConstraint, 
35                         const std::shared_ptr<GeomAPI_Ax3>& thePlane);
36
37   //! Method which clear all selected owners belonging
38   //! to this selectable object ( for fast presentation draw )
39   Standard_EXPORT virtual void ClearSelected();
40
41   DEFINE_STANDARD_RTTI(SketcherPrs_SymbolPrs)
42
43 protected:
44   /// Returns an icon file name. Has to be redefined in successors
45   virtual const char* iconName() const = 0;
46
47   /// Check and creates if it is necessary myAspect member.
48   /// It has to be called before the object computation
49   virtual void prepareAspect();
50
51   /// Returns icon corresponded to the current constraint type
52   Handle(Image_AlienPixMap) icon();
53
54   /// Add a line into the given group
55   /// \param theGroup a group for drawing
56   /// \param theAttrName an attribute name which corresponds to referenced line
57   void addLine(const Handle(Graphic3d_Group)& theGroup, std::string theAttrName) const;
58
59 protected:
60   /// Constraint feature
61   SketchPlugin_Constraint* myConstraint;
62
63   /// Plane of the current sketcher
64   std::shared_ptr<GeomAPI_Ax3> myPlane;
65
66   /// Aspect for entities drawing
67   Handle(Graphic3d_AspectMarker3d) myAspect;
68
69 private: 
70   /// Static map to collect constraints icons {IconName : IconPixMap}
71   static std::map<const char*, Handle(Image_AlienPixMap)> myIconsMap;
72 };
73
74 #endif