Salome HOME
Issue #2029 Change the color of the Sketch when fully constrained
[modules/shaper.git] / src / PartSet / PartSet_OverconstraintListener.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_OverconstraintListener.h
4 // Created:     8 Feb 2016
5 // Author:      Natalia ERMOLAEVA
6
7
8 #ifndef PartSet_OverconstraintListener_H
9 #define PartSet_OverconstraintListener_H
10
11 #include <Events_Listener.h>
12 #include <ModelAPI_Object.h>
13
14 class ModuleBase_IWorkshop;
15 class XGUI_Workshop;
16
17 #include <QString>
18
19 #include <vector>
20 #include <set>
21
22 /**
23 * \ingroup GUI
24 * A class for processing overconstraint situation. It contains is a list of sketch constraints with
25 * conflicts.
26 */
27 class PartSet_OverconstraintListener : public Events_Listener
28 {
29 public:
30   /// Constructor
31   /// \param theWorkshop a current workshop to obtain AIS presentation from displayer
32   PartSet_OverconstraintListener(ModuleBase_IWorkshop* theWorkshop);
33
34   virtual ~PartSet_OverconstraintListener() {};
35
36   // Set erroneous color for the presentation of object if the object is in the conflicting list
37   // \param theObject an object to be settled
38   // \param theUpdateViewer a boolean state whether the current viewer should be updated
39   //bool customizeObject(ObjectPtr theObject, const bool theUpdateViewer);
40
41   /// Returns true if the object belongs to internal container of conflicting objects
42   /// \param theObject an object to be checked
43   /// \param theColor the output container to be filled in [red, green, blue] values
44   /// \return boolean result
45   bool hasCustomColor(const ObjectPtr& theObject, std::vector<int>& theColor);
46
47   /// Redefinition of Events_Listener method
48   virtual void processEvent(const std::shared_ptr<Events_Message>& theMessage);
49
50 protected:
51   /// Append objects to the internal container of conflicting object, redisplay necessary objects
52   /// \param theObjects a list of new conflicting objects
53   /// \return boolean value whether the list differs from the internal list
54   bool appendConflictingObjects(const std::set<ObjectPtr>& theObjects);
55
56   /// Removes objects from internal container of conflicting object, redisplay necessary objects
57   /// \param theObjects a list of repaired objects
58   /// \return boolean value whether the list differs from the internal list
59   bool repairConflictingObjects(const std::set<ObjectPtr>& theObjects);
60
61   /// Sends update object signal for each object in the container and flush it.
62   /// \param theObjects a list of object to be redisplayed
63   void redisplayObjects(const std::set<ObjectPtr>& theObjects);
64
65 private:
66   /// Returns workshop
67   XGUI_Workshop* workshop() const;
68
69 #ifdef _DEBUG
70   /// Unite objects in one string information
71   /// \param theObjects a list of objects
72   /// \return a string info
73   static QString getObjectsInfo(const std::set<ObjectPtr>& theObjects);
74 #endif
75
76 private:
77   std::set<ObjectPtr> myConflictingObjects;
78   ModuleBase_IWorkshop* myWorkshop;
79   bool myIsFullyConstrained; /// state if Solver is fully constrained, DOF = 0
80 };
81
82 #endif