Salome HOME
Issue #2131 See preview button does not work
[modules/shaper.git] / src / PartSet / PartSet_OverconstraintListener.h
index fc771a82438bb6b0883dee4aad71340bcf12e838..0721d41d76017b918eef52f1502a43e472a314d2 100755 (executable)
@@ -12,7 +12,9 @@
 #include <ModelAPI_Object.h>
 
 class ModuleBase_IWorkshop;
-class XGUI_Workshop;
+class PartSet_Module;
+
+#include <QString>
 
 #include <vector>
 #include <set>
@@ -31,45 +33,50 @@ public:
 
   virtual ~PartSet_OverconstraintListener() {};
 
-  /// Set erroneous color for the presentation of object if the object is in the conflicting list
-  /// \param theObject an object to be settled
-  /// \param theUpdateViewer a boolean state whether the current viewer should be updated
-  //bool customizeObject(ObjectPtr theObject, const bool theUpdateViewer);
+  /// If active state is changed, update fully defined state and sketch sub-entities color
+  /// \param theActive a state
+  void setActive(const bool& theActive);
 
   /// Returns true if the object belongs to internal container of conflicting objects
   /// \param theObject an object to be checked
-  /// \return boolean result
-  bool isConflictingObject(const ObjectPtr& theObject);
-  
-  /// Returns values of conflicting color
   /// \param theColor the output container to be filled in [red, green, blue] values
-  void getConflictingColor(std::vector<int>& theColor);
+  /// \return boolean result
+  void getCustomColor(const ObjectPtr& theObject, std::vector<int>& theColor);
 
   /// Redefinition of Events_Listener method
   virtual void processEvent(const std::shared_ptr<Events_Message>& theMessage);
 
 protected:
-  /// Updates the internal container of conflicting object, redisplay necessary objects
+  /// Append objects to the internal container of conflicting object, redisplay necessary objects
   /// \param theObjects a list of new conflicting objects
   /// \return boolean value whether the list differs from the internal list
-  bool updateConflictingObjects(const std::set<ObjectPtr>& theObjects);
+  bool appendConflictingObjects(const std::set<ObjectPtr>& theObjects);
 
-  /// Obtains the object custom AIS presentation and change conflicting state if it exists
-  /// \param theObject the object which presentation error state should be changed
-  /// \param theConflicting if true, the object state is erroneous, else correct
-  void setConflictingObject(const ObjectPtr& theObject, const bool theConflicting);
+  /// Removes objects from internal container of conflicting object, redisplay necessary objects
+  /// \param theObjects a list of repaired objects
+  /// \return boolean value whether the list differs from the internal list
+  bool repairConflictingObjects(const std::set<ObjectPtr>& theObjects);
 
   /// Sends update object signal for each object in the container and flush it.
   /// \param theObjects a list of object to be redisplayed
   void redisplayObjects(const std::set<ObjectPtr>& theObjects);
 
 private:
-  //! Returns workshop
-  XGUI_Workshop* workshop() const;
+  /// Returns module
+  PartSet_Module* module() const;
+
+#ifdef _DEBUG
+  /// Unite objects in one string information
+  /// \param theObjects a list of objects
+  /// \return a string info
+  static QString getObjectsInfo(const std::set<ObjectPtr>& theObjects);
+#endif
 
 private:
-  std::set<ObjectPtr> myConflictingObjects;
   ModuleBase_IWorkshop* myWorkshop;
+  bool myIsActive; /// state if sketch is active
+  std::set<ObjectPtr> myConflictingObjects;
+  bool myIsFullyConstrained; /// state if Solver is fully constrained, DOF = 0
 };
 
 #endif