Salome HOME
#1042 Sometimes when setting distance constraints, the input field is not displayed...
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_ConstraintDistance.h
index 370519bdaec0aa043ebcc832fbff05f2c45e905d..cbd6ccf37f6ac2a5773f443744972c64149720ad 100644 (file)
@@ -27,7 +27,7 @@ class GeomDataAPI_Point2D;
  *  This constraint has three attributes:
  *  SketchPlugin_Constraint::VALUE(), SketchPlugin_Constraint::ENTITY_A() and SketchPlugin_Constraint::ENTITY_B()
  */
-class SketchPlugin_ConstraintDistance : public SketchPlugin_ConstraintBase, public GeomAPI_ICustomPrs
+class SketchPlugin_ConstraintDistance : public SketchPlugin_ConstraintBase
 {
  public:
   /// Distance constraint kind
@@ -67,16 +67,13 @@ class SketchPlugin_ConstraintDistance : public SketchPlugin_ConstraintBase, publ
   /// \param theID identifier of changed attribute
   SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID);
 
-  /// Returns the current distance between the feature attributes
-  double calculateCurrentDistance() const;
-
-    /// Customize presentation of the feature
-  virtual bool customisePresentation(ResultPtr theResult, AISObjectPtr thePrs,
-                                     std::shared_ptr<GeomAPI_ICustomPrs> theDefaultPrs);
-
   /// \brief Use plugin manager for features creation
   SketchPlugin_ConstraintDistance();
 
+protected:
+  /// Returns the current distance between the feature attributes
+  double calculateCurrentDistance();
+
 private:
   bool myFlyoutUpdate; ///< to avoid cyclic dependencies on automatic updates of flyout point
 };