Salome HOME
Issue #3058: Avoid recursive call of object redisplay
[modules/shaper.git] / src / GeomValidators / GeomValidators_DifferentShapes.h
index 737a2f63d1b721973db52d322ac84575829774a1..f5647dfb9a06de3e5b8ff2fe1cd19465053b219b 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2019  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
 //
 // 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 GeomValidators_DifferentShapes_H
@@ -40,6 +39,16 @@ public:
   GEOMVALIDATORS_EXPORT virtual bool isValid(const AttributePtr& theAttribute,
                                              const std::list<std::string>& theArguments,
                                              Events_InfoMessage& theError) const;
+
+private:
+  /// Check if the list contains equal shape selection.
+  static bool checkEquals(std::list<AttributePtr>& theAttributes);
+  /// Check if the list contains shape selection equal to the given one.
+  static bool checkEqualToCurrent(std::list<AttributePtr>& theAttributes,
+                                  const AttributePtr& theCurrentAttribute);
+  /// Check if shapes corresponding to the attributes are equal.
+  static bool isAttrShapesEqual(const AttributePtr& theAttribute,
+                                const AttributePtr& theOtherAttribute);
 };
 
 #endif