Salome HOME
updated copyright message
[modules/shaper.git] / src / SketchSolver / SketchSolver_ConstraintMulti.h
index ea311e90de68550a340c4de757e46e0e53b6f234..35e2191fd0017a2d0ce1b4cbb7ba40600dca5b0c 100644 (file)
@@ -1,13 +1,25 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-
-// File:    SketchSolver_ConstraintMulti.h
-// Created: 2 Sep 2015
-// Author:  Artem ZHIDKOV
+// Copyright (C) 2014-2023  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// 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
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
 #ifndef SketchSolver_ConstraintMulti_H_
 #define SketchSolver_ConstraintMulti_H_
 
-#include "SketchSolver.h"
 #include <SketchSolver_Constraint.h>
 
 #include <vector>
@@ -26,37 +38,38 @@ public:
       myNumberOfCopies(0),
       myIsFullValue(false),
       myAdjusted(false),
-      myIsEventsBlocked(false)
+      myIsEventsBlocked(false),
+      myIsProcessingNotify(false)
   {}
 
   /// \brief Update constraint
-  virtual void update() override;
+  virtual void update();
 
   /// \brief Notify this object about the feature is changed somewhere
-  virtual void notify(const FeaturePtr& theFeature, PlaneGCSSolver_Update*) override;
+  virtual void notify(const FeaturePtr& theFeature, PlaneGCSSolver_Update*);
 
   /// \brief Tries to remove constraint
   /// \return \c false, if current constraint contains another SketchPlugin
   /// constraints (like for multiple coincidence)
-  virtual bool remove() override;
+  virtual bool remove();
 
   /// \brief Block or unblock events from this constraint
-  virtual void blockEvents(bool isBlocked) override;
+  virtual void blockEvents(bool isBlocked);
 
 protected:
   /// \brief Converts SketchPlugin constraint to a list of SolveSpace constraints
-  virtual void process() override
+  virtual void process()
   { /* do nothing here */ }
 
   /// \brief Collect entities which are translated or rotated (not their copies)
   void getEntities(std::list<EntityWrapperPtr>& theEntities);
 
   /// \brief Generate list of attributes of constraint in order useful for SolveSpace constraints
-  virtual void getAttributes(EntityWrapperPtr&, std::vector<EntityWrapperPtr>&) override
+  virtual void getAttributes(EntityWrapperPtr&, std::vector<EntityWrapperPtr>&)
   { /* do nothing here */ }
 
   /// \brief This method is used in derived objects to check consistence of constraint.
-  virtual void adjustConstraint() override;
+  virtual void adjustConstraint();
 
   /// \brief Update parameters of derived classes
   virtual void updateLocal() = 0;
@@ -79,10 +92,12 @@ protected:
 
   bool myAdjusted; ///< the constraint is already adjusted (to not do it several times)
 
-  /// list of features and their copies to find whether some of them are disappeared
-  std::set<FeaturePtr> myFeatures;
+  /// lists of original features and their copies to find whether some of them are disappeared
+  std::set<FeaturePtr> myOriginalFeatures;
+  std::set<FeaturePtr> myCopiedFeatures;
 
   bool myIsEventsBlocked;
+  bool myIsProcessingNotify; ///< the notification is already processing
 };
 
 #endif