Salome HOME
#1721 Selecting arcs in mirror constraint is too long and removes other edges
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Coincident.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        SketcherPrs_Coincident.h
4 // Created:     12 February 2015
5 // Author:      Vitaly SMETANNIKOV
6
7 #ifndef SketcherPrs_Coincident_H
8 #define SketcherPrs_Coincident_H
9
10 #include <GeomAPI_Ax3.h>
11 #include <ModelAPI_Feature.h>
12
13 #include <AIS_InteractiveObject.hxx>
14 #include <Standard_DefineHandle.hxx>
15
16
17 DEFINE_STANDARD_HANDLE(SketcherPrs_Coincident, AIS_InteractiveObject)
18
19 /**
20 * \ingroup GUI
21 * A redefinition of standard AIS Interactive Object in order to provide  
22 * presentation of coincident constraint
23 */
24 class SketcherPrs_Coincident: public AIS_InteractiveObject
25 {
26 public:
27   /// Constructor
28   /// \param theConstraint a constraint object
29   /// \param thePlane plane of a sketch
30   Standard_EXPORT SketcherPrs_Coincident(ModelAPI_Feature* theConstraint, 
31                                          const std::shared_ptr<GeomAPI_Ax3>& thePlane);
32
33   /// Defines color for the presentation
34   /// \param aColor a color object
35   Standard_EXPORT virtual void SetColor(const Quantity_Color& aColor);
36   
37   /// Defines color for the presentation
38   /// \param aColor a color name
39   Standard_EXPORT virtual void SetColor(const Quantity_NameOfColor aColor);
40
41   /// Set state of the presentation, in case of conflicting state, the icon of the presentation is
42   /// visualized in error color. The state is stored in an internal field, so should be changed when
43   /// constraint become not conflicting
44   /// \param theConflicting a state
45   /// \param theColor a color for conflicting object
46   Standard_EXPORT void SetConflictingConstraint(const bool& theConflicting, const std::vector<int>& theColor);
47
48   /// Returns true if the constraint feature arguments are correcly filled to build AIS presentation
49   /// \param theConstraint a constraint feature
50   /// \param thePlane a coordinate plane of current sketch
51   /// \return boolean result value
52   static bool IsReadyToDisplay(ModelAPI_Feature* theConstraint,
53                                const std::shared_ptr<GeomAPI_Ax3>& thePlane);
54
55   DEFINE_STANDARD_RTTI(SketcherPrs_Coincident)
56 protected:
57   /// Redefinition of virtual function
58   Standard_EXPORT virtual void Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
59     const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0);
60
61   /// Redefinition of virtual function
62   Standard_EXPORT virtual void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
63     const Standard_Integer aMode) ;
64
65 private:
66   static bool readyToDisplay(ModelAPI_Feature* theConstraint,
67                       const std::shared_ptr<GeomAPI_Ax3>& thePlane,
68                       gp_Pnt& thePoint);
69
70 private:
71   ModelAPI_Feature* myConstraint;
72   std::shared_ptr<GeomAPI_Ax3> mySketcherPlane;
73   gp_Pnt myPoint;
74   bool myIsConflicting; /// state if the presentation is visualized in error state
75   Quantity_Color myConflictingColor; /// the color of mid ring if there is a conflict
76 };
77
78
79 #endif