Salome HOME
updated copyright message
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Coincident.h
index 4b6d4effce36a4b751b120715fc628236215df70..4831217b8e31e89700ae0db7420b95607a5f945e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2023  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 //
 // You should have received a copy of the GNU Lesser General Public
 // License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or
-// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 #ifndef SketcherPrs_Coincident_H
 #define SketcherPrs_Coincident_H
 
 #include <GeomAPI_Ax3.h>
+#include <SketchPlugin_Sketch.h>
 #include <ModelAPI_Feature.h>
 
 #include <AIS_InteractiveObject.hxx>
@@ -42,20 +42,7 @@ public:
   /// \param theConstraint a constraint object
   /// \param thePlane plane of a sketch
   Standard_EXPORT SketcherPrs_Coincident(ModelAPI_Feature* theConstraint,
-                                         const std::shared_ptr<GeomAPI_Ax3>& thePlane);
-
-  /// Defines color for the presentation
-  /// \param aColor a color object
-  Standard_EXPORT virtual void SetColor(const Quantity_Color& aColor);
-
-  /// Defines color for the presentation
-  /// \param aColor a color name
-  Standard_EXPORT virtual void SetColor(const Quantity_NameOfColor aColor);
-
-  /// Set state of the presentation, in case of custom color, the icon of the presentation is
-  /// visualized in error color.
-  /// \param theColor a custom color for object presentation
-  Standard_EXPORT void SetCustomColor(const std::vector<int>& theColor);
+    SketchPlugin_Sketch* theSketch);
 
   /// Returns true if the constraint feature arguments are correcly filled to build AIS presentation
   /// \param theConstraint a constraint feature
@@ -82,10 +69,8 @@ private:
 
 private:
   ModelAPI_Feature* myConstraint;
-  std::shared_ptr<GeomAPI_Ax3> mySketcherPlane;
+  SketchPlugin_Sketch* mySketch;
   gp_Pnt myPoint;
-  bool myIsCustomColor; /// state if the presentation is visualized in custom color
-  Quantity_Color myCustomColor; /// the color of mid ring if there is a conflict
 };