Salome HOME
Method isStable is defined
[modules/shaper.git] / src / XGUI / XGUI_Displayer.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        XGUI_Displayer.h
4 // Created:     20 Apr 2014
5 // Author:      Natalia ERMOLAEVA
6
7 #ifndef XGUI_Displayer_H
8 #define XGUI_Displayer_H
9
10 #include "XGUI.h"
11
12 #include <GeomAPI_AISObject.h>
13 #include <TopoDS_Shape.hxx>
14 #include <AIS_InteractiveObject.hxx>
15 #include <AIS_InteractiveContext.hxx>
16 #include <NCollection_List.hxx>
17
18 #include <ModelAPI_Result.h>
19
20 #include <ModuleBase_Definitions.h>
21 #include <ModuleBase_ViewerPrs.h>
22
23 #include <GeomAPI_ICustomPrs.h>
24
25 #include <SelectMgr_AndFilter.hxx>
26
27 #include <QString>
28 #include <QMap>
29 #include <QObject>
30 #include <QColor>
31
32 class ModelAPI_Feature;
33 class XGUI_Workshop;
34
35 /**\class XGUI_Displayer
36  * \ingroup GUI
37  * \brief Displayer. Provides mechanizm of display/erase of objects in the viewer
38  */
39 class XGUI_EXPORT XGUI_Displayer: public QObject
40 {
41   Q_OBJECT
42  public:
43    /// \enum DisplayMode display mode
44    enum DisplayMode { 
45      /// Mode is not defined
46      NoMode = -1, 
47      /// Wireframe display mode
48      Wireframe, 
49      /// Shading display mode
50      Shading      
51    };
52
53   /// Constructor
54   /// \param theWorkshop a workshop instance
55   XGUI_Displayer(XGUI_Workshop* theWorkshop);
56
57   /// Destructor
58   virtual ~XGUI_Displayer();
59
60   /// Returns the feature visibility state.
61   /// \param theObject an object instance
62   bool isVisible(ObjectPtr theObject) const;
63
64   /// Display the feature. Obtain the visualized object from the feature.
65   /// \param theObject an object to display
66   /// \param theUpdateViewer the parameter whether the viewer should be update immediatelly
67   /// \return true if the object visibility state is changed
68   bool display(ObjectPtr theObject, bool theUpdateViewer = true);
69
70   /// Display the given AIS object. This object is not added to the displayer internal map of objects
71   /// So, it can not be obtained from displayer. This is just a wrap method of OCC display in order
72   /// to perform the display with correct flags.
73   /// \param theAIS AIOS object to display
74   /// \param toActivateInSelectionModes boolean value whether the presentation should be
75   /// activated in the current selection modes
76   /// \param theUpdateViewer the parameter whether the viewer should be update immediatelly
77   /// \return true if the object visibility state is changed
78   bool displayAIS(AISObjectPtr theAIS, const bool toActivateInSelectionModes,
79                   bool theUpdateViewer = true);
80
81   /// Redisplay the shape if it was displayed
82   /// \param theObject an object instance
83   /// \param theUpdateViewer the parameter whether the viewer should be update immediatelly
84   /// \return true if the object visibility state is changed
85   bool redisplay(ObjectPtr theObject, bool theUpdateViewer = true);
86
87   /// Sends and flushes a signal to redisplay all visualized objects.
88   void redisplayObjects();
89
90   /// Add presentations to current selection. It unhighlight and deselect the current selection.
91   /// The shape and result components are processed in the values. If the presentation shape is not
92   /// empty, select it, otherwise select the result.
93   /// \param theValues a list of presentation to be selected
94   /// \param theUpdateViewer the parameter whether the viewer should be update immediatelly
95   void setSelected(const  QList<ModuleBase_ViewerPrs>& theValues, bool theUpdateViewer = true);
96
97   /// Unselect all objects
98   void clearSelected();
99
100   /// Erase the feature and a shape.
101   /// \param theObject an object instance
102   /// \param theUpdateViewer the parameter whether the viewer should be update immediatelly
103   /// \return true if the object visibility state is changed
104   bool erase(ObjectPtr theObject, const bool theUpdateViewer = true);
105
106   /// Erase the given AIS object displayed by corresponded display method
107   /// \param theAIS instance of AIS object
108   /// \param theUpdateViewer the parameter whether the viewer should be update immediatelly
109   /// \return true if the object visibility state is changed
110   bool eraseAIS(AISObjectPtr theAIS, const bool theUpdateViewer = true);
111
112   /// Erase all presentations
113   /// \param theUpdateViewer the parameter whether the viewer should be update immediatelly
114   /// \return true if the object visibility state is changed
115   bool eraseAll(const bool theUpdateViewer = true);
116
117   /// Deactivates selection of sub-shapes
118   /// \param theUpdateViewer the parameter whether the viewer should be update immediatelly
119   void closeLocalContexts(const bool theUpdateViewer = true);
120
121   /// Remove default selection filters of the module from the current viewer
122   void deactivateSelectionFilters();
123
124   /// \brief Add selection filter
125   /// \param theFilter a filter instance
126   void addSelectionFilter(const Handle(SelectMgr_Filter)& theFilter);
127
128   /// \brief Remove selection filter
129   /// \param theFilter a filter instance
130   void removeSelectionFilter(const Handle(SelectMgr_Filter)& theFilter);
131
132   /// Returns true if the selection filter is set to the viewer
133   /// \param theFilter a selection filter
134   virtual bool hasSelectionFilter(const Handle(SelectMgr_Filter)& theFilter);
135
136   /// Remove all selection filters
137   void removeFilters();
138
139   /// Sets a flag to the displayer whether the internal viewer can be updated by 
140   /// the updateViewer method call. If it is not enabled, this method do nothing
141   /// \param isEnabled a boolean value
142   bool enableUpdateViewer(const bool isEnabled);
143
144   bool isUpdateEnabled() const { return myEnableUpdateViewer; }
145
146   /// Updates the viewer
147   void updateViewer() const;
148
149   /// Activate interactive context
150   /// \param theIO an interactive object
151   /// \param theMode activation mode
152   /// \param theUpdateViewer update viewer flag
153   void activateAIS(const Handle(AIS_InteractiveObject)& theIO, const int theMode,
154                    const bool theUpdateViewer) const;
155
156   /// Activate interactive context. It is necessary to call ClearOutdatedSelection after deactivation
157   /// \param theIO an interactive object
158   /// \param theMode a mode to deactivate. When theMode=-1 then all modes will be deactivated
159   void deactivateAIS(const Handle(AIS_InteractiveObject)& theIO, const int theMode = -1) const;
160
161   /// Searches the interactive object by feature
162   /// \param theObject the object or presentable feature
163   /// \return theIO an interactive object
164   AISObjectPtr getAISObject(ObjectPtr theObject) const;
165
166   /// Searches the feature by interactive object
167   /// \param theIO an interactive object
168   /// \return feature the feature or NULL if it not visualized
169   ObjectPtr getObject(const AISObjectPtr& theIO) const;
170
171   /// Searches the feature by interactive object
172   /// \param theIO an interactive object
173   /// \return corresponded object or NULL if it not found
174   ObjectPtr getObject(const Handle(AIS_InteractiveObject)& theIO) const;
175
176   /// Deactivates the given objects (not allow selection)
177   /// \param theObjList - list of objects which has to be deactivated.
178   /// \param theUpdateViewer update viewer flag
179   void deactivateObjects(const QObjectPtrList& theObjList,
180                          const bool theUpdateViewer = true);
181
182   /// Returns the modes of activation
183   /// \param theObject the feature or NULL if it not visualized
184   /// \param theModes - modes on which it is activated (can be empty)
185   void getModesOfActivation(ObjectPtr theObject, QIntList& theModes);
186
187   /// Returns true if the given object can be selected
188   /// \param theObject object to check
189   bool isActive(ObjectPtr theObject) const;
190
191   /// Activates in local context displayed outside of the context.
192   /// \param theModes - modes on which it has to be activated (can be empty)
193   /// \param theObjList - list of objects which has to be activated.
194   /// \param theUpdateViewer an update viewer flag
195   void activateObjects(const QIntList& theModes, const QObjectPtrList& theObjList,
196                        const bool theUpdateViewer = true);
197
198   /// Sets display mode for the given object if this object is displayed
199   void setDisplayMode(ObjectPtr theObject, DisplayMode theMode, bool theUpdateViewer = true);
200
201   /// Returns current display mode for the given object.
202   /// If object is not dis played then returns NoMode.
203   /// \param theObject object to check
204   DisplayMode displayMode(ObjectPtr theObject) const;
205
206   /// Displays only objects listed in the list
207   /// \param theList list of objects
208   void showOnly(const QObjectPtrList& theList);
209
210   /// Returns number of displayed objects
211   int objectsCount() const { return myResult2AISObjectMap.size(); }
212
213   /// Returns list of displayed objects
214   QObjectPtrList displayedObjects() const { return myResult2AISObjectMap.keys(); }
215
216   /// Returns list of displayed objects
217   QList<AISObjectPtr> displayedPresentations() const { return myResult2AISObjectMap.values(); }
218
219   /// Returns true if the given object can be shown in shaded mode
220   /// \param theObject object to check
221   bool canBeShaded(ObjectPtr theObject) const;
222
223   /// Set color on presentation of an object if it is displayed
224   /// \param theObject an object 
225   /// \param theColor a color which has to be set
226   /// \param theUpdateViewer update viewer flag
227   /// \return previously defined color on the object
228   QColor setObjectColor(ObjectPtr theObject, const QColor& theColor, bool theUpdateViewer = true);
229
230 signals:
231   /// Signal on object display
232   /// \param theObject a data object
233   /// \param theAIS a presentation object
234   void objectDisplayed(ObjectPtr theObject, AISObjectPtr theAIS);
235
236   /// Signal on before object erase
237   /// \param theObject a data object
238   /// \param theAIS a presentation object
239   void beforeObjectErase(ObjectPtr theObject, AISObjectPtr theAIS);
240
241  protected:
242   /// Returns currently installed AIS_InteractiveContext
243   Handle(AIS_InteractiveContext) AISContext() const;
244
245   /// Returns the viewer context top filter. If there is no a filter, it is created and set into
246   /// The context should have only this filter inside. Other filters should be add to the filter
247   Handle(SelectMgr_AndFilter) GetFilter();
248
249   /// Display the feature and a shape. This shape would be associated to the given feature
250   /// \param theObject an object instance
251   /// \param theAIS AIS presentation
252   /// \param isShading flag to show in shading mode
253   /// \param theUpdateViewer the parameter whether the viewer should be update immediatelly
254   /// \return true if the object visibility state is changed
255   bool display(ObjectPtr theObject, AISObjectPtr theAIS, bool isShading,
256                bool theUpdateViewer = true);
257
258 private:
259   /// Activates the interactive object in the local context.
260   /// \param theIO an interactive object
261   /// \param theModes - modes on which it has to be activated (can be empty)
262   /// \return a flag is object activated or not
263   bool activate(const Handle(AIS_InteractiveObject)& theIO, const QIntList& theModes,
264                 const bool theUpdateViewer) const;
265
266   /// Deactivates the given object (not allow selection)
267   /// \param theObject object to deactivate
268   void deactivate(ObjectPtr theObject, const bool theUpdateViewer);
269
270   /// Find a trihedron in a list of displayed presentations and deactivate it.
271   void deactivateTrihedron() const;
272
273   /// Opens local context. Does nothing if it is already opened.
274   void openLocalContext();
275
276   /// Update the object presentable properties such as color, lines width and other
277   /// If the object is result with the color attribute value set, it is used,
278   /// otherwise the customize is applyed to the object's feature if it is a custom prs
279   /// \param theObject an object instance
280   /// \return the true state if there is changes and the presentation is customized
281   bool customizeObject(ObjectPtr theObject);
282
283   /// Append the objects in the internal map. Checks whether the map already contains the object
284   /// \param theObject an object to display
285   /// \param theAIS AIOS object to display
286   void appendResultObject(ObjectPtr theObject, AISObjectPtr theAIS);
287
288   /// Returns an information about alredy displayed objects
289   /// \return a string representation
290   std::string getResult2AISObjectMapInfo() const;
291
292  protected:
293    /// Reference to workshop
294   XGUI_Workshop* myWorkshop;
295
296   /// A container for selection filters
297   Handle(SelectMgr_AndFilter) myAndFilter;
298
299   /// A default custom presentation, which is used if the displayed feature is not a custom presentation
300   GeomCustomPrsPtr myCustomPrs;
301
302   /// Definition of a type of map which defines correspondance between objects and presentations
303   typedef QMap<ObjectPtr, AISObjectPtr> ResultToAISMap;
304
305   /// A map of displayed objects
306   ResultToAISMap myResult2AISObjectMap;
307
308   /// Selection modes installed for external objects in local context
309   QIntList myActiveSelectionModes;
310
311   /// the enable update viewer flag
312   bool myEnableUpdateViewer; 
313
314   /// A flag that update was requested but not done
315   mutable bool myNeedUpdate;
316 };
317
318 #endif