Salome HOME
Fix the SHAPER version of resources
[modules/shaper.git] / src / SketcherPrs / SketcherPrs_Coincident.h
index 9b9c4cd8acc347825b1e22fef1aebac86e6b6a7f..082016c81b7ae69347531ee13db790898e419eb5 100644 (file)
@@ -8,12 +8,11 @@
 #define SketcherPrs_Coincident_H
 
 #include <GeomAPI_Ax3.h>
+#include <ModelAPI_Feature.h>
 
 #include <AIS_InteractiveObject.hxx>
 #include <Standard_DefineHandle.hxx>
 
-class SketchPlugin_Constraint;
-
 
 DEFINE_STANDARD_HANDLE(SketcherPrs_Coincident, AIS_InteractiveObject)
 
@@ -26,14 +25,26 @@ class SketcherPrs_Coincident: public AIS_InteractiveObject
 {
 public:
   /// Constructor
-  /// \param theResult a result object
-  Standard_EXPORT SketcherPrs_Coincident(SketchPlugin_Constraint* theConstraint, 
+  /// \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);
-   
+
+  /// Returns true if the constraint feature arguments are correcly filled to build AIS presentation
+  /// \param theConstraint a constraint feature
+  /// \param thePlane a coordinate plane of current sketch
+  /// \return boolean result value
+  static bool IsReadyToDisplay(ModelAPI_Feature* theConstraint,
+                               const std::shared_ptr<GeomAPI_Ax3>& thePlane);
+
   DEFINE_STANDARD_RTTI(SketcherPrs_Coincident)
 protected:
   /// Redefinition of virtual function
@@ -45,8 +56,14 @@ protected:
     const Standard_Integer aMode) ;
 
 private:
-  SketchPlugin_Constraint* myConstraint;
-  std::shared_ptr<GeomAPI_Ax3> myPlane;
+  static bool readyToDisplay(ModelAPI_Feature* theConstraint,
+                      const std::shared_ptr<GeomAPI_Ax3>& thePlane,
+                      gp_Pnt& thePoint);
+
+private:
+  ModelAPI_Feature* myConstraint;
+  std::shared_ptr<GeomAPI_Ax3> mySketcherPlane;
+  gp_Pnt myPoint;
 };